Hi, On Wed, 2004-04-07 at 22:41, Marcel Siegert wrote: > make[3]: Entering directory `/home/mws/cvskram/DirectFB/lib/direct' > /bin/sh ../../libtool --mode=link gcc -Wall -O3 -ffast-math -pipe -g3 -fno-inline > -D_GNU_SOURCE -Werror-implicit-function-declaration -o dtest dtest.o > libdirect.la -ldl -lpthread > gcc -Wall -O3 -ffast-math -pipe -g3 -fno-inline -D_GNU_SOURCE > -Werror-implicit-function-declaration -o .libs/dtest dtest.o ./.libs/libdirect.so > -lz -ldl -lpthread > ./.libs/libdirect.so: undefined reference to `errno' > collect2: ld returned 1 exit status > make[3]: *** [dtest] Error 1 > make[3]: Leaving directory `/home/mws/cvskram/DirectFB/lib/direct'
This probably also triggered a warning (not error) during the compilation step higher up in that directory on one of the source files. Just add #include <errno.h> at the top in that file. If you can't find the file, grep for errno in that directory and add it wherever errno is being used but no include for it is present. Thomas Dave/Dina : future TV today ! - http://www.davedina.org/ <-*- thomas (dot) apestaart (dot) org -*-> If your heart is not on my side You're not on my side <-*- thomas (at) apestaart (dot) org -*-> URGent, best radio on the net - 24/7 ! - http://urgent.fm/ -- Info: To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe directfb-users" as subject.
