/[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 1956 by schoenebeck, Fri Jul 31 07:45:47 2009 UTC revision 2183 by persson, Sat Jun 11 17:53:32 2011 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  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 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 563  fi Line 573  fi
573  AC_SUBST(GIG_CFLAGS)  AC_SUBST(GIG_CFLAGS)
574  AC_SUBST(GIG_LIBS)  AC_SUBST(GIG_LIBS)
575    
576    # SF2 Engine (requires libgig)
577    AC_ARG_ENABLE(sf2-engine,
578      [  --disable-sf2-engine
579                              Disable compilation of the SF2 engine.
580                              You need to have libgig installed.],
581      [config_sf2_engine="$enableval"],
582      [config_sf2_engine="yes"]
583    )
584    HAVE_SF2=0;
585    if test "$config_sf2_engine" = "yes"; then
586        HAVE_SF2=1
587    else
588        echo "SF2 engine disabled by configure script parameter"
589    fi
590    AM_CONDITIONAL(HAVE_SF2, test $HAVE_SF2 = 1)
591    AC_DEFINE_UNQUOTED(HAVE_SF2,$HAVE_SF2,[Define to 1 if you want SF2 engine and have libsf2 installed.])
592    config_have_sf2="no"
593    if test $HAVE_SF2 = "1"; then
594        config_have_sf2="yes"
595    fi
596    
597    # Check presence of libsndfile
598    libsndfile_version="1.0"
599    PKG_CHECK_MODULES(SNDFILE, sndfile >= $libsndfile_version, HAVE_SNDFILE=true, HAVE_SNDFILE=false)
600    if test "$HAVE_SNDFILE" = "false"; then
601        echo "Required libsndfile version not found!"
602        echo "You need to have libsndfile version ${libsndfile_version} installed!"
603        exit -1;
604    else
605        echo "yes, found libsndfile $libsndfile_version"
606    fi
607    AC_SUBST(SNDFILE_CFLAGS)
608    AC_SUBST(SNDFILE_LIBS)
609    
610    # Check for Vorbis support in libsndfile
611    linuxsampler_save_CFLAGS=$CFLAGS
612    CFLAGS="$SNDFILE_CFLAGS $CFLAGS"
613    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
622    
623  # Instruments DB feature (requires SQLite 3.3)  # Instruments DB feature (requires SQLite 3.3)
624  AC_ARG_ENABLE(instruments-db,  AC_ARG_ENABLE(instruments-db,
625    [  --disable-instruments-db    [  --disable-instruments-db
# Line 1250  AC_OUTPUT( \ Line 1307  AC_OUTPUT( \
1307      src/network/Makefile \      src/network/Makefile \
1308      src/engines/Makefile \      src/engines/Makefile \
1309      src/engines/gig/Makefile \      src/engines/gig/Makefile \
1310        src/engines/sf2/Makefile \
1311        src/engines/sfz/Makefile \
1312      src/engines/common/Makefile \      src/engines/common/Makefile \
1313      src/effects/Makefile \      src/effects/Makefile \
1314      src/common/Makefile \      src/common/Makefile \
# Line 1340  echo "#--------------------------------- Line 1399  echo "#---------------------------------
1399  echo "# Audio Output Drivers:"  echo "# Audio Output Drivers:"
1400  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}"
1401  echo "#-------------------------------------------------------------------"  echo "#-------------------------------------------------------------------"
1402    echo "# Sampler Engines:"
1403    echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"
1404    echo "#-------------------------------------------------------------------"
1405    echo "# Effect plugin systems for internal effects:"
1406    echo "# LADSPA: yes"
1407    echo "#-------------------------------------------------------------------"
1408  echo "# Building sampler as plugin for following host standards:"  echo "# Building sampler as plugin for following host standards:"
1409  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}"
1410  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"

Legend:
Removed from v.1956  
changed lines
  Added in v.2183

  ViewVC Help
Powered by ViewVC