/[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 2205 by iliev, Mon Jul 11 17:52:01 2011 UTC revision 2360 by persson, Thu Aug 16 17:01:35 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.cvs11  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 45  AM_PROG_LIBTOOL Line 45  AM_PROG_LIBTOOL
45  AC_SUBST(SHLIB_VERSION_ARG)  AC_SUBST(SHLIB_VERSION_ARG)
46  AC_SUBST(SHARED_VERSION_INFO)  AC_SUBST(SHARED_VERSION_INFO)
47    
48    module=yes eval LIB_EXT=$shrext_cmds
49    AC_SUBST(LIB_EXT)
50    
51  AC_C_BIGENDIAN  AC_C_BIGENDIAN
52  AC_CANONICAL_HOST  AC_CANONICAL_HOST
53    
# Line 512  AC_CHECK_HEADERS(dssi.h, Line 515  AC_CHECK_HEADERS(dssi.h,
515  AM_CONDITIONAL(HAVE_DSSI, test $config_have_dssi = "yes")  AM_CONDITIONAL(HAVE_DSSI, test $config_have_dssi = "yes")
516    
517  # LV2  # LV2
518  PKG_CHECK_MODULES(LV2, lv2core, config_have_lv2="yes", config_have_lv2="no")  PKG_CHECK_MODULES(LV2, lv2 >= 1.0.0, config_have_lv2="yes", config_have_lv2="no")
519  if test $config_have_lv2 = "no"; then  AC_SUBST(LV2_CFLAGS)
520      AC_CHECK_HEADER(lv2.h, config_have_lv2="yes", config_have_lv2="no")  AC_SUBST(LV2_LIBS)
 fi  
521  AM_CONDITIONAL(HAVE_LV2, test $config_have_lv2 = "yes")  AM_CONDITIONAL(HAVE_LV2, test $config_have_lv2 = "yes")
522    
523  # VST  # VST
# Line 628  AC_SUBST(SNDFILE_LIBS) Line 630  AC_SUBST(SNDFILE_LIBS)
630  # Check for Vorbis support in libsndfile  # Check for Vorbis support in libsndfile
631  linuxsampler_save_CFLAGS=$CFLAGS  linuxsampler_save_CFLAGS=$CFLAGS
632  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"
633  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [] ,[[#include <sndfile.h>]])  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [], [[#include <sndfile.h>]])
634    
635  # Check for loop functionality in libsndfile  # Check for loop functionality in libsndfile
636  AC_CHECK_MEMBERS([SF_INSTRUMENT.loops],,  AC_CHECK_MEMBERS([SF_INSTRUMENT.loops],,
# Line 740  AC_ARG_ENABLE(pthread-testcancel, Line 742  AC_ARG_ENABLE(pthread-testcancel,
742                            asynchronous cancel of pthreads (default=yes                            asynchronous cancel of pthreads (default=yes
743                            for Mac targets, no otherwise).],                            for Mac targets, no otherwise).],
744    [config_pthread_testcancel="$enableval"],    [config_pthread_testcancel="$enableval"],
745    []    [])
 )  
746  if test "$config_pthread_testcancel" = "yes"; then  if test "$config_pthread_testcancel" = "yes"; then
747    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.])
748  fi  fi
# Line 1340  AC_OUTPUT( \ Line 1341  AC_OUTPUT( \
1341      src/hostplugins/Makefile \      src/hostplugins/Makefile \
1342      src/hostplugins/dssi/Makefile \      src/hostplugins/dssi/Makefile \
1343      src/hostplugins/lv2/Makefile \      src/hostplugins/lv2/Makefile \
1344        src/hostplugins/lv2/manifest.ttl \
1345      src/hostplugins/vst/Makefile \      src/hostplugins/vst/Makefile \
1346      src/hostplugins/au/Makefile \      src/hostplugins/au/Makefile \
1347      linuxsampler.spec \      linuxsampler.spec \

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

  ViewVC Help
Powered by ViewVC