/[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 2123 by schoenebeck, Wed Sep 15 10:04:07 2010 UTC revision 2343 by persson, Sun Apr 29 16:14:45 2012 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.cvs5  LINUXSAMPLER_RELEASE_BUILD=0.svn18
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 499  AC_CHECK_HEADERS(dssi.h, Line 512  AC_CHECK_HEADERS(dssi.h,
512  AM_CONDITIONAL(HAVE_DSSI, test $config_have_dssi = "yes")  AM_CONDITIONAL(HAVE_DSSI, test $config_have_dssi = "yes")
513    
514  # LV2  # LV2
515  PKG_CHECK_MODULES(LV2, lv2core, config_have_lv2="yes", config_have_lv2="no")  PKG_CHECK_MODULES(LV2, lv2,
516  if test $config_have_lv2 = "no"; then    [config_have_lv2="yes"
517      AC_CHECK_HEADER(lv2.h, config_have_lv2="yes", config_have_lv2="no")    AC_DEFINE(HAVE_LV2_PACKAGE, 1,
518  fi              [Define to 1 if you have the lv2 package installed.])],
519      [config_have_lv2="no"
520      PKG_CHECK_MODULES(LV2, lv2core, config_have_lv2="yes",
521        [AC_CHECK_HEADER(lv2.h, config_have_lv2="yes")])])
522    
523    AC_SUBST(LV2_CFLAGS)
524    AC_SUBST(LV2_LIBS)
525  AM_CONDITIONAL(HAVE_LV2, test $config_have_lv2 = "yes")  AM_CONDITIONAL(HAVE_LV2, test $config_have_lv2 = "yes")
526    
527  # VST  # VST
# Line 528  AC_CHECK_HEADERS(AudioUnit/AudioUnit.h, Line 547  AC_CHECK_HEADERS(AudioUnit/AudioUnit.h,
547  AM_CONDITIONAL(HAVE_AU, test $config_have_au = "yes")  AM_CONDITIONAL(HAVE_AU, test $config_have_au = "yes")
548  AM_CONDITIONAL(HAVE_AUFLAGS, test "$AUFLAGS" != "")  AM_CONDITIONAL(HAVE_AUFLAGS, test "$AUFLAGS" != "")
549    
550    if test $config_have_au = "yes" ; then
551        if test "x$DEVELOPER_EXTRAS_DIR" = "x" ; then
552            if test -d /Developer/Extras ; then
553                DEVELOPER_EXTRAS_DIR=/Developer/Extras
554            else      
555                DEVELOPER_EXTRAS_DIR=/Developer/Examples
556            fi
557        fi
558        AC_SUBST(DEVELOPER_EXTRAS_DIR)
559    fi
560    
561    if test "x$MAC_PLUGIN_INSTALL_DIR" = "x" ; then
562        MAC_PLUGIN_INSTALL_DIR=/Library/Audio/Plug-Ins
563    fi
564    AC_SUBST(MAC_PLUGIN_INSTALL_DIR)
565    
566  # 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 ?
567  if test "$have_midi_input_driver" = "false"; then  if test "$have_midi_input_driver" = "false"; then
# Line 600  AC_SUBST(SNDFILE_LIBS) Line 634  AC_SUBST(SNDFILE_LIBS)
634  # Check for Vorbis support in libsndfile  # Check for Vorbis support in libsndfile
635  linuxsampler_save_CFLAGS=$CFLAGS  linuxsampler_save_CFLAGS=$CFLAGS
636  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"
637  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [] ,[[#include <sndfile.h>]])  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [], [[#include <sndfile.h>]])
638    
639    # Check for loop functionality in libsndfile
640    AC_CHECK_MEMBERS([SF_INSTRUMENT.loops],,
641                     [AC_MSG_WARN([Your version of libsndfile does not support
642        reading of loop information. LinuxSampler will not be able to
643        extract loop information from sample files.])],
644                     [#include <sndfile.h>])
645  CFLAGS=$linuxsampler_save_CFLAGS  CFLAGS=$linuxsampler_save_CFLAGS
646    
647  # Instruments DB feature (requires SQLite 3.3)  # Instruments DB feature (requires SQLite 3.3)
# Line 698  if test "$config_rt_exceptions" = "yes"; Line 739  if test "$config_rt_exceptions" = "yes";
739    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.])
740  fi  fi
741    
742    config_pthread_testcancel="$mac"
743  AC_ARG_ENABLE(pthread-testcancel,  AC_ARG_ENABLE(pthread-testcancel,
744    [  --enable-pthread-testcancel    [  --enable-pthread-testcancel
745                            Enable pthread_testcancel() calls and avoid asynchronous                            Enable pthread_testcancel() calls and avoid
746                            cancel of pthreads (default=no).],                            asynchronous cancel of pthreads (default=yes
747                              for Mac targets, no otherwise).],
748    [config_pthread_testcancel="$enableval"],    [config_pthread_testcancel="$enableval"],
749    [config_pthread_testcancel="no"]    [])
 )  
750  if test "$config_pthread_testcancel" = "yes"; then  if test "$config_pthread_testcancel" = "yes"; then
751    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.])
752  fi  fi
# Line 1385  echo "#--------------------------------- Line 1427  echo "#---------------------------------
1427  echo "# Sampler Engines:"  echo "# Sampler Engines:"
1428  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"
1429  echo "#-------------------------------------------------------------------"  echo "#-------------------------------------------------------------------"
1430    echo "# Effect plugin systems for internal effects:"
1431    echo "# LADSPA: yes"
1432    echo "#-------------------------------------------------------------------"
1433  echo "# Building sampler as plugin for following host standards:"  echo "# Building sampler as plugin for following host standards:"
1434  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}"
1435  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"

Legend:
Removed from v.2123  
changed lines
  Added in v.2343

  ViewVC Help
Powered by ViewVC