/[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 738 by schoenebeck, Tue Aug 16 17:14:25 2005 UTC revision 821 by wylder, Thu Dec 22 21:04:35 2005 UTC
# Line 99  if test "$have_unix98" = "no"; then Line 99  if test "$have_unix98" = "no"; then
99      fi      fi
100  fi  fi
101    
102    # check for <feature.h>
103    AC_CHECK_HEADERS(feature.h)
104    
105  # Checks for available audio and MIDI systems / drivers  # Checks for available audio and MIDI systems / drivers
106  # (we throw an error if there's not at least one system for audio output and MIDI input available)  # (we throw an error if there's not at least one system for audio output and MIDI input available)
107  have_midi_input_driver="false"  have_midi_input_driver="false"
# Line 451  AC_ARG_ENABLE(subfragment-size, Line 454  AC_ARG_ENABLE(subfragment-size,
454  )  )
455  AC_DEFINE_UNQUOTED(CONFIG_DEFAULT_SUBFRAGMENT_SIZE, $config_subfragment_size, [Define default subfragment size (in sample points).])  AC_DEFINE_UNQUOTED(CONFIG_DEFAULT_SUBFRAGMENT_SIZE, $config_subfragment_size, [Define default subfragment size (in sample points).])
456    
457    AC_ARG_ENABLE(global-attenuation,
458      [  --enable-global-attenuation
459                              To prevent clipping all samples will be lowered
460                              in amplitude by this given factor.
461                              (default=0.35)],
462      [config_global_attenuation="${enableval}"],
463      [config_global_attenuation="0.35"]
464    )
465    AC_DEFINE_UNQUOTED(CONFIG_GLOBAL_ATTENUATION, $config_global_attenuation, [Define global volume attenuation (as floating point factor).])
466    
467  AC_ARG_ENABLE(voice-steal-algo,  AC_ARG_ENABLE(voice-steal-algo,
468    [  --enable-voice-steal-algo    [  --enable-voice-steal-algo
469                            Voice stealing algorithm to be used. Currently                            Voice stealing algorithm to be used. Currently
# Line 816  echo "# Stream Size: ${config_stream_siz Line 829  echo "# Stream Size: ${config_stream_siz
829  echo "# Maximum Disk Streams: ${config_max_streams}"  echo "# Maximum Disk Streams: ${config_max_streams}"
830  echo "# Maximum Voices: ${config_max_voices}"  echo "# Maximum Voices: ${config_max_voices}"
831  echo "# Default Subfragment Size: ${config_subfragment_size}"  echo "# Default Subfragment Size: ${config_subfragment_size}"
832    echo "# Global Volume Attenuation: ${config_global_attenuation}"
833  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"
834  echo "# Signed Triangular Oscillator Algorithm: ${config_signed_triang_algo}"  echo "# Signed Triangular Oscillator Algorithm: ${config_signed_triang_algo}"
835  echo "# Unsigned Triangular Oscillator Algorithm: ${config_unsigned_triang_algo}"  echo "# Unsigned Triangular Oscillator Algorithm: ${config_unsigned_triang_algo}"

Legend:
Removed from v.738  
changed lines
  Added in v.821

  ViewVC Help
Powered by ViewVC