From e2a894e39368873395f9d6e60010569bcd740b59 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 7 Sep 2011 13:52:23 +0200 Subject: [PATCH] configure: add check for YAZ version --- configure.ac | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 -- 1.7.10.4