From 546e58b83a8a9b6048a076010f72d4b3fd344206 Mon Sep 17 00:00:00 2001 From: m0gg Date: Tue, 7 Mar 2006 11:29:16 +0000 Subject: Fixed broken release number (X.Y.Z -> X.Y) --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 95f26ad..850942a 100644 --- a/configure.ac +++ b/configure.ac @@ -13,13 +13,13 @@ AC_CONFIG_SRCDIR([nanohttp/nanohttp-server.c]) AC_CONFIG_SRCDIR([libcsoap/soap-server.c]) AM_INIT_AUTOMAKE -csoap_release=AC_PACKAGE_VERSION +csoap_release=`echo $VERSION | awk -F. '{print $1"."$2}'` AC_SUBST(csoap_release) AC_SUBST(csoap_version) csoap_version_dotted=`echo $csoap_version | sed 's/:/./g'` AC_SUBST(csoap_version_dotted) -nanohttp_release=AC_PACKAGE_VERSION +nanohttp_release=$csoap_release AC_SUBST(nanohttp_release) AC_SUBST(nanohttp_version) @@ -27,6 +27,7 @@ AM_CONFIG_HEADER(config.h) AC_LANG_C AC_PROG_CC +AC_PROG_INSTALL AC_PROG_LIBTOOL AC_HEADER_STDC -- cgit v1.1-32-gdbae