/[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 1895 by persson, Sun May 3 12:15:40 2009 UTC revision 2053 by schoenebeck, Wed Jan 27 20:29:36 2010 UTC
# Line 3  AC_INIT(configure.in) Line 3  AC_INIT(configure.in)
3  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
4  # LinuxSampler's / liblinuxsampler's "official" release version:  # LinuxSampler's / liblinuxsampler's "official" release version:
5    
6  LINUXSAMPLER_RELEASE_MAJOR=0  LINUXSAMPLER_RELEASE_MAJOR=1
7  LINUXSAMPLER_RELEASE_MINOR=5  LINUXSAMPLER_RELEASE_MINOR=0
8  LINUXSAMPLER_RELEASE_BUILD=1.12cvs  LINUXSAMPLER_RELEASE_BUILD=0.cvs3
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 24  LINUXSAMPLER_RELEASE_BUILD=1.12cvs Line 24  LINUXSAMPLER_RELEASE_BUILD=1.12cvs
24  #  6. If any interfaces have been removed since the last public release, then set age  #  6. If any interfaces have been removed since the last public release, then set age
25  #     to 0.  #     to 0.
26    
27  LIBLINUXSAMPLER_LT_CURRENT=2  LIBLINUXSAMPLER_LT_CURRENT=3
28  LIBLINUXSAMPLER_LT_REVISION=0  LIBLINUXSAMPLER_LT_REVISION=0
29  LIBLINUXSAMPLER_LT_AGE=1  LIBLINUXSAMPLER_LT_AGE=0
30  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE"  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE"
31    
32  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
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 53  PKG_PROG_PKG_CONFIG Line 53  PKG_PROG_PKG_CONFIG
53  ###########################################################################  ###########################################################################
54  # General Checks  # General Checks
55    
56    AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
57    
58  AC_MSG_CHECKING([whether x86 architecture])  AC_MSG_CHECKING([whether x86 architecture])
59  def_arch_x86=0  def_arch_x86=0
60  case $host_cpu in  case $host_cpu in
# Line 549  fi Line 551  fi
551  # Checks for various DLL libraries  # Checks for various DLL libraries
552    
553  # Check presence of libgig  # Check presence of libgig
554  libgig_version="3.2.1"  libgig_version="3.3.0"
555  PKG_CHECK_MODULES(GIG, gig >= $libgig_version, HAVE_GIG=true, HAVE_GIG=false)  PKG_CHECK_MODULES(GIG, gig >= $libgig_version, HAVE_GIG=true, HAVE_GIG=false)
556  if test "$HAVE_GIG" = "false"; then  if test "$HAVE_GIG" = "false"; then
557      echo "Required libgig version not found!"      echo "Required libgig version not found!"
# Line 561  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 libgig)
567    AC_ARG_ENABLE(sf2-engine,
568      [  --disable-sf2-engine
569                              Disable compilation of the SF2 engine.
570                              You need to have libgig installed.],
571      [config_sf2_engine="$enableval"],
572      [config_sf2_engine="yes"]
573    )
574    HAVE_SF2=0;
575    if test "$config_sf2_engine" = "yes"; then
576        HAVE_SF2=1
577    else
578        echo "SF2 engine disabled by configure script parameter"
579    fi
580    AM_CONDITIONAL(HAVE_SF2, test $HAVE_SF2 = 1)
581    AC_DEFINE_UNQUOTED(HAVE_SF2,$HAVE_SF2,[Define to 1 if you want SF2 engine and have libsf2 installed.])
582    config_have_sf2="no"
583    if test $HAVE_SF2 = "1"; then
584        config_have_sf2="yes"
585    fi
586    
587    # Check presence of libsndfile
588    libsndfile_version="1.0"
589    PKG_CHECK_MODULES(SNDFILE, sndfile >= $libsndfile_version, HAVE_SNDFILE=true, HAVE_SNDFILE=false)
590    if test "$HAVE_SNDFILE" = "false"; then
591        echo "Required libsndfile version not found!"
592        echo "You need to have libsndfile version ${libsndfile_version} installed!"
593        exit -1;
594    else
595        echo "yes, found libsndfile $libsndfile_version"
596    fi
597    AC_SUBST(SNDFILE_CFLAGS)
598    AC_SUBST(SNDFILE_LIBS)
599    
600  # Instruments DB feature (requires SQLite 3.3)  # Instruments DB feature (requires SQLite 3.3)
601  AC_ARG_ENABLE(instruments-db,  AC_ARG_ENABLE(instruments-db,
602    [  --disable-instruments-db    [  --disable-instruments-db
# Line 1235  AM_INIT_AUTOMAKE(linuxsampler, "$LINUXSA Line 1271  AM_INIT_AUTOMAKE(linuxsampler, "$LINUXSA
1271    
1272  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
1273    
 # some gcc 4.0 versions need -msse for SSE register allocations  
 if test "$config_asm" = "yes"; then  
   if test "$def_arch_x86" = 1; then  
     CXXFLAGS="$CXXFLAGS -msse"  
   fi  
 fi  
   
1274  # autoconf 2.59/libtool 1.5.12 bug? work-around. Without a check like  # autoconf 2.59/libtool 1.5.12 bug? work-around. Without a check like
1275  # this, the dlfcn.h check in am_prog_libtool may fail.  # this, the dlfcn.h check in am_prog_libtool may fail.
1276  AC_CHECK_HEADER(stdlib.h)  AC_CHECK_HEADER(stdlib.h)
# Line 1255  AC_OUTPUT( \ Line 1284  AC_OUTPUT( \
1284      src/network/Makefile \      src/network/Makefile \
1285      src/engines/Makefile \      src/engines/Makefile \
1286      src/engines/gig/Makefile \      src/engines/gig/Makefile \
1287        src/engines/sf2/Makefile \
1288        src/engines/sfz/Makefile \
1289      src/engines/common/Makefile \      src/engines/common/Makefile \
1290      src/effects/Makefile \      src/effects/Makefile \
1291      src/common/Makefile \      src/common/Makefile \
# Line 1345  echo "#--------------------------------- Line 1376  echo "#---------------------------------
1376  echo "# Audio Output Drivers:"  echo "# Audio Output Drivers:"
1377  echo "# ALSA: ${config_have_alsa}, JACK: ${config_have_jack}, ARTS: ${config_have_arts}, CoreAudio: ${config_have_coreaudio}, ASIO: ${config_have_asio}"  echo "# ALSA: ${config_have_alsa}, JACK: ${config_have_jack}, ARTS: ${config_have_arts}, CoreAudio: ${config_have_coreaudio}, ASIO: ${config_have_asio}"
1378  echo "#-------------------------------------------------------------------"  echo "#-------------------------------------------------------------------"
1379    echo "# Sampler Engines:"
1380    echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"
1381    echo "#-------------------------------------------------------------------"
1382  echo "# Building sampler as plugin for following host standards:"  echo "# Building sampler as plugin for following host standards:"
1383  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}"
1384  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"

Legend:
Removed from v.1895  
changed lines
  Added in v.2053

  ViewVC Help
Powered by ViewVC