/[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 1651 by persson, Sun Jan 27 15:07:11 2008 UTC revision 1741 by schoenebeck, Wed May 28 03:44:46 2008 UTC
# Line 5  AC_INIT(configure.in) Line 5  AC_INIT(configure.in)
5    
6  LINUXSAMPLER_RELEASE_MAJOR=0  LINUXSAMPLER_RELEASE_MAJOR=0
7  LINUXSAMPLER_RELEASE_MINOR=5  LINUXSAMPLER_RELEASE_MINOR=5
8  LINUXSAMPLER_RELEASE_BUILD=1  LINUXSAMPLER_RELEASE_BUILD=1.5cvs
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=3  LSCP_RELEASE_MINOR=4
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.])
40    
41    AC_PROG_CXX
42  AM_PROG_LIBTOOL  AM_PROG_LIBTOOL
43    
44  AC_SUBST(SHLIB_VERSION_ARG)  AC_SUBST(SHLIB_VERSION_ARG)
# Line 276  AC_DEFINE_UNQUOTED(HAVE_JACK,$have_jack, Line 277  AC_DEFINE_UNQUOTED(HAVE_JACK,$have_jack,
277  # JACK MIDI  # JACK MIDI
278  have_jack_midi=0  have_jack_midi=0
279  if test $have_jack = "1"; then  if test $have_jack = "1"; then
280     linuxsampler_save_CFLAGS=$CFLAGS      linuxsampler_save_CFLAGS=$CFLAGS
281     linuxsampler_save_LIBS=$LIBS      linuxsampler_save_LIBS=$LIBS
282     CFLAGS="$JACK_CFLAGS $CFLAGS"      CFLAGS="$JACK_CFLAGS $CFLAGS"
283     LIBS="$JACK_LIBS $LIBS"      LIBS="$JACK_LIBS $LIBS"
284     AC_CHECK_HEADER(jack/midiport.h, have_jack_midi=1, have_jack_midi=0)      AC_CHECK_HEADER(jack/midiport.h, have_jack_midi=1, have_jack_midi=0)
285     if test $have_jack_midi = "1"; then      if test $have_jack_midi = "1"; then
286       AC_CHECK_FUNCS(jack_midi_get_event_count)          AC_CHECK_FUNCS(jack_midi_get_event_count)
287       AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <jack/midiport.h>]], [[          AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <jack/midiport.h>]], [[
288           jack_midi_clear_buffer(0, 0);              jack_midi_clear_buffer(0, 0);
289       ]])], [AC_DEFINE(JACK_MIDI_FUNCS_NEED_NFRAMES, 1,          ]])], [AC_DEFINE(JACK_MIDI_FUNCS_NEED_NFRAMES, 1,
290               [Define to 1 if you have the old jack midi functions that need an nframes argument.])])                    [Define to 1 if you have the old jack midi functions that need an nframes argument.])])
291     fi          have_midi_input_driver="true"
292     CFLAGS=$linuxsampler_save_CFLAGS      fi
293     LIBS=$linuxsampler_save_LIBS      CFLAGS=$linuxsampler_save_CFLAGS
294        LIBS=$linuxsampler_save_LIBS
295  fi  fi
296  AM_CONDITIONAL(HAVE_JACK_MIDI, test $have_jack_midi = "1")  AM_CONDITIONAL(HAVE_JACK_MIDI, test $have_jack_midi = "1")
297  AC_DEFINE_UNQUOTED(HAVE_JACK_MIDI, $have_jack_midi,  AC_DEFINE_UNQUOTED(HAVE_JACK_MIDI, $have_jack_midi,
# Line 430  AC_DEFINE_UNQUOTED(HAVE_MME_MIDI,$have_m Line 432  AC_DEFINE_UNQUOTED(HAVE_MME_MIDI,$have_m
432  if test "$have_midi_input_driver" = "false"; then  if test "$have_midi_input_driver" = "false"; then
433      echo "No supported MIDI input system found!"      echo "No supported MIDI input system found!"
434      echo "Sorry, LinuxSampler only supports the following MIDI drivers at the moment:"      echo "Sorry, LinuxSampler only supports the following MIDI drivers at the moment:"
435      echo "ALSA, MIDIShare, CoreMIDI."      echo "ALSA, JACK, MIDIShare, CoreMIDI, MME."
436      echo "If you think you have one of those available on your system, make sure you"      echo "If you think you have one of those available on your system, make sure you"
437      echo "also have the respective development (header) files installed."      echo "also have the respective development (header) files installed."
438      exit -1;      exit -1;
439  fi  fi
440  if test "$have_audio_output_driver" = "false"; then  if test "$have_audio_output_driver" = "false"; then
441      echo "No supported audio output system found!"      echo "No supported audio output system found!"
442      echo "Sorry, LinuxSampler only supports ALSA, JACK and ARTS as audio output"      echo "Sorry, LinuxSampler only supports ALSA, JACK, ARTS and ASIO as audio output"
443      echo "driver at the moment!"      echo "driver at the moment!"
444      exit -1;      exit -1;
445  fi  fi
# Line 1115  AM_CONFIG_HEADER(config.h) Line 1117  AM_CONFIG_HEADER(config.h)
1117  AM_INIT_AUTOMAKE(linuxsampler, "$LINUXSAMPLER_RELEASE_MAJOR.$LINUXSAMPLER_RELEASE_MINOR.$LINUXSAMPLER_RELEASE_BUILD")  AM_INIT_AUTOMAKE(linuxsampler, "$LINUXSAMPLER_RELEASE_MAJOR.$LINUXSAMPLER_RELEASE_MINOR.$LINUXSAMPLER_RELEASE_BUILD")
1118    
1119  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
 AC_PROG_CXX  
1120    
1121  # some gcc 4.0 versions need -msse for SSE register allocations  # some gcc 4.0 versions need -msse for SSE register allocations
1122  if test "$config_asm" = "yes"; then  if test "$config_asm" = "yes"; then
# Line 1138  AC_OUTPUT( \ Line 1139  AC_OUTPUT( \
1139      src/engines/Makefile \      src/engines/Makefile \
1140      src/engines/gig/Makefile \      src/engines/gig/Makefile \
1141      src/engines/common/Makefile \      src/engines/common/Makefile \
1142        src/effects/Makefile \
1143      src/common/Makefile \      src/common/Makefile \
1144      src/testcases/Makefile \      src/testcases/Makefile \
1145      src/drivers/Makefile \      src/drivers/Makefile \

Legend:
Removed from v.1651  
changed lines
  Added in v.1741

  ViewVC Help
Powered by ViewVC