--- linuxsampler/trunk/configure.in 2008/02/03 00:13:27 1659 +++ linuxsampler/trunk/configure.in 2008/05/28 04:00:48 1742 @@ -5,7 +5,7 @@ LINUXSAMPLER_RELEASE_MAJOR=0 LINUXSAMPLER_RELEASE_MINOR=5 -LINUXSAMPLER_RELEASE_BUILD=1.1cvs +LINUXSAMPLER_RELEASE_BUILD=1.5cvs #------------------------------------------------------------------------------------ # The following is the libtool / shared library version. This doesn't have to @@ -33,11 +33,12 @@ # the LSCP specification version this LinuSampler release complies with: LSCP_RELEASE_MAJOR=1 -LSCP_RELEASE_MINOR=3 +LSCP_RELEASE_MINOR=4 AC_DEFINE_UNQUOTED(LSCP_RELEASE_MAJOR, ${LSCP_RELEASE_MAJOR}, [LSCP spec major version this release complies with.]) AC_DEFINE_UNQUOTED(LSCP_RELEASE_MINOR, ${LSCP_RELEASE_MINOR}, [LSCP spec minor version this release complies with.]) +AC_PROG_CXX AM_PROG_LIBTOOL AC_SUBST(SHLIB_VERSION_ARG) @@ -161,6 +162,11 @@ echo "NPTL glibc bug check disabled" fi +# FIXME: this is actually a dependency of libgig, not of LS directly, why +# isn't it hidden by libgig? +AC_CHECK_HEADERS(uuid/uuid.h) +AC_SEARCH_LIBS(uuid_generate, uuid) + ########################################################################### @@ -558,7 +564,7 @@ AC_ARG_ENABLE(pthread-testcancel, [ --enable-pthread-testcancel - Enable pthread_testcancel() calls and avoid asynchronous + Enable pthread_testcancel() calls and avoid asynchronous cancel of pthreads (default=no).], [config_pthread_testcancel="$enableval"], [config_pthread_testcancel="no"] @@ -1116,7 +1122,6 @@ AM_INIT_AUTOMAKE(linuxsampler, "$LINUXSAMPLER_RELEASE_MAJOR.$LINUXSAMPLER_RELEASE_MINOR.$LINUXSAMPLER_RELEASE_BUILD") AC_LANG_CPLUSPLUS -AC_PROG_CXX # some gcc 4.0 versions need -msse for SSE register allocations if test "$config_asm" = "yes"; then @@ -1139,6 +1144,7 @@ src/engines/Makefile \ src/engines/gig/Makefile \ src/engines/common/Makefile \ + src/effects/Makefile \ src/common/Makefile \ src/testcases/Makefile \ src/drivers/Makefile \