Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Brian Paul <brian@tu...> - 2002-07-10 13:26:48
|
ktt wrote: > hello, I trying to compile mesa 4.0.3 > o debian potato, glibc 2.2.2. > and getting an error: (cd . && ln -s vtxfmt.lo > vtxfmt.o) > gcc -shared accum.lo api_arrayelt.lo api_loopback.lo > api_noop.lo api_validate.lo attrib.lo blend.lo > buffers.lo clip.lo colortab.lo config.lo context.lo > convolve.lo debug.lo depth.lo dispatch.lo dlist.lo > drawpix.lo enable.lo enums.lo eval.lo extensions.lo > feedback.lo fog.lo get.lo glapi.lo glthread.lo hash.lo > highpc.lo hint.lo histogram.lo image.lo imports.lo > light.lo lines.lo lowpc.lo matrix.lo mem.lo mmath.lo > pixel.lo points.lo polygon.lo rastpos.lo state.lo > stencil.lo texformat.lo teximage.lo texobj.lo > texstate.lo texstore.lo texutil.lo varray.lo vtxfmt.lo > -Wl,--whole-archive math/.libs/libMesaMath.al > swrast/.libs/libMesaSwrast.al > swrast_setup/.libs/libMesaSwrast_setup.al > tnl/.libs/libMesaTnl.al array_cache/.libs/libMesaAC.al > X86/.libs/libMesaX86.al FX/.libs/libMesaFX.al > FX/X86/.libs/libMesaFX_X86.a X/.libs/libMesaX11.al > -Wl,--no-whole-archive math/.libs/libMesaMath.al > swrast/.libs/libMesaSwrast.al > swrast_setup/.libs/libMesaSwrast_setup.al > tnl/.libs/libMesaTnl.al array_cache/.libs/libMesaAC.al > X86/.libs/libMesaX86.al FX/.libs/libMesaFX.al > -lglide2x FX/X86/.libs/libMesaFX_X86.a > X/.libs/libMesaX11.al -L/usr/X11R6/lib -lSM -lICE > -lXext -lXi -lX11 -lpthread -Wl,-soname > -Wl,libGL.so.1 -o .libs/libGL.so.1.3.403 > /usr/bin/ld: cannot find -lXext > collect2: ld returned 1 exit status > make[2]: *** [libGL.la] Error 1 > make[2]: Leaving directory > `/home/kestutis/Mesa-4.0.3/src' > make[1]: *** [install-recursive] Error 1 > make[1]: Leaving directory > `/home/kestutis/Mesa-4.0.3/src' > make: *** [install-recursive] Error 1 > > could you help to fix it? > > thank you in advance, Try this: locate libXext.so That should tell you where the library is located. There should be a configure option to let you specify the directory. -Brian |
From: ktt <kestutis98@ya...> - 2002-07-10 17:07:42
|
yes. I've tryed kdebian:# locate libXext.so /usr/X11R6/lib/libXext.so /usr/X11R6/lib/libXext.so.6 /usr/X11R6/lib/libXext.so.6.4 and included --x-libraries=/usr/X11R6/lib/ with ./configure, but the result is the same. I have XFree86 4.01 on potato. Maybe it is possible to switch Xext off? --- Brian Paul <brian@...> wrote: > ktt wrote: .... > > /usr/bin/ld: cannot find -lXext > > collect2: ld returned 1 exit status > > make[2]: *** [libGL.la] Error 1 > > make[2]: Leaving directory > > `/home/kestutis/Mesa-4.0.3/src' > > make[1]: *** [install-recursive] Error 1 > > make[1]: Leaving directory > > `/home/kestutis/Mesa-4.0.3/src' > > make: *** [install-recursive] Error 1 > > > > could you help to fix it? > > > > thank you in advance, > > Try this: > locate libXext.so > > That should tell you where the library is located. > There should be > a configure option to let you specify the directory. > > -Brian > > > __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Brian Paul <brian@tu...> - 2002-07-10 17:39:10
|
ktt wrote: > yes. I've tryed > > kdebian:# locate libXext.so > /usr/X11R6/lib/libXext.so > /usr/X11R6/lib/libXext.so.6 > /usr/X11R6/lib/libXext.so.6.4 > > and included > > --x-libraries=/usr/X11R6/lib/ > > with ./configure, but the result is the > same. > I have XFree86 4.01 on potato. > Maybe it is possible to switch Xext off? No. Mesa needs a few functions from that library. I don't know what would cause this problem. I'd suggest trying the old-style Makefiles: cd Mesa-4.0.3 cp Makefile.X11 Makefile make clean make linux-x86 (or whatever config) -Brian |
From: ktt <kestutis98@ya...> - 2002-07-11 10:30:16
|
Thank you. old-style Makefile really did the job. but the new problem appeared: then trying to test demos I gettin' error messages: ttt@...:~/Mesa-4.0.3/demos$ ./bounce ./bounce: error while loading shared libraries: /usr/lib/libglut.so.3: undefined symbol: XmuLookupStandardColormap Press any key to continue... while demos in /xdemos directory work correctly. and I have LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib:/usr/lib export LD_LIBRARY_PATH records in my system bashrc and home directory .bashrc file. ktt > > with ./configure, but the result is the > > same. > > I have XFree86 4.01 on potato. > > Maybe it is possible to switch Xext off? > > No. Mesa needs a few functions from that library. > > I don't know what would cause this problem. > > I'd suggest trying the old-style Makefiles: > > cd Mesa-4.0.3 > cp Makefile.X11 Makefile > make clean > make linux-x86 (or whatever config) > > > -Brian > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Two, two, TWO treats in one. > http://thinkgeek.com/sf > _______________________________________________ > Mesa3d-users mailing list > Mesa3d-users@... > https://lists.sourceforge.net/lists/listinfo/mesa3d-users --- Brian Paul <brian@...> wrote: > ktt wrote: > > yes. I've tryed > > > > kdebian:# locate libXext.so > > /usr/X11R6/lib/libXext.so > > /usr/X11R6/lib/libXext.so.6 > > /usr/X11R6/lib/libXext.so.6.4 > > > > and included > > > > --x-libraries=/usr/X11R6/lib/ > > > > with ./configure, but the result is the > > same. > > I have XFree86 4.01 on potato. > > Maybe it is possible to switch Xext off? > > No. Mesa needs a few functions from that library. > > I don't know what would cause this problem. > > I'd suggest trying the old-style Makefiles: > > cd Mesa-4.0.3 > cp Makefile.X11 Makefile > make clean > make linux-x86 (or whatever config) > > > -Brian > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Two, two, TWO treats in one. > http://thinkgeek.com/sf > _______________________________________________ > Mesa3d-users mailing list > Mesa3d-users@... > https://lists.sourceforge.net/lists/listinfo/mesa3d-users __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Brian Paul <brian@tu...> - 2002-07-11 15:26:35
|
ktt wrote: > Thank you. old-style Makefile > really did the job. > but the new problem appeared: > then trying to test demos I gettin' > error messages: > > ttt@...:~/Mesa-4.0.3/demos$ ./bounce > ./bounce: error while loading shared libraries: > /usr/lib/libglut.so.3: undefined symbol: > XmuLookupStandardColormap > Press any key to continue... > > while demos in /xdemos directory work correctly. > and I have > > LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib:/usr/lib > export LD_LIBRARY_PATH > > records in my system bashrc and home directory .bashrc > file. The Xmu library should be linked to the GLUT library. Try this: cd Mesa-4.0.3/lib ldd libglut.so You should see something like this (note libXmu): libGLU.so.1 => /usr/lib/libGLU.so.1 (0x40052000) libGL.so.1 => /usr/lib/libGL.so.1 (0x400ce000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x4037f000) libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x40454000) libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x40469000) libXi.so.6 => /usr/X11R6/lib/libXi.so.6 (0x404b5000) libm.so.6 => /lib/i686/libm.so.6 (0x404bd000) libc.so.6 => /lib/i686/libc.so.6 (0x42000000) libstdc++-libc6.2-2.so.3 => /usr/lib/libstdc++-libc6.2-2.so.3 (0x404e0000) libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x40523000) libpthread.so.0 => /lib/i686/libpthread.so.0 (0x40530000) libdl.so.2 => /lib/libdl.so.2 (0x40544000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x40547000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40550000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) -Brian |
From: ktt <kestutis98@ya...> - 2002-07-15 13:48:23
|
Hello, I writing a small OpenGl application and would like to add sound files to it? I've heard about OpenAl. Maybe you now some examples of sound usage with OpenAl or any othe free library? thank you in advance, ktt __________________________________________________ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com |
From: Stephen J Baker <sjbaker@li...> - 2002-07-15 16:21:50
|
On Mon, 15 Jul 2002, ktt wrote: > I writing a small OpenGl application and would like to > add sound files to it? > I've heard about OpenAl. > Maybe you now some examples of sound usage with > OpenAl or any othe free library? The OpenAL website has (had?) some example programs - but this isn't really an appropriate question for the Mesa list. OpenAL has absolutely nothing to do with OpenGL apart from the first four and last letters of it's name. Try: http://www.openal.org ---- Steve Baker (817)619-2657 (Vox/Vox-Mail) L3Com/Link Simulation & Training (817)619-2466 (Fax) Work: sjbaker@... http://www.link.com Home: sjbaker1@... http://www.sjbaker.org |
From: Troy Fey <fey@op...> - 2002-07-15 18:46:37
|
If you're using Linux you may want to look into "Programming Linux Games" by Loki Software, Inc. with John R. Hall. ISBN: 1-886411-49-2. Although this book covers a number of topics you may not be interested in, it does cover the OpenAL library in enough detail to be practical. Examples are included. Regards, Troy ktt wrote: >Hello, > >I writing a small OpenGl application and would like to >add sound files to it? >I've heard about OpenAl. >Maybe you now some examples of sound usage with >OpenAl or any othe free library? > >thank you in advance, > >ktt > >__________________________________________________ >Do You Yahoo!? >Yahoo! Autos - Get free new car price quotes >http://autos.yahoo.com > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Mesa3d-users mailing list >Mesa3d-users@... >https://lists.sourceforge.net/lists/listinfo/mesa3d-users > > |
From: ktt <kestutis98@ya...> - 2002-07-11 13:01:54
|
Hello, What freeware IDE environemnt would you recommend to develop OpenGL for Linux? And what freeware modeller is most suitable to export it's objects to C? Thank you in advance, ktt __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com |
From: Stephen J Baker <sjbaker@li...> - 2002-07-15 12:44:29
|
On Thu, 11 Jul 2002, ktt wrote: > What freeware IDE environemnt would you recommend > to develop OpenGL for Linux? Well, I use 'vi' :-) I'm told (by people I trust) that Kdevelop is good. > And what freeware modeller is most suitable to > export it's objects to C? I don't think any of them do that. There are real problems with decent free 3D modellers for Linux. Hopefully when Blender goes OpenSource (as it's rumored to be doing), we'll have at least one reasonable choice. ---- Steve Baker (817)619-2657 (Vox/Vox-Mail) L3Com/Link Simulation & Training (817)619-2466 (Fax) Work: sjbaker@... http://www.link.com Home: sjbaker1@... http://www.sjbaker.org |