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

Diff of /linuxsampler/trunk/configure.in

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

revision 1165 by schoenebeck, Thu May 3 18:09:02 2007 UTC revision 1212 by schoenebeck, Tue May 29 23:59:36 2007 UTC
# Line 5  AC_INIT(configure.in) Line 5  AC_INIT(configure.in)
5    
6  LINUXSAMPLER_RELEASE_MAJOR=0  LINUXSAMPLER_RELEASE_MAJOR=0
7  LINUXSAMPLER_RELEASE_MINOR=4  LINUXSAMPLER_RELEASE_MINOR=4
8  LINUXSAMPLER_RELEASE_BUILD=0.4cvs  LINUXSAMPLER_RELEASE_BUILD=0.5cvs
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 309  AC_SUBST(GIG_CFLAGS) Line 309  AC_SUBST(GIG_CFLAGS)
309  AC_SUBST(GIG_LIBS)  AC_SUBST(GIG_LIBS)
310    
311  # Check presence of sqlite3  # Check presence of sqlite3
 AC_CHECK_PROG(HAVE_SQLITE3_CMD, sqlite3, true, false)  
312  sqlite_version="3.3"  sqlite_version="3.3"
313  PKG_CHECK_MODULES(SQLITE3, sqlite3 >= $sqlite_version, HAVE_SQLITE3=true, HAVE_SQLITE3=false)  PKG_CHECK_MODULES(SQLITE3, sqlite3 >= $sqlite_version, HAVE_SQLITE3=true, HAVE_SQLITE3=false)
314  AC_SUBST(SQLITE3_LIBS)  AC_SUBST(SQLITE3_LIBS)
315  AC_SUBST(SQLITE3_CFLAGS)  AC_SUBST(SQLITE3_CFLAGS)
316  if test $HAVE_SQLITE3_CMD = false -o $HAVE_SQLITE3 = false; then  if test $HAVE_SQLITE3 = false; then
317      HAVE_SQLITE3=0;      HAVE_SQLITE3=0;
318      instruments_db_support="no"      instruments_db_support="no"
319      echo "*** Required sqlite version not found!"      echo "*** Required sqlite version not found!"
# Line 828  if test "$config_interpolate_volume" = " Line 827  if test "$config_interpolate_volume" = "
827    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.])
828  fi  fi
829    
830    AC_ARG_ENABLE(plugin-dir,
831      [  --enable-plugin-dir
832                              Directory where the sampler shall look for potential plugins,
833                              that is 3rd party shared libraries that should be loaded by
834                              the sampler on startup. By default the sampler will search
835                              for plugins in the subdirectory "plugins" below its own
836                              library directory.
837                              (i.e. /usr/local/lib/linuxsampler/plugins)],
838      [config_plugin_dir="${enableval}"],
839      [config_plugin_dir="${libdir}/linuxsampler/plugins"]
840    )
841    AC_SUBST(config_plugin_dir)
842    
843    
844  ###########################################################################  ###########################################################################
845  # Automatic Benchmarks (to detect the best algorithms for the system)  # Automatic Benchmarks (to detect the best algorithms for the system)
# Line 959  AC_OUTPUT( \ Line 971  AC_OUTPUT( \
971      Artwork/Makefile \      Artwork/Makefile \
972      scripts/Makefile \      scripts/Makefile \
973      osx/Makefile \      osx/Makefile \
974      osx/LinuxSampler.xcode/Makefile \      osx/linuxsampler.xcodeproj/Makefile \
975      Documentation/Makefile \      Documentation/Makefile \
976      Documentation/Engines/Makefile \      Documentation/Engines/Makefile \
977      Documentation/Engines/gig/Makefile \      Documentation/Engines/gig/Makefile \
# Line 967  AC_OUTPUT( \ Line 979  AC_OUTPUT( \
979      Doxyfile \      Doxyfile \
980  )  )
981    
982    # resolve all nested variables in '${config_plugin_dir}'
983    # (merely for providing a human readable summary below)
984    while test $config_plugin_dir != `eval echo ${config_plugin_dir}` ; do
985            config_plugin_dir=`eval echo ${config_plugin_dir}`
986    done
987    
988    
989  ###########################################################################  ###########################################################################
990  # Output All Configuration Options  # Output All Configuration Options
# Line 1010  echo "# Process Muted Channels: ${config Line 1028  echo "# Process Muted Channels: ${config
1028  echo "# Process All-Notes-Off MIDI message: ${config_process_all_notes_off}"  echo "# Process All-Notes-Off MIDI message: ${config_process_all_notes_off}"
1029  echo "# Interpolate Volume: ${config_interpolate_volume}"  echo "# Interpolate Volume: ${config_interpolate_volume}"
1030  echo "# Instruments database support: ${instruments_db_support}"  echo "# Instruments database support: ${instruments_db_support}"
1031    echo "# Plugin Path: ${config_plugin_dir}"
1032  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
1033  echo "# Read './configure --help' or file 'configure.in' for details.     #"  echo "# Read './configure --help' or file 'configure.in' for details.     #"
1034  echo "#####################################################################"  echo "#####################################################################"

Legend:
Removed from v.1165  
changed lines
  Added in v.1212

  ViewVC Help
Powered by ViewVC