📄 configure.in
字号:
dnl Process this file with autoconf to produce a configure script.AC_INIT(README)dnl Set various version strings - taken gratefully from the GTk sources# Making releases:# MICRO_VERSION += 1;# INTERFACE_AGE += 1;# BINARY_AGE += 1;# if any functions have been added, set INTERFACE_AGE to 0.# if backwards compatibility has been broken,# set BINARY_AGE and INTERFACE_AGE to 0.#MAJOR_VERSION=1MINOR_VERSION=2MICRO_VERSION=7INTERFACE_AGE=5BINARY_AGE=7VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSIONAC_SUBST(MAJOR_VERSION)AC_SUBST(MINOR_VERSION)AC_SUBST(MICRO_VERSION)AC_SUBST(INTERFACE_AGE)AC_SUBST(BINARY_AGE)AC_SUBST(VERSION)# libtool versioningLT_RELEASE=$MAJOR_VERSION.$MINOR_VERSIONLT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE`LT_REVISION=$INTERFACE_AGELT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`AC_SUBST(LT_RELEASE)AC_SUBST(LT_CURRENT)AC_SUBST(LT_REVISION)AC_SUBST(LT_AGE)dnl Detect the canonical build and host environmentsAC_CONFIG_AUX_DIRS($srcdir/build-scripts)AC_CANONICAL_HOSTdnl Set up the compiler and linker flagscase "$host" in *-*-cygwin*) # We build SDL on cygwin without the UNIX emulation layer BASE_CFLAGS="-I/usr/include/mingw -mno-cygwin" BASE_LDFLAGS="-mno-cygwin" ;; *) BASE_CFLAGS="-D_GNU_SOURCE=1" BASE_LDFLAGS="" ;;esacBUILD_CFLAGS="$CFLAGS $CPPFLAGS"EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"BUILD_LDFLAGS="$LDFLAGS"EXTRA_LDFLAGS="$BASE_LDFLAGS"for path in /usr/local; do if test -d $path/include; then EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include" fi if test -d $path/lib; then EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib" fidoneCPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"CFLAGS="$CFLAGS $EXTRA_CFLAGS"LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"dnl Check for toolsAC_LIBTOOL_WIN32_DLLAC_PROG_LIBTOOLAC_PROG_CCAC_PROG_CXXAC_PROG_INSTALLAC_PROG_MAKE_SETdnl Check for compiler characteristicsAC_C_CONSTcase "$host" in *-*-cygwin* | *-*-mingw32*) EXE=".exe" ;; *) EXE="" ;;esac# Standard C sourcesSOURCES="$SOURCES \$srcdir/effect_position.c \$srcdir/effect_stereoreverse.c \$srcdir/effects_internal.c \$srcdir/load_aiff.c \$srcdir/load_voc.c \$srcdir/mixer.c \$srcdir/music.c"dnl Check for SDLSDL_VERSION=1.2.10AM_PATH_SDL($SDL_VERSION, :, AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]))EXTRA_CFLAGS="$EXTRA_CFLAGS $SDL_CFLAGS"EXTRA_LDFLAGS="$EXTRA_LDFLAGS $SDL_LIBS"dnl Check command-line optionsAC_ARG_ENABLE([music-cmd],AC_HELP_STRING([--enable-music-cmd], [support an external music player [[default=yes]]]), [], [enable_music_cmd=yes])if test x$enable_music_cmd = xyes; then SOURCES="$SOURCES $srcdir/music_cmd.c" EXTRA_CFLAGS="$EXTRA_CFLAGS -DCMD_MUSIC"fiAC_ARG_ENABLE([music-wave],AC_HELP_STRING([--enable-music-wave], [enable streaming WAVE music [[default=yes]]]), [], [enable_music_wave=yes])if test x$enable_music_wave = xyes; then SOURCES="$SOURCES $srcdir/wavestream.c" EXTRA_CFLAGS="$EXTRA_CFLAGS -DWAV_MUSIC"fino_libmikmod=yeslibmikmod_maj=3libmikmod_min=1libmikmod_rev=10libmikmod_ver="$libmikmod_maj.$libmikmod_min.$libmikmod_rev"AC_ARG_ENABLE([music-libmikmod],AC_HELP_STRING([--enable-music-libmikmod], [enable MOD music via external libmikmod [[default=no]]]), [], [enable_music_libmikmod=no])if test x$enable_music_libmikmod = xyes; then AC_PATH_PROG(LIBMIKMOD_CONFIG, libmikmod-config, no, [$PATH]) if test "$LIBMIKMOD_CONFIG" != "no" ; then no_libmikmod=no CFLAGS_SAVED="$CFLAGS" LIBS_SAVED="$LIBS" CFLAGS="$CFLAGS -DLIBMIKMOD_MUSIC `$LIBMIKMOD_CONFIG --cflags`" LIBS="$LIBS `$LIBMIKMOD_CONFIG --libs`" AC_MSG_CHECKING([for libmikmod - version >= $libmikmod_ver]) AC_TRY_RUN([#include "mikmod.h"#include "stdio.h"int main(int argc, char **argv){ long maj=$libmikmod_maj,min=$libmikmod_min,rev=$libmikmod_rev,ver=MikMod_GetVersion(); /*printf("(%d.%d.%d) ",ver>>16,(ver>>8)&0xff,ver&0xff);*/ if(ver>=((maj<<16)|(min<<8)|(rev))) { printf("yes\n"); return 0; } printf("no\n*** libmikmod is older than %d.%d.%d, not using.\n",maj,min,rev); return 1;}],,CFLAGS="$CFLAGS_SAVED";LIBS="$LIBS_SAVED",[echo $ac_n "cross compiling; assumed OK... $ac_c"]) fifiAC_ARG_ENABLE([music-mod],AC_HELP_STRING([--enable-music-mod], [enable MOD music via mikmod [[default=yes]]]), [], [enable_music_mod=$no_libmikmod])if test x$enable_music_mod = xyes; then EXTRA_CFLAGS="$EXTRA_CFLAGS -DMOD_MUSIC -I\$(srcdir)/mikmod" SOURCES="$SOURCES $srcdir/mikmod/*.c"fiAC_ARG_ENABLE([music-midi],AC_HELP_STRING([--enable-music-midi], [enable MIDI music via timidity [[default=yes]]]), [], [enable_music_midi=yes])if test x$enable_music_midi = xyes; then EXTRA_CFLAGS="$EXTRA_CFLAGS -DMID_MUSIC" AC_ARG_ENABLE([music-timidity-midi],AC_HELP_STRING([--enable-music-timidity-midi], [enable timidity MIDI output [[default=yes]]]), [], [enable_music_timidity_midi=yes]) if test x$enable_music_timidity_midi = xyes; then EXTRA_CFLAGS="$EXTRA_CFLAGS -DUSE_TIMIDITY_MIDI -I\$(srcdir)/timidity" SOURCES="$SOURCES $srcdir/timidity/*.c" fi AC_ARG_ENABLE([music-native-midi],AC_HELP_STRING([--enable-music-native-midi], [enable native MIDI music output [[default=yes]]]), [], [enable_music_native_midi=yes]) if test x$enable_music_native_midi = xyes; then use_music_native_midi=no case "$host" in *-*-cygwin* | *-*-mingw32*) use_music_native_midi=yes EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lwinmm" ;; *-*-darwin*) use_music_native_midi=yes EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,QuickTime" ;; esac if test x$use_music_native_midi = xyes; then EXTRA_CFLAGS="$EXTRA_CFLAGS -DUSE_NATIVE_MIDI -I\$(srcdir)/native_midi" SOURCES="$SOURCES $srcdir/native_midi/*.c" fi fi AC_ARG_ENABLE([music-native-midi-gpl],AC_HELP_STRING([--enable-music-native-midi-gpl], [enable native MIDI on UNIX using GPL code [[default=no]]]), [], [enable_music_native_midi_gpl=no]) if test x$enable_music_native_midi_gpl = xyes; then use_music_native_midi_gpl=no case "$host" in *-*-linux* | *-*-freebsd*) use_music_native_midi_gpl=yes ;; esac if test x$use_music_native_midi_gpl = xyes; then EXTRA_CFLAGS="$EXTRA_CFLAGS -DUSE_NATIVE_MIDI -I\$(srcdir)/native_midi" SOURCES="$SOURCES $srcdir/native_midi_gpl/*.c" fi fifiAC_ARG_ENABLE([music-ogg],AC_HELP_STRING([--enable-music-ogg], [enable Ogg Vorbis music [[default=yes]]]), [], [enable_music_ogg=yes])if test x$enable_music_ogg = xyes; then AC_MSG_CHECKING(for Ogg Vorbis headers and libraries) have_vorbis=no AC_TRY_COMPILE([ #include <vorbis/vorbisfile.h> ],[ ],[ have_vorbis=yes ]) AC_MSG_RESULT($have_vorbis) if test x$have_vorbis = xyes; then AC_ARG_ENABLE([music-ogg-shared],AC_HELP_STRING([--enable-music-ogg-shared], [dynamically load Ogg Vorbis support [[default=yes]]]), [], [enable_music_ogg_shared=yes]) case "$host" in *-*-darwin*) # FIXME when Mac OS X ships with Ogg Vorbis ogg_lib='' ;; *-*-cygwin* | *-*-mingw32*) ogg_lib='vorbisfile.dll' ;; *) for path in /usr/lib /usr/local/lib; do if test x$ogg_lib = x; then ogg_lib=[`ls -- $path/libvorbisfile.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] fi done ;; esac SOURCES="$SOURCES $srcdir/*_ogg.c" EXTRA_CFLAGS="$EXTRA_CFLAGS -DOGG_MUSIC" if test x$enable_music_ogg_shared = xyes && test x$ogg_lib != x; then echo "-- dynamic libvorbisfile -> $ogg_lib" EXTRA_CFLAGS="$EXTRA_CFLAGS -DOGG_DYNAMIC=\\\"$ogg_lib\\\"" else EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvorbisfile -lvorbis -logg" fi fifiAC_ARG_ENABLE(music-mp3,[ --enable-music-mp3 enable MP3 music via smpeg [[default=yes]]], , enable_music_mp3=yes)if test x$enable_music_mp3 = xyes; then SMPEG_VERSION=0.4.3 AM_PATH_SMPEG($SMPEG_VERSION, have_smpeg=yes, have_smpeg=no) if test x$have_smpeg = xyes; then AC_ARG_ENABLE([music-mp3-shared],AC_HELP_STRING([--enable-music-mp3-shared], [dynamically load MP3 support [[default=yes]]]), [], [enable_music_mp3_shared=yes]) case "$host" in *-*-darwin*) smpeg_lib='' ;; *-*-cygwin* | *-*-mingw32*) smpeg_lib='smpeg.dll' ;; *) for path in /usr/lib /usr/local/lib; do if test x$smpeg_lib = x; then smpeg_lib=[`ls -- $path/libsmpeg*.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] fi done ;; esac SOURCES="$SOURCES $srcdir/*_mp3.c" EXTRA_CFLAGS="$EXTRA_CFLAGS -DMP3_MUSIC $SMPEG_CFLAGS" if test x$enable_music_mp3_shared = xyes && test x$smpeg_lib != x; then echo "-- dynamic libsmpeg -> $smpeg_lib" EXTRA_CFLAGS="$EXTRA_CFLAGS -DMP3_DYNAMIC=\\\"$smpeg_lib\\\"" else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $SMPEG_LIBS" fi fifiOBJECTS=`echo $SOURCES | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`dnl Expand the sources and objects needed to build the libraryAC_SUBST(ac_aux_dir)AC_SUBST(SOURCES)AC_SUBST(OBJECTS)AC_SUBST(BUILD_CFLAGS)AC_SUBST(EXTRA_CFLAGS)AC_SUBST(BUILD_LDFLAGS)AC_SUBST(EXTRA_LDFLAGS)AC_SUBST(EXE)AC_SUBST(SDL_CFLAGS)AC_SUBST(SDL_LIBS)AC_OUTPUT([ Makefile SDL_mixer.spec SDL_mixer.qpg], [ : >build-deps if test x"$MAKE" = x; then MAKE=make; fi; $MAKE depend])
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -