From: Adam Dickmeiss Date: Tue, 11 Jan 2005 20:56:34 +0000 (+0000) Subject: Bump version to 0.9. Abort if YAZ is not found X-Git-Tag: YAZPP.0.9~7 X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=commitdiff_plain;h=2f8ce6d398a9ec190b41a851bcd4b4bd2e3c2c8c Bump version to 0.9. Abort if YAZ is not found --- diff --git a/configure.in b/configure.in index 8834f7a..57e0826 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ AC_INIT(configure.in) -AM_INIT_AUTOMAKE("yaz++",0.8) +AM_INIT_AUTOMAKE("yaz++",0.9) AC_PROG_CC AC_PROG_CPP @@ -9,6 +9,9 @@ AM_DISABLE_SHARED AM_PROG_LIBTOOL YAZ_INIT(threads,2.0.29) +if test -z "$YAZLIB"; then + AC_MSG_ERROR([YAZ development libraries missing]) +fi YAZ_DOC AC_ARG_ENABLE(zoom,[ --disable-zoom disable ZOOM (for old C++ compilers)],[enable_zoom=$enableval],[enable_zoom=yes])