/[svn]/linuxsampler/trunk/configure.ac
ViewVC logotype

Diff of /linuxsampler/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1049 by schoenebeck, Wed Feb 28 06:53:42 2007 UTC revision 1454 by schoenebeck, Fri Oct 19 17:52:15 2007 UTC
# Line 4  AC_INIT(configure.in) Line 4  AC_INIT(configure.in)
4  # LinuxSampler's / liblinuxsampler's "official" release version:  # LinuxSampler's / liblinuxsampler's "official" release version:
5    
6  LINUXSAMPLER_RELEASE_MAJOR=0  LINUXSAMPLER_RELEASE_MAJOR=0
7  LINUXSAMPLER_RELEASE_MINOR=4  LINUXSAMPLER_RELEASE_MINOR=5
8  LINUXSAMPLER_RELEASE_BUILD=0.4cvs  LINUXSAMPLER_RELEASE_BUILD=0
9    
10  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
11  # The following is the libtool / shared library version. This doesn't have to  # The following is the libtool / shared library version. This doesn't have to
# Line 24  LINUXSAMPLER_RELEASE_BUILD=0.4cvs Line 24  LINUXSAMPLER_RELEASE_BUILD=0.4cvs
24  #  6. If any interfaces have been removed since the last public release, then set age  #  6. If any interfaces have been removed since the last public release, then set age
25  #     to 0.  #     to 0.
26    
27  LIBLINUXSAMPLER_LT_CURRENT=0  LIBLINUXSAMPLER_LT_CURRENT=1
28  LIBLINUXSAMPLER_LT_REVISION=0  LIBLINUXSAMPLER_LT_REVISION=0
29  LIBLINUXSAMPLER_LT_AGE=0  LIBLINUXSAMPLER_LT_AGE=0
30  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE"  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE"
# Line 114  fi Line 114  fi
114  # check for <features.h>  # check for <features.h>
115  AC_CHECK_HEADERS(features.h)  AC_CHECK_HEADERS(features.h)
116    
117    # test for POSIX thread library
118    m4_ifdef([m4_include(m4/pthread.m4)],,
119                 [sinclude([m4/pthread.m4])])
120    ACX_PTHREAD
121    LIBS="$PTHREAD_LIBS $LIBS"
122    CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
123    CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
124    CC="$PTHREAD_CC"
125    
126    # check for a bug in NPTL-enabled glibc
127    # (see Gentoo bug report #194076)
128    AC_ARG_ENABLE(nptl-bug-check,
129      [  --disable-nptl-bug-check
130                              Disable check for a bug in certain NPTL-enabled
131                              glibc versions that caused crashs.],
132      [config_check_nptl_bug="$enableval"],
133      [config_check_nptl_bug="yes"]
134    )
135    if test "$config_check_nptl_bug" = "yes"; then
136        m4_ifdef([m4_include(m4/nptl_bug.m4)],,
137                 [sinclude([m4/nptl_bug.m4])])
138        ACX_NPTL_GLIBC_BUG([
139            echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
140            echo "You seem to have a buggy PTHREAD library! LinuxSampler would"
141            echo "probably crash due to this. Please report us the system you are"
142            echo "using and/or file a bug report to the bug tracking system of"
143            echo "your distribution."
144            echo "If you have a NPTL-enabled glibc AND it was compiled for TLS as"
145            echo "well, you can try to circumvent this problem for now by setting"
146            echo "the environment variable LD_ASSUME_KERNEL=\"2.4.1\" , which"
147            echo "should cause this test to pass."
148            echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
149            AC_MSG_ERROR([possibly NPTL glibc bug detected])
150        ])
151    else
152        echo "NPTL glibc bug check disabled"
153    fi
154    
155    
156    
157  ###########################################################################  ###########################################################################
158  # Checks for available audio and MIDI systems / drivers  # Checks for available audio and MIDI systems / drivers
# Line 127  AC_ARG_ENABLE(alsa-driver, Line 166  AC_ARG_ENABLE(alsa-driver,
166    [  --disable-alsa-driver    [  --disable-alsa-driver
167                            Disable support for the Advanced Linux Sound                            Disable support for the Advanced Linux Sound
168                            Architecture (ALSA).],                            Architecture (ALSA).],
169    [config_alsa_driver="no"],    [config_alsa_driver="$enableval"],
170    [config_alsa_driver="yes"]    [config_alsa_driver="yes"]
171  )  )
172  have_alsa=0  have_alsa=0
# Line 207  AC_ARG_ENABLE(jack-driver, Line 246  AC_ARG_ENABLE(jack-driver,
246    [  --disable-jack-driver    [  --disable-jack-driver
247                            Disable support for the Jack Audio Connection Kit                            Disable support for the Jack Audio Connection Kit
248                            (JACK).],                            (JACK).],
249    [config_jack_driver="no"],    [config_jack_driver="$enableval"],
250    [config_jack_driver="yes"]    [config_jack_driver="yes"]
251  )  )
252  have_jack=0  have_jack=0
# Line 230  AC_ARG_ENABLE(arts-driver, Line 269  AC_ARG_ENABLE(arts-driver,
269    [  --disable-arts-driver    [  --disable-arts-driver
270                            Disable support for the Analogue Realtime System                            Disable support for the Analogue Realtime System
271                            (aRts).],                            (aRts).],
272    [config_arts_driver="no"],    [config_arts_driver="$enableval"],
273    [config_arts_driver="yes"]    [config_arts_driver="yes"]
274  )  )
275  have_arts=0  have_arts=0
# Line 251  AC_DEFINE_UNQUOTED(HAVE_ARTS,$have_arts, Line 290  AC_DEFINE_UNQUOTED(HAVE_ARTS,$have_arts,
290  AC_ARG_ENABLE(midishare-driver,  AC_ARG_ENABLE(midishare-driver,
291    [  --disable-midishare-driver    [  --disable-midishare-driver
292                            Disable support for the MidiShare system.],                            Disable support for the MidiShare system.],
293    [config_midishare_driver="no"],    [config_midishare_driver="$enableval"],
294    [config_midishare_driver="yes"]    [config_midishare_driver="yes"]
295  )  )
296  have_midishare=0  have_midishare=0
# Line 277  AC_DEFINE_UNQUOTED(HAVE_MIDISHARE,$have_ Line 316  AC_DEFINE_UNQUOTED(HAVE_MIDISHARE,$have_
316  AC_ARG_ENABLE(coremidi-driver,  AC_ARG_ENABLE(coremidi-driver,
317    [  --disable-coremidi-driver    [  --disable-coremidi-driver
318                            Disable support for the Apple CoreMIDI system.],                            Disable support for the Apple CoreMIDI system.],
319    [config_coremidi_driver="no"],    [config_coremidi_driver="$enableval"],
320    [config_coremidi_driver="yes"]    [config_coremidi_driver="yes"]
321  )  )
322  have_coremidi=0  have_coremidi=0
# Line 295  fi Line 334  fi
334  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")
335  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])
336    
337    # have we found at least one MIDI input and one audio output driver ?
338    if test "$have_midi_input_driver" = "false"; then
339        echo "No supported MIDI input system found!"
340        echo "Sorry, LinuxSampler only supports the following MIDI drivers at the moment:"
341        echo "ALSA, MIDIShare, CoreMIDI."
342        echo "If you think you have one of those available on your system, make sure you"
343        echo "also have the respective development (header) files installed."
344        exit -1;
345    fi
346    if test "$have_audio_output_driver" = "false"; then
347        echo "No supported audio output system found!"
348        echo "Sorry, LinuxSampler only supports ALSA, JACK and ARTS as audio output"
349        echo "driver at the moment!"
350        exit -1;
351    fi
352    
353    
354    
355    ###########################################################################
356    # Checks for various DLL libraries
357    
358  # Check presence of libgig  # Check presence of libgig
359  libgig_version="3.1.0"  libgig_version="3.2.0"
360  PKG_CHECK_MODULES(GIG, gig >= $libgig_version, HAVE_GIG=true, HAVE_GIG=false)  PKG_CHECK_MODULES(GIG, gig >= $libgig_version, HAVE_GIG=true, HAVE_GIG=false)
361  if test "$HAVE_GIG" = "false"; then  if test "$HAVE_GIG" = "false"; then
362      echo "Required libgig version not found!"      echo "Required libgig version not found!"
# Line 308  fi Line 368  fi
368  AC_SUBST(GIG_CFLAGS)  AC_SUBST(GIG_CFLAGS)
369  AC_SUBST(GIG_LIBS)  AC_SUBST(GIG_LIBS)
370    
371  # SQLITE3  # Instruments DB feature (requires SQLite 3.3)
372  PKG_CHECK_MODULES(SQLITE3, sqlite3, HAVE_SQLITE3=true, HAVE_SQLITE3=false)  AC_ARG_ENABLE(instruments-db,
373  AC_SUBST(SQLITE3_LIBS)    [  --disable-instruments-db
374  AC_SUBST(SQLITE3_CFLAGS)                            Disable compilation of the sampler's instruments
375  if test $HAVE_SQLITE3 = false; then                            database feature. You need to have SQLite 3.3
376      HAVE_SQLITE3=0;                            or younger installed for this feature.],
377      echo "no, support for instrument DB will be disabled!"    [config_instruments_db="$enableval"],
378      [config_instruments_db="yes"]
379    )
380    HAVE_SQLITE3=0;
381    if test "$config_instruments_db" = "yes"; then
382        # Check presence of sqlite3
383        sqlite_version="3.3"
384        PKG_CHECK_MODULES(SQLITE3, sqlite3 >= $sqlite_version, HAVE_SQLITE3=true, HAVE_SQLITE3=false)
385        AC_SUBST(SQLITE3_LIBS)
386        AC_SUBST(SQLITE3_CFLAGS)
387        if test $HAVE_SQLITE3 = false; then
388            HAVE_SQLITE3=0
389            config_instruments_db="no"
390            echo "*** Required sqlite version not found!"
391            echo "*** You need to have sqlite version ${sqlite_version} or higher"
392            echo "*** for instruments database support to be enabled."
393            echo "*** Support for instruments DB will be disabled!"
394        else
395            HAVE_SQLITE3=1
396        fi
397  else  else
398      HAVE_SQLITE3=1      echo "Instruments DB feature disabled by configure script parameter"
     echo "yes"  
