/[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 2365 by persson, Sat Sep 8 17:21:38 2012 UTC revision 2517 by schoenebeck, Fri Feb 7 19:53:09 2014 UTC
# Line 3  Line 3 
3    
4  m4_define(linuxsampler_release_major, 1)  m4_define(linuxsampler_release_major, 1)
5  m4_define(linuxsampler_release_minor, 0)  m4_define(linuxsampler_release_minor, 0)
6  m4_define(linuxsampler_release_build, 0.svn18)  m4_define(linuxsampler_release_build, 0.svn30)
7    
8    
9  AC_INIT([linuxsampler],[linuxsampler_release_major.linuxsampler_release_minor.linuxsampler_release_build])  AC_INIT([linuxsampler],[linuxsampler_release_major.linuxsampler_release_minor.linuxsampler_release_build])
10  AC_CONFIG_SRCDIR([configure.in])  AC_CONFIG_SRCDIR([configure.ac])
11    
12  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
13  # 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 35  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT Line 35  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT
35  # the LSCP specification version this LinuSampler release complies with:  # the LSCP specification version this LinuSampler release complies with:
36    
37  LSCP_RELEASE_MAJOR=1  LSCP_RELEASE_MAJOR=1
38  LSCP_RELEASE_MINOR=5  LSCP_RELEASE_MINOR=6
39    
40  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.])
41  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 126  have_unix98="no" Line 126  have_unix98="no"
126  )  )
127  AC_LANG_POP([C])  AC_LANG_POP([C])
128  AC_MSG_RESULT([$have_unix98])  AC_MSG_RESULT([$have_unix98])
129  if test "$have_unix98" = "no" -a "$have_windows" = "0"; then  if test "$have_unix98" = "no" -a "$have_windows" = "0" -a "$mac" = "no" ; then
130      if test "x$HAVE_UNIX98" = "x"; then      if test "x$HAVE_UNIX98" = "x"; then
131          echo "LinuxSampler only runs on UNIX98 compatible systems, which is mandatory for"          echo "LinuxSampler only runs on UNIX98 compatible systems, which is mandatory for"
132          echo "pthread_mutexattr_settype() call in Mutex.cpp. You may want to run"          echo "pthread_mutexattr_settype() call in Mutex.cpp. You may want to run"
# Line 290  if test "$config_jack_driver" = "yes"; t Line 290  if test "$config_jack_driver" = "yes"; t
290          AC_SUBST(JACK_CFLAGS)          AC_SUBST(JACK_CFLAGS)
291          linuxsampler_save_LIBS=$LIBS          linuxsampler_save_LIBS=$LIBS
292          LIBS="$JACK_LIBS $LIBS"          LIBS="$JACK_LIBS $LIBS"
293          AC_CHECK_FUNCS(jack_client_name_size jack_client_open)          AC_CHECK_FUNCS(jack_client_name_size jack_client_open \
294                           jack_on_info_shutdown)
295          LIBS=$linuxsampler_save_LIBS          LIBS=$linuxsampler_save_LIBS
296          have_audio_output_driver="true";          have_audio_output_driver="true";
297      fi      fi
# Line 627  fi Line 628  fi
628  AC_SUBST(SNDFILE_CFLAGS)  AC_SUBST(SNDFILE_CFLAGS)
629  AC_SUBST(SNDFILE_LIBS)  AC_SUBST(SNDFILE_LIBS)
630    
631  # Check for Vorbis support in libsndfile  # Check for Vorbis and FLAC support in libsndfile
632  linuxsampler_save_CFLAGS=$CFLAGS  linuxsampler_save_CFLAGS=$CFLAGS
633  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"  CFLAGS="$SNDFILE_CFLAGS $CFLAGS"
634  AC_CHECK_DECLS([SF_FORMAT_VORBIS], [], [], [[#include <sndfile.h>]])  AC_CHECK_DECLS([SF_FORMAT_VORBIS, SF_FORMAT_FLAC], [], [], [[#include <sndfile.h>]])
635    
636  # Check for loop functionality in libsndfile  # Check for loop functionality in libsndfile
637  AC_CHECK_MEMBERS([SF_INSTRUMENT.loops],,  AC_CHECK_MEMBERS([SF_INSTRUMENT.loops],,
# Line 1321  AC_CONFIG_FILES([\ Line 1322  AC_CONFIG_FILES([\
1322      Makefile \      Makefile \
1323      man/Makefile \      man/Makefile \
1324      man/linuxsampler.1 \      man/linuxsampler.1 \
1325        man/lscp.1 \
1326      src/Makefile \      src/Makefile \
1327      src/db/Makefile \      src/db/Makefile \
1328      src/network/Makefile \      src/network/Makefile \
# Line 1342  AC_CONFIG_FILES([\ Line 1344  AC_CONFIG_FILES([\
1344      src/hostplugins/lv2/manifest.ttl \      src/hostplugins/lv2/manifest.ttl \
1345      src/hostplugins/vst/Makefile \      src/hostplugins/vst/Makefile \
1346      src/hostplugins/au/Makefile \      src/hostplugins/au/Makefile \
1347        src/shell/Makefile \
1348      linuxsampler.spec \      linuxsampler.spec \
1349      debian/Makefile \      debian/Makefile \
1350      Artwork/Makefile \      Artwork/Makefile \

Legend:
Removed from v.2365  
changed lines
  Added in v.2517

  ViewVC Help
Powered by ViewVC