Hi, On Tue, 2007-03-13 at 10:47 +0100, Sajjadul Islam wrote: > > > Gerrit Voss > Mon, 12 Mar 2007 20:30:59 -0800 > > Hi, > > looking at your make output, this seems to be a problem with your > version of gmake. Could you run gmake -v and send the output. > > thanks > gerrit > > > Thats the output i get after i run make -v, i compiled OpenSceneGraph > with that make utility, was wondering if that same one should be working > for OpenSG.
this depends a little bit on the OpenSG version you are using. If you are using a current CVS / dailybuild version it should work. If you are using 1.6 I would expect the errors you see. If you are using 1.6 and don't want to upgrade you could try the following : In Common/commonBuildDetect.mk at the end after ifeq ($(MAKEMINOR),80) MAKE_OLD_DOLLAR := 0 endif add ifeq ($(MAKEMINOR),81) MAKE_OLD_DOLLAR := 0 endif regards, gerrit ********************************************** Hello gerrit, Thanks for the suggestion , i did that as you specified by editing the Common/commonBuildDetect.mk file. And then configured with the following command : [EMAIL PROTECTED]:~/openSG/OpenSG$ ./configure --enable-glut --with-glutincludedir=/usr/include/GL/ --with-glutlibdir=/usr/lib64/ --enable-png --with-pngincludedir=/usr/include/ --with-pnglibdir=/usr/lib64/ --enable-jpg --with-jpgincludedir=/usr/include/ --with-jpglibdir=/usr/lib64/ --enable-tif --with-tifincludedir=/usr/include/ --with-tiflibdir=/usr/lib64/ --enable-qt --with-qtincludedir=/usr/include/qt3/ --with-qtlibdir=/usr/share/qt3/lib/ then make opt And at last make install during make opt there were several warning and some errors as well and at the end it said directory opt couldnt be remade because of errors then i ran the command make install and it seemed to work fine without errors. i edited the /etc/profile and updated the LD_LIBRARY_PATH but getting error with compiling a sample program and the error is : [EMAIL PROTECTED]:~/openSG/opSG$ make firstOSG g++ -O2 -L/usr/lib64/ -L/usr/lib64/ -L/usr/lib64/ -L/usr/lib64/ -L/usr/local/lib/opt -lOSGWindowGLUT -lOSGSystem -lOSGBase -ltiff -ljpeg -lpng -lz -lglut -lGLU -lGL -lXmu -lXi -lXt -lX11 -lpthread -ldl -lm -L/usr/X11R6/lib64 -o firstOSG /usr/bin/ld: cannot find -lOSGWindowGLUT collect2: ld returned 1 exit status make: *** [firstOSG] Error 1 then i checked the directory /usrlocal/lib/opt and there is only one library libOSGBase.so libOSGWindowGLUT.so is not there or anywhere in the system. so i am kinda sure that make opt got problem..... I really do need help in that issue. It has been several days and i couldnt even get a start with OpenSG Regards, Sajjad ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Opensg-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opensg-users
