Release 1.6.4
[yazpp-moved-to-github.git] / configure.ac
index d5335c6..2f870d1 100644 (file)
@@ -1,35 +1,32 @@
-dnl YAZ++ Toolkit, Index Data 1994-2006
-dnl See the file LICENSE for details.
-dnl $Id: configure.ac,v 1.4 2006-04-30 12:22:03 adam Exp $
-AC_PREREQ(2.59)
-AC_INIT([yazpp],[1.0.0],[adam@indexdata.dk])
+dnl This file is part of yazpp
+dnl Copyright (C) Index Data
+AC_PREREQ(2.60)
+AC_INIT([yazpp],
+m4_esyscmd([. ./IDMETA; echo $VERSION|tr -d '\n']),
+[adam@indexdata.dk])
+AC_CONFIG_HEADERS([include/config.h])
 AC_CONFIG_SRCDIR(configure.ac)
 AC_CONFIG_AUX_DIR([config])
-AM_INIT_AUTOMAKE([1.8])
+AM_INIT_AUTOMAKE([1.9])
 
 AC_PROG_CC
 AC_PROG_CPP
 AC_PROG_CXX
 AC_HEADER_STDC
-AM_DISABLE_SHARED
 AM_PROG_LIBTOOL
 
-YAZ_INIT(threads,2.1.18)
+YAZ_INIT([threads],[5.1.0])
 if test -z "$YAZLIB"; then
        AC_MSG_ERROR([YAZ development libraries missing])
 fi
 YAZ_DOC
-AC_CHECK_HEADERS(unistd.h sys/stat.h sys/time.h sys/types.h)
+AC_CHECK_HEADERS([unistd.h sys/stat.h sys/time.h sys/types.h fcntl.h])
 
 AC_ARG_ENABLE(zoom,[  --disable-zoom          disable ZOOM (for old C++ compilers)],[enable_zoom=$enableval],[enable_zoom=yes])
 AM_CONDITIONAL(ZOOM, test $enable_zoom = "yes")
 
-AC_SUBST(YAZPP_SRC_ROOT)
-AC_SUBST(YAZPP_BUILD_ROOT)
-YAZPP_SRC_ROOT=`cd ${srcdir}; pwd`
-YAZPP_BUILD_ROOT=`pwd`
-
 AC_OUTPUT([
+       Doxyfile
        Makefile
        src/Makefile
        include/Makefile
@@ -38,7 +35,38 @@ AC_OUTPUT([
        yazpp-config
        zoom/Makefile
        doc/Makefile
-       doc/yazpp.xml
+       doc/local0.ent
        doc/common/Makefile
-       doc/common/html.dsl doc/common/html.xsl doc/common/print.dsl doc/common/tkl.xsl
-],[sed s%yaz_echo_source=yes%yaz_echo_source=no%g < yazpp-config >src/yazpp-config && chmod +x yazpp-config src/yazpp-config])
+       doc/common/print.dsl
+],[
+       sed s%echo_source=yes%echo_source=no%g < yazpp-config >src/yazpp-config && chmod +x yazpp-config src/yazpp-config
+       diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
+               || cp doc/local0.ent doc/local.ent
+  ]
+)
+
+
+echo \
+"------------------------------------------------------------------------
+
+  YAZPP Package:              ${PACKAGE}
+  YAZPP Version:              ${VERSION}
+  Source code location:       ${srcdir}
+  CPP Preprocessor:           ${CPP}
+  CPP Preprocessor flags:     ${CPPFLAGS}
+  CXX Compiler:               ${CXX}
+  CXX Compiler flags:         ${CXXFLAGS}
+  Linker flags:               ${LDFLAGS}
+  Linked libs:                ${LIBS}
+  Host System Type:           ${host}
+  Install path:               ${prefix}
+  Automake:                   ${AUTOMAKE}
+  Archiver:                   ${AR}
+  Ranlib:                     ${RANLIB}
+  YAZ Version:                ${YAZVERSION}
+  YAZ Include:                ${YAZINC}
+  YAZ La Lib:                 ${YAZLALIB}
+  YAZ Lib:                    ${YAZLIB}
+  Bugreport:                  ${PACKAGE_BUGREPORT}
+
+------------------------------------------------------------------------"