OSDN Git Service

[int_synth] Fix loading multiple files
[timidity41/timidity41.git] / config_args.txt
1 ./autogen.sh --host=i686-w64-mingw32 CFLAGS="-march=pentium -DWINVER=0x0400 -D_WIN32_WINDOWS=0x0400"
2
3 ./autogen.sh --host=i686-w64-mingw32 --enable-interface=ncurses,vt100,winsyn CFLAGS="-march=pentium -DWINVER=0x0400 -D_WIN32_WINDOWS=WINVER -Wall"
4
5 ./autogen.sh --host=i686-w64-mingw32 --enable-interface=ncurses,vt100,winsyn,server,dynamic --enable-spectrogram --enable-network --enable-spline=linear --enable-datatype=double --enable-ext-instruct=sse2 --enable-wrd --enable-audio=w32,vorbis,gogo,ogg,flac,portaudio,npipe,ao,opus,speex,lame
6
7 export DEBUGFLAGS="-g"
8 export EXTRAFLAGS="-D_FORTIFY_SOURCE=2 -Wformat -Wformat-security"
9 export audio="default,oss,nas,esd,jack,vorbis,flac,speex,opus,portaudio,ao,alsa"
10 export interface="ncurses,slang,motif,tcltk,emacs,vt100,xaw,xskin,gtk,portmidisyng,alsaseq"
11 export MAKE_CFLAGS="${EXTRAFLAGS} -fno-strict-aliasing -Wall -pipe ${DEBUGFLAGS}"
12 export CFLAGS="-fno-strict-aliasing -Wall -pipe ${DEBUGFLAGS}"
13 sh ./autogen.sh ${CONFFLAGS} \
14  --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
15  --sysconfdir=/etc --with-default-path=/etc/timidity \
16  --with-lispdir=/usr/share/emacs/site-lisp/timidity-el \
17  --with-x \
18  --with-tcl-includes=/usr/include/tcl8.6 \
19  --with-tk-includes=/usr/include/tcl8.6 \
20  --with-nas-library=-laudio \
21  --enable-audio=${audio} \
22  --with-default-output=default \
23  --enable-interface=${interface} \
24  --enable-server --enable-network --enable-spectrogram --enable-wrd \
25  --enable-xft --enable-xdnd --enable-offix --enable-thread --enable-largefile \
26  --enable-spline=gauss --enable-filter=no --enable-datatype=double \
27  --enable-ext-instruct=sse3
28
29 static MidiEvent *groom_list(int32 divisions, int32 *eventsp, int32 *samplesp);
30
31 #ifdef SUPPORT_LOOPEVENT
32     MidiEventList *loop_startmeep;
33     int32 loop_repeat_counter, loop_event_count;
34     int32 loop_begintime, loop_eottime;
35 #endif /* SUPPORT_LOOPEVENT */
36
37 #ifdef SUPPORT_LOOPEVENT
38     loop_startmeep = NULL;
39     loop_repeat_counter = opt_use_midi_loop_repeat ? opt_midi_loop_repeat : 0;
40     loop_event_count = 0;
41     loop_begintime = 0;
42     loop_eottime = 0;
43 #endif /* SUPPORT_LOOPEVENT */
44
45 static MidiEvent *groom_list(int32 divisions, int32 *eventsp, int32 *samplesp);