/[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 1857 by schoenebeck, Sat Mar 7 19:23:10 2009 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.11cvs
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 415  fi Line 415  fi
415  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")
416  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])
417    
418    # CoreAudio (OS X)
419    AC_ARG_ENABLE(coreaudio-driver,
420      [  --disable-coreaudio-driver
421                              Disable support for the Apple CoreAudio system.],
422      [config_coreaudio_driver="$enableval"],
423      [config_coreaudio_driver="yes"]
424    )
425    have_coreaudio=0
426    if test "$config_coreaudio_driver" = "yes"; then
427        AC_CHECK_HEADER(CoreAudio/CoreAudio.h,
428            have_coreaudio=1,
429            have_coreaudio=0
430        )
431        if test "$have_coreaudio" = "1"; then
432            have_audio_output_driver="true"
433        fi
434    else
435        echo "CoreAudio support disabled by configure script parameter"
436    fi
437    AM_CONDITIONAL(HAVE_COREAUDIO, test $have_coreaudio = "1")
438    AC_DEFINE_UNQUOTED(HAVE_COREAUDIO,$have_coreaudio,[Define to 1 if you have CoreAudio installed.])
439    
440  # MME MIDI (Win32)  # MME MIDI (Win32)
441  AC_ARG_ENABLE(mmemidi-driver,  AC_ARG_ENABLE(mmemidi-driver,
442    [  --disable-mmemidi-driver    [  --disable-mmemidi-driver
# Line 463  AC_ARG_ENABLE(vstsdk-dir, Line 485  AC_ARG_ENABLE(vstsdk-dir,
485  AC_SUBST(VSTSDK_DIR)  AC_SUBST(VSTSDK_DIR)
486  AM_CONDITIONAL(HAVE_VST, test "x$VSTSDK_DIR" != "x")  AM_CONDITIONAL(HAVE_VST, test "x$VSTSDK_DIR" != "x")
487    
488    # AU
489    AC_CHECK_HEADERS(AudioUnit/AudioUnit.h,
490            have_au=1,
491            have_au=0)
492    AM_CONDITIONAL(HAVE_AU, test $have_au = "1")
493    AM_CONDITIONAL(HAVE_AUFLAGS, test "$AUFLAGS" != "")
494    
495    
496  # have we found at least one MIDI input and one audio output driver ?  # have we found at least one MIDI input and one audio output driver ?
497  if test "$have_midi_input_driver" = "false"; then  if test "$have_midi_input_driver" = "false"; then
# Line 709  AC_DEFINE_UNQUOTED(CONFIG_STREAM_BUFFER_ Line 738  AC_DEFINE_UNQUOTED(CONFIG_STREAM_BUFFER_
738    
739  AC_ARG_ENABLE(max-streams,  AC_ARG_ENABLE(max-streams,
740    [  --enable-max-streams    [  --enable-max-streams
741                            Maximum amount of disk streams (default=90). This                            Initial maximum amount of disk streams
742                            value should always be higher than the maximum                            (default=90). This value can be changed at
743                            amount of voices.],                            runtime. It should always be higher than the
744                              maximum amount of voices.],
745    [config_max_streams="${enableval}"],    [config_max_streams="${enableval}"],
746    [config_max_streams="90"]    [config_max_streams="90"]
747  )  )
748  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.])
749    
750  AC_ARG_ENABLE(max-voices,  AC_ARG_ENABLE(max-voices,
751    [  --enable-max-voices    [  --enable-max-voices
752                            Maximum amount of voices (default=64). This value                            Initial maximum amount of voices (default=64).
753                            should always be lower than the maximum amount of                            This value can be changed at runtime. It should
754                            disk streams.],                            always be lower than the maximum amount of disk
755                              streams.],
756    [config_max_voices="${enableval}"],    [config_max_voices="${enableval}"],
757    [config_max_voices="64"]    [config_max_voices="64"]
758  )  )
759  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.])
760    
761  AC_ARG_ENABLE(subfragment-size,  AC_ARG_ENABLE(subfragment-size,
762    [  --enable-subfragment-size    [  --enable-subfragment-size
# Line 1202  AC_OUTPUT( \ Line 1233  AC_OUTPUT( \
1233      src/hostplugins/dssi/Makefile \      src/hostplugins/dssi/Makefile \
1234      src/hostplugins/lv2/Makefile \      src/hostplugins/lv2/Makefile \
1235      src/hostplugins/vst/Makefile \      src/hostplugins/vst/Makefile \
1236        src/hostplugins/au/Makefile \
1237      linuxsampler.spec \      linuxsampler.spec \
1238      debian/Makefile \      debian/Makefile \
1239      Artwork/Makefile \      Artwork/Makefile \
# Line 1242  echo "# Streams to be refilled per Disk Line 1274  echo "# Streams to be refilled per Disk
1274  echo "# Minimum Stream Refill Size: ${config_stream_min_refill}"  echo "# Minimum Stream Refill Size: ${config_stream_min_refill}"
1275  echo "# Maximum Stream Refill Size: ${config_stream_max_refill}"  echo "# Maximum Stream Refill Size: ${config_stream_max_refill}"
1276  echo "# Stream Size: ${config_stream_size}"  echo "# Stream Size: ${config_stream_size}"
1277  echo "# Maximum Disk Streams: ${config_max_streams}"  echo "# Default Maximum Disk Streams: ${config_max_streams}"
1278  echo "# Maximum Voices: ${config_max_voices}"  echo "# Default Maximum Voices: ${config_max_voices}"
1279  echo "# Default Subfragment Size: ${config_subfragment_size}"  echo "# Default Subfragment Size: ${config_subfragment_size}"
1280  echo "# Default Global Volume Attenuation: ${config_global_attenuation_default}"  echo "# Default Global Volume Attenuation: ${config_global_attenuation_default}"
1281  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.1857

  ViewVC Help
Powered by ViewVC