Simon Scheiwiller wrote these words on 01/01/06 09:29 CST: > I tried to install Gaim-1.5.0 with NAS support, but I get the following > error: > > gtksound.c:37:29: error: audio/audiolib.h: No such file or directory > gtksound.c:38:29: error: audio/soundlib.h: No such file or directory > gtksound.c: In function 'play_file_nas': > gtksound.c:137: error: 'AuServer' undeclared (first use in this function) > gtksound.c:137: error: (Each undeclared identifier is reported only once > gtksound.c:137: error: for each function it appears in.) > gtksound.c:137: error: 'nas_serv' undeclared (first use in this function) > > What's wrong here?
This makes perfect sense to me. Apparently Gaim is not including the /usr/X11R6/include directory in the CPPFLAGS and therefore it cannot find the audio/audiolib.h file that lives there. Or, you've installed X in /usr and not /usr/X11R6 and Gaim is looking in /usr/X11R6/include and thus cannot find it. It should be easy enough to figure out which it is, and it should be an easy task to either patch the source or include a CPPFLAGS switch. Bottom line is GAIM needs to find /usr/X11R6/include/audio/audiolib.h or /usr/include/audio/audiolib.h, whichever you have on your system. If you can somehow tell GAIM where that file is, it will also find the soundlib.h file and everything should be fine. -- Randy rmlscsi: [GNU ld version 2.15.94.0.2 20041220] [gcc (GCC) 3.4.3] [GNU C Library stable release version 2.3.4] [Linux 2.6.10 i686] 12:18:00 up 98 days, 21:42, 3 users, load average: 1.48, 1.19, 0.81 -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
