Still can't compile it in Ubuntu Linux 5.10.
Downloaded it from
http://rapidshare.de/files/8362016/fceu-nitsuja-src.7z.html.
Using gcc 4.02, I prepared and compiled it with:
find -type f -exec sed -si 's/^M//g' '{}' \;
chmod u+x configure
./configure --with-opengl
make
Got:
cd . && /bin/sh ./config.status Makefile
config.status: creating Makefile
Making all in src
make[1]: Entering directory `/home/dugan/fceu-nitsuja-src/src'
source='sound.c' object='sound.o' libtool=no \
depfile='.deps/sound.Po' tmpdepfile='.deps/sound.TPo' \
depmode=gcc3 /bin/sh ../depcomp \
gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_
STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"fceu\" -DVERSION=\"0.98.13\" -D
_GNU_SOURCE=1 -DHAVE_ASPRINTF=1 -DHAVE_LIBZ=1 -DNETWORK=1 -DUNIX=1 -DPSS_STYLE=1
-DNETWORK=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_ST
DLIB_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 -DUSE_SEXYAL=1 -DOPENGL=1 -DSDL=1 -DC80x
86=1 -DLSB_FIRST=1 -DFCEU_VERSION=\"0.98.13\" -DFCEU_VERSION_NUMERIC=9813 -DFRAM
ESKIP=1 -Wall -fomit-frame-pointer -I/usr/include/SDL -D_REENTRANT -Wall -
fomit-frame-pointer -g -O2 -I/usr/include/SDL -D_REENTRANT -c -o sound.o `test -
f 'sound.c' || echo './'`sound.c
sound.c: In function ‘FCEUSND_Reset’:
sound.c:1097: error: too many arguments to function ‘FCEUD_PrintError’
sound.c:1084: warning: unused variable ‘movieConvertOffset2’
sound.c:1084: warning: unused variable ‘movieConvertOffset1’
make[1]: *** [sound.o] Error 1
make[1]: Leaving directory `/home/dugan/fceu-nitsuja-src/src'
make: *** [all-recursive] Error 1
Remembering your comment about sed eating too much, I also tried:
find -type f -exec dos2unix '{}' \;
and got the exact same result.