399  fi  fi
400  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)
401  AC_DEFINE_UNQUOTED(HAVE_SQLITE3,$HAVE_SQLITE3,[Define to 1 if you have SQLITE3 installed.])  AC_DEFINE_UNQUOTED(HAVE_SQLITE3,$HAVE_SQLITE3,[Define to 1 if you want the instruments DB feature and have SQLITE3 installed.])
402    
 if test "$have_midi_input_driver" = "false"; then  
     echo "No supported MIDI input system found!"  
     echo "Sorry, LinuxSampler only supports the following MIDI drivers at the moment:"  
     echo "ALSA, MIDIShare, CoreMIDI."  
     echo "If you think you have one of those available on your system, make sure you"  
     echo "also have the respective development (header) files installed."  
     exit -1;  
 fi  
 if test "$have_audio_output_driver" = "false"; then  
     echo "No supported audio output system found!"  
     echo "Sorry, LinuxSampler only supports ALSA and JACK as audio output driver at the moment!"  
     exit -1;  
 fi  
403    
404    
405  ###########################################################################  ###########################################################################
# Line 343  fi Line 408  fi
408  # TODO: should we use AC_ARG_VAR(variable, description) instead?  # TODO: should we use AC_ARG_VAR(variable, description) instead?
409    
410  AC_ARG_ENABLE(asm,  AC_ARG_ENABLE(asm,
411    [  --enable-asm    [  --disable-asm
412                            Enable hand-crafted assembly optimizations                            Enable hand-crafted assembly optimizations
413                            (default=off). LinuxSampler provides CPU specific                            (default=on). LinuxSampler provides CPU specific
414                            assembly optimizations for the most important                            assembly optimizations. This is currently limited
415                            synthesis algorithms. This is currently disabled                            to just enter a fast (denormal) FPU mode on x86
416                            by default since current asm code is broken.],                            platforms. There are currently no synthesis core
417    [config_asm="yes"],                            assembly optimizations anymore since LS 0.4.0],
418    [config_asm="no"]    [config_asm="$enableval"],
419      [config_asm="yes"]
420  )  )
421  if test "$config_asm" = "yes"; then  if test "$config_asm" = "yes"; then
422    AC_DEFINE_UNQUOTED(CONFIG_ASM, 1, [Define to 1 if you want to enable hand-crafted asm optimizations.])    AC_DEFINE_UNQUOTED(CONFIG_ASM, 1, [Define to 1 if you want to enable asm optimizations.])
423  fi  fi
424    
425  AC_ARG_ENABLE(dev-mode,  AC_ARG_ENABLE(dev-mode,
426    [  --disable-dev-mode    [  --enable-dev-mode
427                            Disable development mode (default=on). In that mode                            Enable development mode (default=off). In that mode
428                            we do some extra sanity checks here and there.                            we do some extra sanity checks here and there.
429                            This helps to spot possible problems, but reduces                            This helps to spot possible problems, but reduces
430                            efficiency a bit],                            efficiency a bit],
431    [config_dev_mode="no"],    [config_dev_mode="$enableval"],
432    [config_dev_mode="yes"]    [config_dev_mode="no"]
433  )  )
434  if test "$config_dev_mode" = "yes"; then  if test "$config_dev_mode" = "yes"; then
435    AC_DEFINE_UNQUOTED(CONFIG_DEVMODE, 1, [Define to 1 if you want to enable development mode.])    AC_DEFINE_UNQUOTED(CONFIG_DEVMODE, 1, [Define to 1 if you want to enable development mode.])
# Line 390  AC_ARG_ENABLE(rt-exceptions, Line 456  AC_ARG_ENABLE(rt-exceptions,
456                            context as well. Otherwise if disabled                            context as well. Otherwise if disabled
457                            segmentation faults will be forced by the                            segmentation faults will be forced by the
458                            application on critical errors.],                            application on critical errors.],
459    [config_rt_exceptions="yes"],    [config_rt_exceptions="$enableval"],
460    [config_rt_exceptions="no"]    [config_rt_exceptions="no"]
461  )  )
462  if test "$config_rt_exceptions" = "yes"; then  if test "$config_rt_exceptions" = "yes"; then
# Line 584  AC_ARG_ENABLE(force-filter, Line 650  AC_ARG_ENABLE(force-filter,
650                            If enabled will force filter to be used even if                            If enabled will force filter to be used even if
651                            no usage was define in instrument patch files.                            no usage was define in instrument patch files.
652                            (default=no).],                            (default=no).],
653    [config_force_filter="yes"],    [config_force_filter="$enableval"],
654    [config_force_filter="no"]    [config_force_filter="no"]
655  )  )
656  if test "$config_force_filter" = "yes"; then  if test "$config_force_filter" = "yes"; then
# Line 674  AC_ARG_ENABLE(gs-checksum, Line 740  AC_ARG_ENABLE(gs-checksum,
740                            messages which do not provide a correct checksum                            messages which do not provide a correct checksum
741                            will be ignored. This is disabled by default as                            will be ignored. This is disabled by default as
742                            not all devices honor GS checksums.],                            not all devices honor GS checksums.],
743    [config_assert_gs_sysex_checksum="yes"],    [config_assert_gs_sysex_checksum="$enableval"],
744    [config_assert_gs_sysex_checksum="no"]    [config_assert_gs_sysex_checksum="no"]
745  )  )
746  if test "config_assert_gs_sysex_checksum" = "yes"; then  if test "config_assert_gs_sysex_checksum" = "yes"; then
# Line 720  AC_ARG_ENABLE(signed-triang-algo, Line 786  AC_ARG_ENABLE(signed-triang-algo,
786                                Similar to intmath but uses abs() function.                                Similar to intmath but uses abs() function.
787                                Depending on compiler and platrofm this could                                Depending on compiler and platrofm this could
788                                perform better than integer math as it avoids                                perform better than integer math as it avoids
789                                an extra integer multiply instruction.                                an extra integer multiply instruction.
   
