From 2f8ce6d398a9ec190b41a851bcd4b4bd2e3c2c8c Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 11 Jan 2005 20:56:34 +0000 Subject: [PATCH] Bump version to 0.9. Abort if YAZ is not found --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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]) -- 1.7.10.4