/[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 2119 by persson, Fri Aug 27 16:27:16 2010 UTC revision 2185 by persson, Sun Jun 19 09:09:38 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.cvs3  LINUXSAMPLER_RELEASE_BUILD=0.cvs10
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 528  AC_CHECK_HEADERS(AudioUnit/AudioUnit.h, Line 528  AC_CHECK_HEADERS(AudioUnit/AudioUnit.h,
528  AM_CONDITIONAL(HAVE_AU, test $config_have_au = "yes")  AM_CONDITIONAL(HAVE_AU, test $config_have_au = "yes")
529  AM_CONDITIONAL(HAVE_AUFLAGS, test "$AUFLAGS" != "")  AM_CONDITIONAL(HAVE_AUFLAGS, test "$AUFLAGS" != "")
530    
531    if test $config_have_au = "yes" ; then
532        if test "x$DEVELOPER_EXTRAS_DIR" = "x" ; then
533            if test -d /Developer/Extras ; then
534                DEVELOPER_EXTRAS_DIR=/Developer/Extras
535            else      
536                DEVELOPER_EXTRAS_DIR=/Developer/Examples
537            fi
538        fi
539        AC_SUBST(DEVELOPER_EXTRAS_DIR)
540    fi
541    
542  # 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 ?
543  if test "$have_midi_input_driver" = "false"; then  if test "$have_midi_input_driver" = "false"; then
# Line 601  AC_SUBST(SNDFILE_LIBS) Line 611  AC_SUBST(SNDFILE_LIBS)
611  linuxsampler_save_CFLAGS=$CFLAGS  linuxsampler_save_CFLAGS=$CFLAGS
612  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"
613  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [] ,[[#include <sndfile.h>]])  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [] ,[[#include <sndfile.h>]])
614    
615    # Check for loop functionality in libsndfile
616    AC_CHECK_MEMBERS([SF_INSTRUMENT.loops],,
617                     [AC_MSG_WARN([Your version of libsndfile does not support
618        reading of loop information. LinuxSampler will not be able to
619        extract loop information from sample files.])],
620                     [#include <sndfile.h>])
621  CFLAGS=$linuxsampler_save_CFLAGS  CFLAGS=$linuxsampler_save_CFLAGS
622    
623  # Instruments DB feature (requires SQLite 3.3)  # Instruments DB feature (requires SQLite 3.3)
# Line 698  if test "$config_rt_exceptions" = "yes"; Line 715  if test "$config_rt_exceptions" = "yes";
715    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.])
716  fi  fi
717    
718    case "$host" in
719        *-*-darwin*)
720            config_pthread_testcancel=yes
721            ;;
722        *)
723            config_pthread_testcancel=no
724            ;;
725    esac
726    
727  AC_ARG_ENABLE(pthread-testcancel,  AC_ARG_ENABLE(pthread-testcancel,
728    [  --enable-pthread-testcancel    [  --enable-pthread-testcancel
729                            Enable pthread_testcancel() calls and avoid asynchronous                            Enable pthread_testcancel() calls and avoid
730                            cancel of pthreads (default=no).],                            asynchronous cancel of pthreads (default=yes
731                              for Mac targets, no otherwise).],
732    [config_pthread_testcancel="$enableval"],    [config_pthread_testcancel="$enableval"],
733    [config_pthread_testcancel="no"]    []
734  )  )
735  if test "$config_pthread_testcancel" = "yes"; then  if test "$config_pthread_testcancel" = "yes"; then
736    AC_DEFINE_UNQUOTED(CONFIG_PTHREAD_TESTCANCEL, 1, [Define to 1 to enable pthread_testcancel() calls.])    AC_DEFINE_UNQUOTED(CONFIG_PTHREAD_TESTCANCEL, 1, [Define to 1 to enable pthread_testcancel() calls.])
# Line 1385  echo "#--------------------------------- Line 1412  echo "#---------------------------------
1412  echo "# Sampler Engines:"  echo "# Sampler Engines:"
1413  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"
1414  echo "#-------------------------------------------------------------------"  echo "#-------------------------------------------------------------------"
1415    echo "# Effect plugin systems for internal effects:"
1416    echo "# LADSPA: yes"
1417    echo "#-------------------------------------------------------------------"
1418  echo "# Building sampler as plugin for following host standards:"  echo "# Building sampler as plugin for following host standards:"
1419  echo "# DSSI: ${config_have_dssi}, LV2: ${config_have_lv2}, VST: ${config_have_vst}, AU: ${config_have_au}"  echo "# DSSI: ${config_have_dssi}, LV2: ${config_have_lv2}, VST: ${config_have_vst}, AU: ${config_have_au}"
1420  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"

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

  ViewVC Help
Powered by ViewVC