/[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 2185 by persson, Sun Jun 19 09:09:38 2011 UTC revision 2205 by iliev, Mon Jul 11 17:52:01 2011 UTC
# Line 5  AC_INIT(configure.in) Line 5  AC_INIT(configure.in)
5    
6  LINUXSAMPLER_RELEASE_MAJOR=1  LINUXSAMPLER_RELEASE_MAJOR=1
7  LINUXSAMPLER_RELEASE_MINOR=0  LINUXSAMPLER_RELEASE_MINOR=0
8  LINUXSAMPLER_RELEASE_BUILD=0.cvs10  LINUXSAMPLER_RELEASE_BUILD=0.cvs11
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 78  if ! echo "X $CXXFLAGS " | grep -q -- " Line 78  if ! echo "X $CXXFLAGS " | grep -q -- "
78  fi  fi
79  AC_SUBST([CXX_CPU_SWITCH])  AC_SUBST([CXX_CPU_SWITCH])
80    
81    mac=no
82    linux=no
83    case "$host" in
84        *-*-darwin*)
85            mac=yes
86            ;;
87        *-*-linux*)
88            linux=yes
89            ;;
90    esac
91    AM_CONDITIONAL(LINUX, test "$linux" = yes)
92    AM_CONDITIONAL(MAC, test "$mac" = yes)
93    
94  # check if we're on MS Windows  # check if we're on MS Windows
95  AC_CHECK_HEADERS(  AC_CHECK_HEADERS(
96      mmsystem.h,      mmsystem.h,
# Line 539  if test $config_have_au = "yes" ; then Line 552  if test $config_have_au = "yes" ; then
552      AC_SUBST(DEVELOPER_EXTRAS_DIR)      AC_SUBST(DEVELOPER_EXTRAS_DIR)
553  fi  fi
554    
555    if test "x$MAC_PLUGIN_INSTALL_DIR" = "x" ; then
556        MAC_PLUGIN_INSTALL_DIR=/Library/Audio/Plug-Ins
557    fi
558    AC_SUBST(MAC_PLUGIN_INSTALL_DIR)
559    
560  # 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 ?
561  if test "$have_midi_input_driver" = "false"; then  if test "$have_midi_input_driver" = "false"; then
562      echo "No supported MIDI input system found!"      echo "No supported MIDI input system found!"
# Line 715  if test "$config_rt_exceptions" = "yes"; Line 733  if test "$config_rt_exceptions" = "yes";
733    AC_DEFINE_UNQUOTED(CONFIG_RT_EXCEPTIONS, 1, [Define to 1 to allow exceptions in the realtime context.])    AC_DEFINE_UNQUOTED(CONFIG_RT_EXCEPTIONS, 1, [Define to 1 to allow exceptions in the realtime context.])
734  fi  fi
735    
736  case "$host" in  config_pthread_testcancel="$mac"
     *-*-darwin*)  
         config_pthread_testcancel=yes  
         ;;  
     *)  
         config_pthread_testcancel=no  
         ;;  
 esac  
   
737  AC_ARG_ENABLE(pthread-testcancel,  AC_ARG_ENABLE(pthread-testcancel,
738    [  --enable-pthread-testcancel    [  --enable-pthread-testcancel
739                            Enable pthread_testcancel() calls and avoid                            Enable pthread_testcancel() calls and avoid

Legend:
Removed from v.2185  
changed lines
  Added in v.2205

  ViewVC Help
Powered by ViewVC