/[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 554 by schoenebeck, Thu May 19 19:25:14 2005 UTC revision 563 by schoenebeck, Sun May 22 20:43:32 2005 UTC
# Line 360  AC_ARG_ENABLE(voice-steal-algo, Line 360  AC_ARG_ENABLE(voice-steal-algo,
360                            available options:                            available options:
361                              none:                              none:
362                                Disable voice stealing completely.                                Disable voice stealing completely.
363                              oldestvoiceonkey:                              oldestvoiceonkey (default):
364                                Try to kill a voice on the same key first,                                Try to kill a voice on the same key first,
365                                if no success, proceed with the oldest key.                                if no success, proceed with the oldest key.
366                              oldestkey (default):                              oldestkey:
367                                Try to kill a voice from the oldest active                                Try to kill a voice from the oldest active
368                                key.],                                key.],
369    [ if test ! "(" "${enableval}" = "none" \    [ if test ! "(" "${enableval}" = "none" \
# Line 374  AC_ARG_ENABLE(voice-steal-algo, Line 374  AC_ARG_ENABLE(voice-steal-algo,
374        config_voice_steal_algo="${enableval}"        config_voice_steal_algo="${enableval}"
375      fi        fi  
376    ],    ],
377    [config_voice_steal_algo="oldestkey"]    [config_voice_steal_algo="oldestvoiceonkey"]
378  )  )
379  AC_DEFINE_UNQUOTED(CONFIG_VOICE_STEAL_ALGO, voice_steal_algo_${config_voice_steal_algo}, [Define voice stealing algorithm to be used.])  AC_DEFINE_UNQUOTED(CONFIG_VOICE_STEAL_ALGO, voice_steal_algo_${config_voice_steal_algo}, [Define voice stealing algorithm to be used.])
380    
# Line 487  if test ! "$config_override_filter_type" Line 487  if test ! "$config_override_filter_type"
487    AC_DEFINE_UNQUOTED(CONFIG_OVERRIDE_FILTER_TYPE, $config_override_filter_type, [Define to a filter type to always force that filter type.])    AC_DEFINE_UNQUOTED(CONFIG_OVERRIDE_FILTER_TYPE, $config_override_filter_type, [Define to a filter type to always force that filter type.])
488  fi  fi
489    
490    AC_ARG_ENABLE(gs-checksum,
491      [  --enable-gs-checksum
492                              Enable Roland General Synth SysEx checksum check
493                              (default=no). If this is enabled, all GS SysEx
494                              messages which do not provide a correct checksum
495                              will be ignored. This is disabled by default as
496                              not all devices honor GS checksums.],
497      [config_assert_gs_sysex_checksum="yes"],
498      [config_assert_gs_sysex_checksum="no"]
499    )
500    if test "config_assert_gs_sysex_checksum" = "yes"; then
501      AC_DEFINE_UNQUOTED(CONFIG_ASSERT_GS_SYSEX_CHECKSUM, 1, [Define to 1 if you want to enable GS SysEx check.])
502    fi
503    
504    
505  ###########################################################################  ###########################################################################
506  # Create Build Files  # Create Build Files
507    
# Line 526  echo "# Maximum Stream Refill Size: ${co Line 541  echo "# Maximum Stream Refill Size: ${co
541  echo "# Stream Size: ${config_stream_size}"  echo "# Stream Size: ${config_stream_size}"
542  echo "# Maximum Disk Streams: ${config_max_streams}"  echo "# Maximum Disk Streams: ${config_max_streams}"
543  echo "# Maximum Voices: ${config_max_voices}"  echo "# Maximum Voices: ${config_max_voices}"
544    echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"
545  echo "# SysEx Buffer Size: ${config_sysex_buffer_size} Byte"  echo "# SysEx Buffer Size: ${config_sysex_buffer_size} Byte"
546  echo "# Filter Update Steps: ${config_filter_update_steps}"  echo "# Filter Update Steps: ${config_filter_update_steps}"
547  echo "# Force Filter Usage: ${config_force_filter}"  echo "# Force Filter Usage: ${config_force_filter}"
# Line 534  echo "# Filter Cutoff Maximum: ${config_ Line 550  echo "# Filter Cutoff Maximum: ${config_
550  echo "# Override Filter Cutoff Controller: ${config_override_cutoff_ctrl}"  echo "# Override Filter Cutoff Controller: ${config_override_cutoff_ctrl}"
551  echo "# Override Filter Resonance Controller: ${config_override_resonance_ctrl}"  echo "# Override Filter Resonance Controller: ${config_override_resonance_ctrl}"
552  echo "# Override Filter Type: ${config_override_filter_type}"  echo "# Override Filter Type: ${config_override_filter_type}"
553    echo "# Assert GS SysEx Checksum: ${config_assert_gs_sysex_checksum}"
554  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
555  echo "# Read './configure --help' or file 'configure.in' for details.     #"  echo "# Read './configure --help' or file 'configure.in' for details.     #"
556  echo "#####################################################################"  echo "#####################################################################"

Legend:
Removed from v.554  
changed lines
  Added in v.563

  ViewVC Help
Powered by ViewVC