Windows: use Boost 1.59, msvc 14.0
[metaproxy-moved-to-github.git] / configure.ac
index 3cc5e75..6e15185 100644 (file)
@@ -3,7 +3,9 @@
 
 # Autoconf and automake setup
 AC_PREREQ([2.60])
-AC_INIT([metaproxy],[1.0.17],[metaproxy-help@indexdata.dk])
+AC_INIT([metaproxy],
+m4_esyscmd([. ./IDMETA; echo $VERSION|tr -d '\n']),
+[metaproxy-help@indexdata.dk])
 
 AC_CONFIG_HEADERS([src/config.hpp])
 
@@ -33,47 +35,75 @@ fi
 AC_CHECK_LIB([dl],[dlopen])
 AC_CHECK_LIB([m],[main])
 
-AC_CHECK_FUNCS([localtime_r])
+AC_CHECK_FUNCS([localtime_r getrlimit])
+
+USEMARCON_INIT
 
 ## YAZPP checks
-YAZPP_INIT([threads],[1.1.2])
+YAZPP_INIT([threads],[1.6.0])
 if test -z "$YAZPPLIB"; then
     AC_MSG_ERROR([YAZ++ development libraries missing])
 fi
-YAZ_DOC
 CPPFLAGS="$YAZPPINC $CPPFLAGS"
+AC_MSG_CHECKING([if YAZ is version 5.13.0 or later])
+AC_COMPILE_IFELSE(
+        [AC_LANG_PROGRAM([[#include <yaz/yaz-version.h>]],
+                         [[
+#if YAZ_VERSIONL < 0x50D00
+#error too old
+#endif
+]])],
+        [AC_MSG_RESULT([yes])],
+        [AC_MSG_RESULT([no])
+        AC_MSG_ERROR([newer version of YAZ required])]
+)
+YAZ_DOC
 
-ID_BOOST([thread test],[1.33])
+ID_BOOST([system thread test regex],[1.33])
 if test -z "${BOOST_THREAD_LIB}"; then
     AC_MSG_ERROR([Boost thread development libraries required])
 fi
 if test -z "${BOOST_TEST_LIB}"; then
     AC_MSG_ERROR([Boost unit test framework libraries required])
 fi
+if test -z "${BOOST_REGEX_LIB}"; then
+    AC_MSG_ERROR([Boost regex development libraries required])
+fi
+
+case $YAZPPINC in
+  *YAZ_HAVE_XSLT=1*) ;;
+  *) AC_MSG_ERROR([YAZ not compiled with Libxslt support]) ;;
+esac
 
 AC_CHECK_HEADERS([sys/select.h sys/socket.h])
 
-AC_CONFIG_FILES([
+if test -d ${srcdir}/.git; then
+    SHA1=`git show --pretty=format:%H|head -1`
+else
+    SHA1=`head -1 ${srcdir}/ChangeLog|awk '{print $2}'`
+fi
+AC_DEFINE_UNQUOTED([VERSION_SHA1], "$SHA1", [SHA-1 from Git])
+
+AC_OUTPUT([
+       metaproxy-config
         Doxyfile
        Makefile
+       include/Makefile include/metaproxy/Makefile
        src/Makefile
-       src/Jamfile
        xml/Makefile
        xml/schema/Makefile
        xml/xslt/Makefile
        doc/Makefile
-       doc/local.ent
-        doc/common/Makefile
+       doc/local0.ent
+       doc/common/Makefile
        doc/common/print.dsl
        etc/Makefile
+],[
+        sed s%echo_source=yes%echo_source=no%g < metaproxy-config > src/metaproxy-config && chmod +x metaproxy-config src/metaproxy-config
+       diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
+               || cp doc/local0.ent doc/local.ent
 ])
 
-AC_OUTPUT
-
-
-# postamble
-
-
 echo \
 "------------------------------------------------------------------------