/[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 2015 by iliev, Sun Oct 25 22:22:52 2009 UTC revision 2140 by schoenebeck, Tue Oct 5 10:35:13 2010 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.cvs2  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 33  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT Line 33  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT
33  # the LSCP specification version this LinuSampler release complies with:  # the LSCP specification version this LinuSampler release complies with:
34    
35  LSCP_RELEASE_MAJOR=1  LSCP_RELEASE_MAJOR=1
36  LSCP_RELEASE_MINOR=4  LSCP_RELEASE_MINOR=5
37    
38  AC_DEFINE_UNQUOTED(LSCP_RELEASE_MAJOR, ${LSCP_RELEASE_MAJOR}, [LSCP spec major version this release complies with.])  AC_DEFINE_UNQUOTED(LSCP_RELEASE_MAJOR, ${LSCP_RELEASE_MAJOR}, [LSCP spec major version this release complies with.])
39  AC_DEFINE_UNQUOTED(LSCP_RELEASE_MINOR, ${LSCP_RELEASE_MINOR}, [LSCP spec minor version this release complies with.])  AC_DEFINE_UNQUOTED(LSCP_RELEASE_MINOR, ${LSCP_RELEASE_MINOR}, [LSCP spec minor version this release complies with.])
# Line 563  fi Line 563  fi
563  AC_SUBST(GIG_CFLAGS)  AC_SUBST(GIG_CFLAGS)
564  AC_SUBST(GIG_LIBS)  AC_SUBST(GIG_LIBS)
565    
566  # SF2 Engine (requires libsf2)  # SF2 Engine (requires libgig)
567  AC_ARG_ENABLE(sf2-engine,  AC_ARG_ENABLE(sf2-engine,
568    [  --disable-sf2-engine    [  --disable-sf2-engine
569                            Disable compilation of the SF2 engine.                            Disable compilation of the SF2 engine.
570                            You need to have libsf2 installed.],                            You need to have libgig installed.],
571    [config_sf2_engine="$enableval"],    [config_sf2_engine="$enableval"],
572    [config_sf2_engine="yes"]    [config_sf2_engine="yes"]
573  )  )
574  HAVE_SF2=0;  HAVE_SF2=0;
575  if test "$config_sf2_engine" = "yes"; then  if test "$config_sf2_engine" = "yes"; then
576      # Check presence of libsf2      HAVE_SF2=1
     libsf2_version="0.0.1"  
     PKG_CHECK_MODULES(SF2, sf2 >= $libsf2_version, HAVE_SF2=true, HAVE_SF2=false)  
     AC_SUBST(SF2_LIBS)  
     AC_SUBST(SF2_CFLAGS)  
     if test $HAVE_SF2 = false; then  
         HAVE_SF2=0  
         config_sf2_engine="no"  
         echo "*** Required libsf2 version not found!"  
         echo "*** You need to have libsf2 version ${libsf2_version} or higher"  
         echo "*** for SF2 engine to be enabled."  
         echo "*** Support for SF2 instruments will be disabled!"  
     else  
         HAVE_SF2=1  
     fi  
577  else  else
578      echo "SF2 engine disabled by configure script parameter"      echo "SF2 engine disabled by configure script parameter"
579  fi  fi
# Line 611  fi Line 597  fi
597  AC_SUBST(SNDFILE_CFLAGS)  AC_SUBST(SNDFILE_CFLAGS)
598  AC_SUBST(SNDFILE_LIBS)  AC_SUBST(SNDFILE_LIBS)
599    
600    # Check for Vorbis support in libsndfile
601    linuxsampler_save_CFLAGS=$CFLAGS
602    CFLAGS="$SNDFILE_CFLAGS $CFLAGS"
603    AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [] ,[[#include <sndfile.h>]])
604    CFLAGS=$linuxsampler_save_CFLAGS
605    
606  # Instruments DB feature (requires SQLite 3.3)  # Instruments DB feature (requires SQLite 3.3)
607  AC_ARG_ENABLE(instruments-db,  AC_ARG_ENABLE(instruments-db,
608    [  --disable-instruments-db    [  --disable-instruments-db
# Line 1393  echo "#--------------------------------- Line 1385  echo "#---------------------------------
1385  echo "# Sampler Engines:"  echo "# Sampler Engines:"
1386  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"
1387  echo "#-------------------------------------------------------------------"  echo "#-------------------------------------------------------------------"
1388    echo "# Effect plugin systems for internal effects:"
1389    echo "# LADSPA: yes"
1390    echo "#-------------------------------------------------------------------"
1391  echo "# Building sampler as plugin for following host standards:"  echo "# Building sampler as plugin for following host standards:"
1392  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}"
1393  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"

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

  ViewVC Help
Powered by ViewVC