--- libgig/trunk/configure.in 2005/06/13 00:08:10 646 +++ libgig/trunk/configure.in 2007/10/14 14:20:50 1417 @@ -3,9 +3,9 @@ #------------------------------------------------------------------------------------ # Library's "official" release version: -LIBGIG_RELEASE_MAJOR=2 -LIBGIG_RELEASE_MINOR=0 -LIBGIG_RELEASE_BUILD=1 +LIBGIG_RELEASE_MAJOR=3 +LIBGIG_RELEASE_MINOR=2 +LIBGIG_RELEASE_BUILD=0 #------------------------------------------------------------------------------------ # The following is the libtool / shared library version. This doesn't have to @@ -24,20 +24,23 @@ # 6. If any interfaces have been removed since the last public release, then set age # to 0. -LIBGIG_LT_CURRENT=3 +LIBGIG_LT_CURRENT=8 LIBGIG_LT_REVISION=0 -LIBGIG_LT_AGE=1 +LIBGIG_LT_AGE=2 SHARED_VERSION_INFO="$LIBGIG_LT_CURRENT:$LIBGIG_LT_REVISION:$LIBGIG_LT_AGE" -AC_C_BIGENDIAN - AC_LANG_CPLUSPLUS AC_PROG_CXX AM_PROG_LIBTOOL +AC_C_BIGENDIAN + AC_SUBST(SHLIB_VERSION_ARG) AC_SUBST(SHARED_VERSION_INFO) +AC_SUBST(LIBGIG_RELEASE_MAJOR) +AC_SUBST(LIBGIG_RELEASE_MINOR) +AC_SUBST(LIBGIG_RELEASE_BUILD) have_audio_file_lib="false" @@ -66,7 +69,46 @@ exit -1; fi +AC_CHECK_HEADERS(uuid/uuid.h) +AC_SEARCH_LIBS(uuid_generate, uuid) +AC_CHECK_FUNCS(uuid_generate CFUUIDCreate) + +case "$host" in + *mingw*|*cygwin*) + win32=yes + ;; + *) + win32=no + ;; +esac +AM_CONDITIONAL(WIN32, test "$win32" = "yes") + +if test "$ac_cv_func_uuid_generate" = no -a "$ac_cv_func_CFUUIDCreate" = no -a "$win32" = no; then + AC_MSG_WARN([No UUID generate function found. +*** libgig will not be able to create DLSIDs in DLS and gig files. +*** Install libuuid from e2fsprogs to solve this. Package might be called +*** uuid-dev, libext2fs2-devel or e2fsprogs-devel.]) +fi + AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(libgig, "$LIBGIG_RELEASE_MAJOR.$LIBGIG_RELEASE_MINOR.$LIBGIG_RELEASE_BUILD") -AC_OUTPUT(Makefile doc/Makefile man/Makefile src/Makefile libgig.spec gig.pc Doxyfile man/dlsdump.1 man/gigdump.1 man/gigextract.1 man/rifftree.1 debian/Makefile) +AC_OUTPUT( \ + Doxyfile \ + gig.pc \ + libgig.spec \ + Makefile \ + src/Makefile \ + src/testcases/Makefile \ + doc/Makefile \ + man/Makefile \ + man/dlsdump.1 \ + man/gigdump.1 \ + man/gigextract.1 \ + man/rifftree.1 \ + debian/Makefile \ + osx/Makefile \ + osx/libgig.xcodeproj/Makefile \ + win32/Makefile \ + win32/libgig.dev \ +)