790                              diharmonic:                              diharmonic:
791                                The triangular wave will be approximated by adding two                                The triangular wave will be approximated by adding two
792                                sinusoidials. This solution might especially hurt on                                sinusoidials. This solution might especially hurt on
# Line 755  AC_ARG_ENABLE(unsigned-triang-algo, Line 820  AC_ARG_ENABLE(unsigned-triang-algo,
820                                Similar to intmath but uses abs() function.                                Similar to intmath but uses abs() function.
821                                Depending on compiler and platrofm this could                                Depending on compiler and platrofm this could
822                                perform better than integer math as it avoids                                perform better than integer math as it avoids
823                                an extra integer multiply instruction.                                an extra integer multiply instruction.
   
824                              diharmonic:                              diharmonic:
825                                The triangular wave will be approximated by adding two                                The triangular wave will be approximated by adding two
826                                sinusoidials. This solution might especially hurt on                                sinusoidials. This solution might especially hurt on
# Line 787  AC_ARG_ENABLE(process-muted-channels, Line 851  AC_ARG_ENABLE(process-muted-channels,
851                            will not discard notes, triggered in mute mode,                            will not discard notes, triggered in mute mode,
852                            when the channel is unmuted. But also will reduce                            when the channel is unmuted. But also will reduce
853                            the efficiency.],                            the efficiency.],
854    [config_process_muted_channels="yes"],    [config_process_muted_channels="$enableval"],
855    [config_process_muted_channels="no"]    [config_process_muted_channels="no"]
856  )  )
857  if test "$config_process_muted_channels" = "yes"; then  if test "$config_process_muted_channels" = "yes"; then
# Line 801  AC_ARG_ENABLE(process-all-notes-off, Line 865  AC_ARG_ENABLE(process-all-notes-off,
865                            all voices whenever it receives an All-Notes-Off                            all voices whenever it receives an All-Notes-Off
866                            MIDI message. You can disable this behavior, so                            MIDI message. You can disable this behavior, so
867                            that LS simply ignores such messages.],                            that LS simply ignores such messages.],
868    [config_process_all_notes_off="no"],    [config_process_all_notes_off="$enableval"],
869    [config_process_all_notes_off="yes"]    [config_process_all_notes_off="yes"]
870  )  )
871  if test "$config_process_all_notes_off" = "yes"; then  if test "$config_process_all_notes_off" = "yes"; then
# Line 815  AC_ARG_ENABLE(interpolate-volume, Line 879  AC_ARG_ENABLE(interpolate-volume,
879                            generated by for example the envelope generator                            generated by for example the envelope generator
880                            will be smoother, minimizing the risk for audio                            will be smoother, minimizing the risk for audio
881                            clicks. Disable it to reduce CPU usage.],                            clicks. Disable it to reduce CPU usage.],
882    [config_interpolate_volume="no"],    [config_interpolate_volume="$enableval"],
883    [config_interpolate_volume="yes"]    [config_interpolate_volume="yes"]
884  )  )
885  if test "$config_interpolate_volume" = "yes"; then  if test "$config_interpolate_volume" = "yes"; then
886    AC_DEFINE_UNQUOTED(CONFIG_INTERPOLATE_VOLUME, 1, [Define to 1 if you want to enable interpolation of volume modulation.])    AC_DEFINE_UNQUOTED(CONFIG_INTERPOLATE_VOLUME, 1, [Define to 1 if you want to enable interpolation of volume modulation.])
887  fi  fi
888    
889    AC_ARG_ENABLE(plugin-dir,
890      [  --enable-plugin-dir
891                              Directory where the sampler shall look for potential plugins,
892                              that is 3rd party shared libraries that should be loaded by
893                              the sampler on startup. By default the sampler will search
894                              for plugins in the subdirectory "plugins" below its own
895                              library directory.
896                              (i.e. /usr/local/lib/linuxsampler/plugins)],
897      [config_plugin_dir="${enableval}"],
898      [config_plugin_dir="${libdir}/linuxsampler/plugins"]
899    )
900    AC_SUBST(config_plugin_dir)
901    
902    AC_ARG_ENABLE(default-instruments-db-location,
903      [  --enable-default-instruments-db-location
904                              Only when instruments DB feature is enabled: file name
905                              which shall be taken as default location of the
906                              instruments DB file. This location can still be
907                              overridden at runtime with a command line switch.
908                              (default: /var/lib/linuxsampler/instruments.db)],
909      [config_default_instruments_db_file="${enableval}"],
910      [config_default_instruments_db_file="/var/lib/linuxsampler/instruments.db"]
911    )
912    AC_DEFINE_UNQUOTED(
913        CONFIG_DEFAULT_INSTRUMENTS_DB_LOCATION,
914        "$config_default_instruments_db_file",
915        [Only when instruments DB feature is enabled: default location of the DB file.]
916    )
917    AC_SUBST(config_default_instruments_db_file)
918    
919    
920  ###########################################################################  ###########################################################################
921  # Automatic Benchmarks (to detect the best algorithms for the system)  # Automatic Benchmarks (to detect the best algorithms for the system)
# Line 856  if test "$config_signed_triang_algo" = " Line 950  if test "$config_signed_triang_algo" = "
950          echo "Call './configure --help' for further information or read configure.in."          echo "Call './configure --help' for further information or read configure.in."
951          exit -1;          exit -1;
952      fi      fi
953    else
954        case "$config_signed_triang_algo" in
955            intmath)
956                triang_signed=2 ;;
957            diharmonic)
958                triang_signed=3 ;;
959            intmathabs)
960                triang_signed=5 ;;
961        esac
962  fi  fi
963  AC_DEFINE_UNQUOTED(CONFIG_SIGNED_TRIANG_ALGO, ${triang_signed}, [Define signed triangular wave algorithm to be used.])  AC_DEFINE_UNQUOTED(CONFIG_SIGNED_TRIANG_ALGO, ${triang_signed}, [Define signed triangular wave algorithm to be used.])
964    
# Line 887  if test "$config_unsigned_triang_algo" = Line 990  if test "$config_unsigned_triang_algo" =
990          echo "Call './configure --help' for further information or read configure.in."          echo "Call './configure --help' for further information or read configure.in."
991          exit -1;          exit -1;
992      fi      fi
993    else
994        case "$config_unsigned_triang_algo" in
995            intmath)
996                triang_unsigned=2 ;;
997            diharmonic)
998                triang_unsigned=3 ;;
999            intmathabs)
1000                triang_unsigned=5 ;;
1001        esac
1002  fi  fi
1003  AC_DEFINE_UNQUOTED(CONFIG_UNSIGNED_TRIANG_ALGO, ${triang_unsigned}, [Define unsigned triangular wave algorithm to be used.])  AC_DEFINE_UNQUOTED(CONFIG_UNSIGNED_TRIANG_ALGO, ${triang_unsigned}, [Define unsigned triangular wave algorithm to be used.])
1004    
# Line 918  AC_OUTPUT( \ Line 1030  AC_OUTPUT( \
1030      man/Makefile \      man/Makefile \
1031      man/linuxsampler.1 \      man/linuxsampler.1 \
1032      src/Makefile \      src/Makefile \
1033        src/db/Makefile \
1034      src/network/Makefile \      src/network/Makefile \
1035      src/engines/Makefile \      src/engines/Makefile \
1036      src/engines/gig/Makefile \      src/engines/gig/Makefile \
1037      src/engines/common/Makefile \      src/engines/common/Makefile \
1038      src/common/Makefile src/lib/Makefile \      src/common/Makefile \
     src/lib/fileloader/Makefile \  
     src/lib/fileloader/libgig/Makefile \  
