Problems compiling SDL helper libs with Slackware 11

Hello !

I am interested if other people have problems too
compiling the SDL helper libs like SDL_net, SDL_image,…
under Slackware 11.

With SDL_net, SDL_image i get something like this :-------------------------------

gcc -shared .libs/IMG.o .libs/IMG_bmp.o .libs/IMG_gif.o .libs/IMG_jpg.o
.libs/IMG_lbm.o .libs/IMG_pcx.o .libs/IMG_png.o .libs/IMG_pnm.o
.libs/IMG_tga.o .libs/IMG_tif.o .libs/IMG_xcf.o .libs/IMG_xpm.o
.libs/IMG_xv.o -L/usr/local/lib /usr/local/lib/libSDL.so -L/usr/X11R6/lib
-lpthread -Wl,-rpath -Wl,-soname -Wl,libSDL_image-1.2.so.0 -o
.libs/libSDL_image-1.2.so.0.1.4
/usr/lib/gcc/i486-slackware-linux/3.4.6/…/…/…/…/i486-slackware-linux/bin/ld:
libSDL_image-1.2.so.0: No such file: No such file or directory
collect2: ld returned 1 exit status
make: *** [libSDL_image.la] Error 1
wizard at wizardspc:/tmp/SDL_image$


CU

I am interested if other people have problems too
compiling the SDL helper libs like SDL_net, SDL_image,…
under Slackware 11.

With SDL_net, SDL_image i get something like this :

I have S11 full install on a P3.

I am able to compile the latest versions of SDL, SDL_image and SDL_net
using the basic:
./configure;make;make install
Do you have the latest versions

I have a problem but mine has to do with OpenGL…
Good luck!
Simon

Hello !

Do you have the latest versions

All versions from SDL and the helper libs, are the
latest from SVN. My installed packages you can see here :

http://www.syntheticsw.com/~wizard/tmp/packages.txt

When compiling SDL_net for example :-----------

wizard at wizardspc:~/code/SDL/SDL_net$ ./autogen.sh
/usr/share/aclocal/xmms.m4:17: warning: underquoted definition of
XMMS_TEST_VERSION
run info '(automake)Extending aclocal’
or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/xmms.m4:62: warning: underquoted definition of
AM_PATH_XMMS
/usr/share/aclocal/pilot-link.m4:1: warning: underquoted definition of
AC_PILOT_LINK_HOOK
/usr/share/aclocal/imlib.m4:9: warning: underquoted definition of
AM_PATH_IMLIB
/usr/share/aclocal/imlib.m4:167: warning: underquoted definition of
AM_PATH_GDK_IMLIB
/usr/share/aclocal/gtk.m4:7: warning: underquoted definition of AM_PATH_GTK
/usr/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB
/usr/share/aclocal/gdk-pixbuf.m4:12: warning: underquoted definition of
AM_PATH_GDK_PIXBUF
/usr/share/aclocal/audiofile.m4:12: warning: underquoted definition of
AM_PATH_AUDIOFILE
/usr/share/aclocal/aalib.m4:12: warning: underquoted definition of
AM_PATH_AALIB
Now you are ready to run ./configure
wizard at wizardspc:~/code/SDL/SDL_net$


./configure runs okay.
./make


gcc -DPACKAGE_NAME="" -DPACKAGE_TARNAME="" -DPACKAGE_VERSION=""
-DPACKAGE_STRING="" -DPACKAGE_BUGREPORT="" -DPACKAGE=“SDL_net”
-DVERSION=“1.2.6” -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1
-DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -I. -I. -g -O2
-I/usr/local/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT SDLnetselect.lo
-MD -MP -MF .deps/SDLnetselect.Tpo -c SDLnetselect.c -fPIC -DPIC -o
.libs/SDLnetselect.o
gcc -DPACKAGE_NAME="" -DPACKAGE_TARNAME="" -DPACKAGE_VERSION=""
-DPACKAGE_STRING="" -DPACKAGE_BUGREPORT="" -DPACKAGE=“SDL_net”
-DVERSION=“1.2.6” -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1
-DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -I. -I. -g -O2
-I/usr/local/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -MT SDLnetselect.lo
-MD -MP -MF .deps/SDLnetselect.Tpo -c SDLnetselect.c -o SDLnetselect.o

/dev/null 2>&1
/bin/sh ./libtool --tag=CC --mode=link gcc -g -O2
-I/usr/local/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -o libSDL_net.la
-rpath /usr/local/lib -no-undefined -release 1.2 -version-info 0:6:0
SDLnet.lo SDLnetTCP.lo SDLnetUDP.lo SDLnetselect.lo -L/usr/local/lib
-Wl,-rpath, -lSDL -lpthread
gcc -shared .libs/SDLnet.o .libs/SDLnetTCP.o .libs/SDLnetUDP.o
.libs/SDLnetselect.o -L/usr/local/lib /usr/local/lib/libSDL.so
-L/usr/X11R6/lib -lpthread -Wl,-rpath -Wl,-soname -Wl,libSDL_net-1.2.so.0
-o .libs/libSDL_net-1.2.so.0.0.6
/usr/lib/gcc/i486-slackware-linux/3.4.6/…/…/…/…/i486-slackware-linux/bin/ld:
libSDL_net-1.2.so.0: No such file: No such file or directory
collect2: ld returned 1 exit status
make: *** [libSDL_net.la] Error 1
wizard at wizardspc:~/code/SDL/SDL_net$


CU

Hello !

I have S11 full install on a P3.

I am able to compile the latest
versions of SDL, SDL_image and SDL_net
using the basic:
./configure;make;make install
Do you have the latest versions

Please do the following :

cd /var/log/packages
ls >list.txt

and please send me this list.txt

Thanks.

CU