From: Adam Dickmeiss Date: Wed, 7 Sep 2011 11:52:23 +0000 (+0200) Subject: configure: add check for YAZ version X-Git-Tag: v1.3.10~3 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=e2a894e39368873395f9d6e60010569bcd740b59;p=metaproxy-moved-to-github.git configure: add check for YAZ version --- diff --git a/configure.ac b/configure.ac index a1445a8..55755ef 100644 --- a/configure.ac +++ b/configure.ac @@ -40,8 +40,20 @@ YAZPP_INIT([threads],[1.2.7]) 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 4.2.14 or later]) +AC_COMPILE_IFELSE( + [AC_LANG_PROGRAM([[#include ]], + [[ +#if YAZ_VERSIONL < 0x4020e +#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 regex],[1.33]) if test -z "${BOOST_THREAD_LIB}"; then