hi all
i have some problems compiling Gem on fedora core 3:
the configure script fails:
checking for main in -lX11... yes checking for main in -lXext... yes checking for XF86VidModeGetAllModeLines in -lXxf86vm... yes checking for sin in -lm... no checking for main in -lz... no checking for glInitNames in -lGL... no checking for glInitNames in -lMesaGL... no OpenGL is mandatory
since "sin" can't be found in libm, there is something really bad going on ...
(btw, nm /usr/lib/libm.so shows sin)
tim
Tim Blechmann wrote:
hi all
i have some problems compiling Gem on fedora core 3:
the configure script fails:
checking for main in -lX11... yes checking for main in -lXext... yes checking for XF86VidModeGetAllModeLines in -lXxf86vm... yes checking for sin in -lm... no checking for main in -lz... no checking for glInitNames in -lGL... no checking for glInitNames in -lMesaGL... no OpenGL is mandatory
since "sin" can't be found in libm, there is something really bad going on ...
this should be found in the list (which one: pd-list?gem-dev?) archives (seach for something like fedora, pic and/or wade)
probably it is time to really fix it (or at least put a hint into README.fedora)
mfg.asdr IOhannes
Yeah - this is a classic problem on every FC3 installation I've done. Change the following line in the ./configure script: LIBS="-Wl,-shared -Wl,-export-dynamic $LIBS" to: LIBS="-shared -Wl,-export-dynamic $LIBS" Cheers,-Mike----- Original Message ----- From: "Tim Blechmann" TimBlechmann@gmx.net To: gem-dev@iem.at Sent: Thursday, March 31, 2005 2:55 AM Subject: [GEM-dev] gem configure script
hi all
i have some problems compiling Gem on fedora core 3:
the configure script fails:
checking for main in -lX11... yes checking for main in -lXext... yes checking for XF86VidModeGetAllModeLines in -lXxf86vm... yes checking for sin in -lm... no checking for main in -lz... no checking for glInitNames in -lGL... no checking for glInitNames in -lMesaGL... no OpenGL is mandatory
since "sin" can't be found in libm, there is something really bad going on ...
(btw, nm /usr/lib/libm.so shows sin)
tim
-- mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.mokabar.tk
latest mp3: kMW.mp3 http://mattin.org/mp3.html
latest cd: Goh Lee Kwang & Tim Blechmann: Drone http://www.geocities.com/gohleekwangtimblechmannduo/
After one look at this planet any visitor from outer space would say "I want to see the manager." William S. Burroughs
GEM-dev mailing list GEM-dev@iem.at http://iem.at/cgi-bin/mailman/listinfo/gem-dev
Mike Wozniewski wrote:
Yeah - this is a classic problem on every FC3 installation I've done. Change the following line in the ./configure script: LIBS="-Wl,-shared -Wl,-export-dynamic $LIBS" to: LIBS="-shared -Wl,-export-dynamic $LIBS"
ok, should be like this in the CVS now...
mfg.adsr IOhannes