/[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 1211 by iliev, Wed May 16 14:22:26 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 827  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 966  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 1009  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.1211  
changed lines
  Added in v.1212

  ViewVC Help
Powered by ViewVC