Hey developer Freaks, can anyone explain, what is wrong ? is a libary missing ? I don't understand this "make" output thanx for your help .. Daniel <p>gcc -g -O2 -Wall -o ices ices.o log.o setup.o stream.o util.o mp3.o cue.o metadata.o id3.o signals.o reencode.o ices_config.o playlist/libplaylist.a ../libshout/.libs/libices.al /usr/local/lib/libmp3lame.so /usr/perl5/5.6.1/lib/sun4-solaris-64int/auto/DynaLoader/DynaLoader.a -L/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE -lperl -ldl -lc -L/usr/lib -lxml2 -lz -lsocket -lnsl -lm -R/usr/local/lib -R/usr/local/lib -R/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE -R/usr/lib Undefined first referenced symbol in file inet_aton ../libshout/.libs/libices.al(sock.lo) ld: fatal: Symbol referencing errors. No output written to ices collect2: ld returned 1 exit status make[3]: *** [ices] Error 1 make[3]: Leaving directory `/ices-0.2.3/src' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/ices-0.2.3/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/ices-0.2.3' make: *** [all-recursive-am] Error 2 --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
On Fri, 2003-01-31 at 11:37, Daniel Knoll wrote:> Hey developer Freaks, > > can anyone explain, what is wrong ? is a libary missing ? > I don't understand this "make" output > > thanx for your help ..known bug with ices on solaris, it is missing the inet_aton function you need to change it to inet_pton omething like in sock.h add #define inet_aton(x,y) inet_pton(AF_INET, x, y) karl. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
More specifically #define inet_aton(a,b) inet_pton(AF_INET, (a), (b)) into ices/libshout/sock.h Thanks to the list for giving me this a few weeks back +------------------------- + Dave Dennis + Seattle, WA + dmd@speakeasy.org + http://bauhaus.nu/dion +------------------------- On 31 Jan 2003, Karl Heyes wrote:> On Fri, 2003-01-31 at 11:37, Daniel Knoll wrote: > > Hey developer Freaks, > > > > can anyone explain, what is wrong ? is a libary missing ? > > I don't understand this "make" output > > > > thanx for your help .. > > known bug with ices on solaris, it is missing the inet_aton function > you need to change it to inet_pton > > something like in sock.h > add > > #define inet_aton(x,y) inet_pton(AF_INET, x, y) > > karl. > > > --- >8 ---- > List archives: http://www.xiph.org/archives/ > icecast project homepage: http://www.icecast.org/ > To unsubscribe from this list, send a message to 'icecast-request@xiph.org' > containing only the word 'unsubscribe' in the body. No subject is needed. > Unsubscribe messages sent to the list will be ignored/filtered. >--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.