/[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 1777 by persson, Mon Sep 15 16:58:10 2008 UTC revision 1800 by schoenebeck, Sun Dec 7 01:26:46 2008 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=5  LINUXSAMPLER_RELEASE_MINOR=5
8  LINUXSAMPLER_RELEASE_BUILD=1.7cvs  LINUXSAMPLER_RELEASE_BUILD=1.8cvs
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 62  PKG_PROG_PKG_CONFIG Line 62  PKG_PROG_PKG_CONFIG
62  AC_MSG_CHECKING([whether x86 architecture])  AC_MSG_CHECKING([whether x86 architecture])
63  def_arch_x86=0  def_arch_x86=0
64  case $target_cpu in  case $target_cpu in
65    "i386" | "i486" | "i586" | "i686" | "i786")    "i386" | "i486" | "i586" | "i686" | "i786" | "x86_64")
66      echo "yes"      echo "yes"
67      def_arch_x86=1;;      def_arch_x86=1;;
68    *)    *)
# Line 74  AC_DEFINE_UNQUOTED(ARCH_X86,$def_arch_x8 Line 74  AC_DEFINE_UNQUOTED(ARCH_X86,$def_arch_x8
74  # (only if the user did not provide one)  # (only if the user did not provide one)
75  CXX_CPU_SWITCH=  CXX_CPU_SWITCH=
76  if ! echo "X $CXXFLAGS " | grep -q -- " \(-march=\|-mcpu=\|-mtune=\|-arch=\)" ; then  if ! echo "X $CXXFLAGS " | grep -q -- " \(-march=\|-mcpu=\|-mtune=\|-arch=\)" ; then
77    if test "$def_arch_x86" = 1; then    if test "$def_arch_x86" = 1 -a "$target_cpu" != "x86_64"; then
78      CXX_CPU_SWITCH="-march=$target_cpu"      CXX_CPU_SWITCH="-march=$target_cpu"
79    elif test "$target_cpu" = "ppc"; then    elif test "$target_cpu" = "ppc"; then
80      CXX_CPU_SWITCH="-arch=$target_cpu"      CXX_CPU_SWITCH="-arch=$target_cpu"
# Line 709  AC_DEFINE_UNQUOTED(CONFIG_STREAM_BUFFER_ Line 709  AC_DEFINE_UNQUOTED(CONFIG_STREAM_BUFFER_
709    
710  AC_ARG_ENABLE(max-streams,  AC_ARG_ENABLE(max-streams,
711    [  --enable-max-streams    [  --enable-max-streams
712                            Maximum amount of disk streams (default=90). This                            Initial maximum amount of disk streams
713                            value should always be higher than the maximum                            (default=90). This value can be changed at
714                            amount of voices.],                            runtime. It should always be higher than the
715                              maximum amount of voices.],
716    [config_max_streams="${enableval}"],    [config_max_streams="${enableval}"],
717    [config_max_streams="90"]    [config_max_streams="90"]
718  )  )
719  AC_DEFINE_UNQUOTED(CONFIG_MAX_STREAMS, $config_max_streams, [Define max. streams.])  AC_DEFINE_UNQUOTED(CONFIG_DEFAULT_MAX_STREAMS, $config_max_streams, [Define initial max. streams.])
720    
721  AC_ARG_ENABLE(max-voices,  AC_ARG_ENABLE(max-voices,
722    [  --enable-max-voices    [  --enable-max-voices
723                            Maximum amount of voices (default=64). This value                            Initial maximum amount of voices (default=64).
724                            should always be lower than the maximum amount of                            This value can be changed at runtime. It should
725                            disk streams.],                            always be lower than the maximum amount of disk
726                              streams.],
727    [config_max_voices="${enableval}"],    [config_max_voices="${enableval}"],
728    [config_max_voices="64"]    [config_max_voices="64"]
729  )  )
730  AC_DEFINE_UNQUOTED(CONFIG_MAX_VOICES, $config_max_voices, [Define max. voices.])  AC_DEFINE_UNQUOTED(CONFIG_DEFAULT_MAX_VOICES, $config_max_voices, [Define initial max. voices.])
731    
732  AC_ARG_ENABLE(subfragment-size,  AC_ARG_ENABLE(subfragment-size,
733    [  --enable-subfragment-size    [  --enable-subfragment-size
# Line 1242  echo "# Streams to be refilled per Disk Line 1244  echo "# Streams to be refilled per Disk
1244  echo "# Minimum Stream Refill Size: ${config_stream_min_refill}"  echo "# Minimum Stream Refill Size: ${config_stream_min_refill}"
1245  echo "# Maximum Stream Refill Size: ${config_stream_max_refill}"  echo "# Maximum Stream Refill Size: ${config_stream_max_refill}"
1246  echo "# Stream Size: ${config_stream_size}"  echo "# Stream Size: ${config_stream_size}"
1247  echo "# Maximum Disk Streams: ${config_max_streams}"  echo "# Default Maximum Disk Streams: ${config_max_streams}"
1248  echo "# Maximum Voices: ${config_max_voices}"  echo "# Default Maximum Voices: ${config_max_voices}"
1249  echo "# Default Subfragment Size: ${config_subfragment_size}"  echo "# Default Subfragment Size: ${config_subfragment_size}"
1250  echo "# Default Global Volume Attenuation: ${config_global_attenuation_default}"  echo "# Default Global Volume Attenuation: ${config_global_attenuation_default}"
1251  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"

Legend:
Removed from v.1777  
changed lines
  Added in v.1800

  ViewVC Help
Powered by ViewVC