1039      src/testcases/Makefile \      src/testcases/Makefile \
1040      src/drivers/Makefile \      src/drivers/Makefile \
1041      src/drivers/audio/Makefile \      src/drivers/audio/Makefile \
1042      src/drivers/midi/Makefile \      src/drivers/midi/Makefile \
1043        src/plugins/Makefile \
1044      linuxsampler.spec \      linuxsampler.spec \
1045      debian/Makefile \      debian/Makefile \
1046      Artwork/Makefile \      Artwork/Makefile \
1047      scripts/Makefile \      scripts/Makefile \
1048      osx/Makefile \      osx/Makefile \
1049      osx/LinuxSampler.xcode/Makefile \      osx/linuxsampler.xcodeproj/Makefile \
1050      Documentation/Makefile \      Documentation/Makefile \
1051      Documentation/Engines/Makefile \      Documentation/Engines/Makefile \
1052      Documentation/Engines/gig/Makefile \      Documentation/Engines/gig/Makefile \
# Line 942  AC_OUTPUT( \ Line 1054  AC_OUTPUT( \
1054      Doxyfile \      Doxyfile \
1055  )  )
1056    
1057    # resolve all nested variables in '${config_plugin_dir}'
1058    # (merely for providing a human readable summary below)
1059    while test $config_plugin_dir != `eval echo ${config_plugin_dir}` ; do
1060            config_plugin_dir=`eval echo ${config_plugin_dir}`
1061    done
1062    
1063    
1064  ###########################################################################  ###########################################################################
1065  # Output All Configuration Options  # Output All Configuration Options
# Line 984  echo "# Assert GS SysEx Checksum: ${conf Line 1102  echo "# Assert GS SysEx Checksum: ${conf
1102  echo "# Process Muted Channels: ${config_process_muted_channels}"  echo "# Process Muted Channels: ${config_process_muted_channels}"
1103  echo "# Process All-Notes-Off MIDI message: ${config_process_all_notes_off}"  echo "# Process All-Notes-Off MIDI message: ${config_process_all_notes_off}"
1104  echo "# Interpolate Volume: ${config_interpolate_volume}"  echo "# Interpolate Volume: ${config_interpolate_volume}"
1105    echo "# Instruments database support: ${config_instruments_db}"
1106    if test "$config_instruments_db" = "yes"; then
1107    echo "# Instruments DB default location: ${config_default_instruments_db_file}"
1108    fi
1109    echo "# Plugin Path: ${config_plugin_dir}"
1110  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
1111  echo "# Read './configure --help' or file 'configure.in' for details.     #"  echo "# Read './configure --help' or file 'configure.in' for details.     #"
1112  echo "#####################################################################"  echo "#####################################################################"

Legend:
Removed from v.1049  
changed lines
  Added in v.1454

  ViewVC Help
Powered by ViewVC