5 echo -n 'Build Wine as emulator or library (E/L) [E]? '
7 if [ "$input" = 'l' -o "$input" = 'L' ]
9 WINELIB
='#define WineLib -DWINELIB'
10 ALLDEFINES
=$ALLDEFINES -DWINELIB
15 echo -n 'Short filenames (Y/N) [N]? '
17 if [ "$input" = 'y' -o "$input" = 'Y' ]
19 SHORTNAMES
='#define ShortNames -DSHORTNAMES'
20 ALLDEFINES
=$ALLDEFINES -DSHORTNAMES
25 echo '/* autoconf.h generated automatically. Run Configure. */' > autoconf.h
26 echo $WINELIB >> autoconf.h
27 echo $SHORTNAMES >> autoconf.h
28 echo "#define AutoDefines $ALLDEFINES" >> autoconf.h