/[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 2140 by schoenebeck, Tue Oct 5 10:35:13 2010 UTC revision 2185 by persson, Sun Jun 19 09:09:38 2011 UTC
# 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.])

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

  ViewVC Help
Powered by ViewVC