hi, I'was trying to compile a simple game , just for testing the system, but the make command gave me problems, so I read that it was best to have a gnu make package installed so I made
pkgrm SUNWgmake
and installed the gnu make from sunfreesoftware, the problem is that now when I run make it gives me this output
# make
make all-recursive
make[1]: Entering directory `/Desktop/softSource/abuse-0.7.1'
Making all in src
make[2]: Entering directory `/Desktop/softSource/abuse-0.7.1/src'
Making all in lisp
make[3]: Entering directory `/Desktop/softSource/abuse-0.7.1/src/lisp'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/Desktop/softSource/abuse-0.7.1/src/lisp'
Making all in net
make[3]: Entering directory `/Desktop/softSource/abuse-0.7.1/src/net'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/Desktop/softSource/abuse-0.7.1/src/net'
Making all in imlib
make[3]: Entering directory `/Desktop/softSource/abuse-0.7.1/src/imlib'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/Desktop/softSource/abuse-0.7.1/src/imlib'
Making all in sdlport
make[3]: Entering directory `/Desktop/softSource/abuse-0.7.1/src/sdlport'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/Desktop/softSource/abuse-0.7.1/src/sdlport'
make[3]: Entering directory `/Desktop/softSource/abuse-0.7.1/src'
/bin/bash ../libtool --tag=CXX --mode=link g++ -g -O2 -DHAVE_OPENGL -o abuse specache.o netcfg.o text_gui.o innet.o chat.o endgame.o version.o loadgame.o profile.o cop.o statbar.o compiled.o ant.o sensor.o demo.o lcache.o nfclient.o username.o clisp.o gui.o transp.o collide.o trig.o property.o cache.o particle.o objects.o extend.o console.o ability.o items.o dev.o chars.o level.o smallfnt.o automap.o help.o intsect.o loader2.o seq.o points.o fnt6x13.o morpher.o menu.o director.o view.o config.o game.o light.o devsel.o crc.o gamma.o language.o lisp/liblisp.a sdlport/libsdlport.a imlib/libimlib.a net/libnet.a -lm -lsocket -lnsl -L/usr/local/lib -R/usr/local/lib -lSDL -lpthread -lposix4 -L/usr/openwin/lib -L/usr/lib -lGL -lpthread
g++ -g -O2 -DHAVE_OPENGL -o abuse specache.o netcfg.o text_gui.o innet.o chat.o endgame.o version.o loadgame.o profile.o cop.o statbar.o compiled.o ant.o sensor.o demo.o lcache.o nfclient.o username.o clisp.o gui.o transp.o collide.o trig.o property.o cache.o particle.o objects.o extend.o console.o ability.o items.o dev.o chars.o level.o smallfnt.o automap.o help.o intsect.o loader2.o seq.o points.o fnt6x13.o morpher.o menu.o director.o view.o config.o game.o light.o devsel.o crc.o gamma.o language.o lisp/liblisp.a sdlport/libsdlport.a imlib/libimlib.a net/libnet.a -lsocket -lnsl -L/usr/local/lib /usr/local/lib/libSDL.so /usr/local/lib/libstdc++.so -L/sol10/SOURCES/I10/gcc-3.4.6/objdir/i386-pc-solaris2.10/libstdc++-v3/src -L/sol10/SOURCES/I10/gcc-3.4.6/objdir/i386-pc-solaris2.10/libstdc++-v3/src/.libs -L/sol10/SOURCES/I10/gcc-3.4.6/objdir/gcc -L/usr/local/i386-pc-solaris2.10/bin -L/usr/local/i386-pc-solaris2.10/lib -L/usr/local/lib/gcc/i386-pc-solaris2.10/3.4.6 -L/usr/local/lib/gcc/i386-pc-solaris2.10/3.4.6/../../../../i386-pc-solaris2.10/lib -L/usr/ccs/bin -L/usr/ccs/lib -L/usr/local/lib/gcc/i386-pc-solaris2.10/3.4.6/../../.. -lgcc_s -lm -L/usr/openwin/lib -lX11 -lXext -lposix4 -L/usr/lib -lGL -lpthread -Wl,-R -Wl,/usr/local/lib -Wl,-R -Wl,/usr/local/lib
ld: warning: file /usr/local/lib/libstdc++.so: attempted multiple inclusion of file
Undefined first referenced
symbol in file
SDL_SaveBMP_RW sdlport/libsdlport.a(event.o)
SDL_LoadBMP_RW sdlport/libsdlport.a(video.o)
SDL_RWFromFile sdlport/libsdlport.a(video.o)
SDL_MixAudio sdlport/libsdlport.a(sound.o)
ld: fatal: Symbol referencing errors. No output written to abuse
collect2: ld returned 1 exit status
make[3]: *** [abuse] Error 1
make[3]: Leaving directory `/Desktop/softSource/abuse-0.7.1/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/Desktop/softSource/abuse-0.7.1/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/Desktop/softSource/abuse-0.7.1'
make: *** [all] Error 2
what does the [all-recursive] Error 1 mean? is it due to the installation of the new make? what can i do?