/[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 2123 by schoenebeck, Wed Sep 15 10:04:07 2010 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.cvs5  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 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 601  AC_SUBST(SNDFILE_LIBS) Line 611  AC_SUBST(SNDFILE_LIBS)
611  linuxsampler_save_CFLAGS=$CFLAGS  linuxsampler_save_CFLAGS=$CFLAGS
612  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"
613  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [] ,[[#include <sndfile.h>]])  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  CFLAGS=$linuxsampler_save_CFLAGS
622    
623  # Instruments DB feature (requires SQLite 3.3)  # Instruments DB feature (requires SQLite 3.3)
# Line 1385  echo "#--------------------------------- Line 1402  echo "#---------------------------------
1402  echo "# Sampler Engines:"  echo "# Sampler Engines:"
1403  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"  echo "# GIG: yes, SF2: ${config_have_sf2}, SFZ: yes"
1404  echo "#-------------------------------------------------------------------"  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.2123  
changed lines
  Added in v.2183

  ViewVC Help
Powered by ViewVC