1 dnl This file is part of the YAZ toolkit.
2 dnl Copyright (C) 1995-2013 Index Data
5 m4_esyscmd([. ./IDMETA; echo $VERSION|tr -d '\n']),
6 [yaz-help@indexdata.dk])
7 AC_CONFIG_HEADERS(include/config.h)
8 AC_CONFIG_SRCDIR([configure.ac])
9 AC_CONFIG_AUX_DIR([config])
12 AC_SUBST([READLINE_LIBS])
13 AC_SUBST([YAZ_CONF_CFLAGS])
14 dnl ------ Checking programs
17 AC_CHECK_PROGS([YACC], 'bison -y')
18 test -z "$YACC" && AC_MSG_WARN([GNU bison not found])
19 AC_CHECK_PROGS([TCLSH], [tclsh tclsh8.5 tclsh8.4 tclsh8.3 tclsh8.2], [tclsh])
22 AC_PATH_PROG([pkgconfigpath],[pkg-config],[NONE])
27 AC_CHECK_HEADERS([dirent.h fnmatch.h wchar.h locale.h langinfo.h pwd.h unistd.h sys/select.h sys/socket.h sys/stat.h sys/time.h sys/times.h sys/types.h sys/un.h sys/wait.h sys/prctl.h netdb.h arpa/inet.h netinet/tcp.h netinet/in_systm.h],[],[],[])
28 AC_CHECK_HEADERS([net/if.h netinet/in.h netinet/if_ether.h],[],[],[
30 #include <sys/types.h>
33 #include <sys/socket.h>
39 #include <netinet/in.h>
43 if test "$ac_cv_header_stdc" = "no"; then
44 AC_MSG_WARN([Your system doesn not seem to support ANSI C])
47 AC_CHECK_TYPES([long long])
51 AC_CHECK_FUNC([connect])
52 if test "$ac_cv_func_connect" = "no"; then
53 AC_CHECK_LIB([socket],[main], LIBS="$LIBS -lsocket", checkBoth=1)
55 if test "$checkBoth" = "1"; then
57 LIBS="$LIBS -lsocket -lnsl"
58 AC_CHECK_FUNC([accept], , [LIBS=$oldLibs])
60 AC_CHECK_FUNC([gethostbyname], ,[AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])])
64 AC_SUBST([SSL_CFLAGS])
68 AC_ARG_WITH([openssl], [ --with-openssl[=PREFIX] OpenSSL library in PREFIX], [openssl=$withval])
71 if test "$openssl" != "no"; then
72 if test "$openssl" != "yes" -a "$openssl" != "default"; then
73 if test -x $openssl/bin/pkg-config; then
74 if $openssl/bin/pkg-config --exists openssl; then
75 SSL_CFLAGS=`$openssl/bin/pkg-config --cflags openssl`
76 SSL_LIBS="`$openssl/bin/pkg-config --libs openssl`"
77 sslver=`$openssl/bin/pkg-config --modversion openssl`
80 if test "$sslver" = "no"; then
81 SSL_CFLAGS="-I$openssl/include -I$openssl/include/openssl"
82 SSL_LIBPATH="-L$openssl/lib"
85 if test "$pkgconfigpath" != "NONE"; then
86 if $pkgconfigpath --exists openssl; then
87 SSL_CFLAGS=`$pkgconfigpath --cflags openssl`
88 SSL_LIBS="`$pkgconfigpath --libs openssl`"
89 sslver=`$pkgconfigpath --modversion openssl`
92 if test "$sslver" = "no"; then
93 SSL_CFLAGS="-I/usr/include/openssl"
96 if test "$sslver" = "no"; then
98 xCPPFLAGS="$CPPFLAGS";
99 CPPFLAGS="$CPPFLAGS ${SSL_CFLAGS} ${SSL_LIBPATH}"
100 SSL_LIBS="${SSL_LIBPATH}"
101 AC_CHECK_LIB([crypto],[main])
102 if test "$ac_cv_lib_crypto_main" = "yes"; then
103 SSL_LIBS="${SSL_LIBS} -lcrypto"
105 AC_CHECK_LIB([ssl],[SSL_new])
106 if test "$ac_cv_lib_ssl_SSL_new" = "yes"; then
107 AC_CHECK_HEADER([openssl/ssl.h],[sslver=yes])
108 SSL_LIBS="${SSL_LIBS} -lssl"
110 if test "$sslver" != "yes"; then
114 CPPFLAGS="$xCPPFLAGS"
116 AC_MSG_CHECKING([for SSL])
117 if test "$sslver" != "no"; then
118 AC_DEFINE([HAVE_OPENSSL_SSL_H],[1],[Define to 1 if OpenSSL is present])
119 AC_MSG_RESULT([$sslver])
122 AC_MSG_RESULT([None])
123 if test "$openssl" != "default"; then
124 AC_MSG_ERROR([OpenSSL development libraries missing])
130 AC_ARG_WITH([gnutls], [ --with-gnutls[=PREFIX] GNU TLS library in PREFIX], [gnutls=$withval])
131 if test "$gnutls" != "no" -a "$sslver" = "no"; then
133 if test "$gnutls" != "yes" -a "$gnutls" != "default"; then
134 if test -x $gnutls/bin/pkg-config; then
135 if $gnutls/bin/pkg-config --exists gnutls; then
136 SSL_CFLAGS=`$gnutls/bin/pkg-config --cflags gnutls`
137 SSL_LIBS="`$gnutls/bin/pkg-config --libs gnutls`"
138 gnutlsver=`$gnutls/bin/pkg-config --modversion gnutls`
142 if test "$pkgconfigpath" != "NONE"; then
143 if $pkgconfigpath --exists gnutls; then
144 SSL_CFLAGS=`$pkgconfigpath --cflags gnutls`
145 SSL_LIBS="`$pkgconfigpath --libs gnutls`"
146 gnutlsver=`$pkgconfigpath --modversion gnutls`
150 AC_MSG_CHECKING([for GNU TLS])
151 if test "$gnutlsver" != "no"; then
152 AC_DEFINE([HAVE_GNUTLS_H],[1],[Define to 1 if GNUTLS is present])
153 AC_MSG_RESULT([$gnutlsver])
156 AC_MSG_RESULT([None])
157 if test "$gnutls" != "default"; then
158 AC_MSG_ERROR([GNU TLS development libraries missing])
163 dnl ------ GNU Readline
164 READLINE_SHARED_LIBADD=""
165 AC_CHECK_LIB([ncurses],[tgetent],[READLINE_SHARED_LIBADD="-lncurses"],
166 AC_CHECK_LIB([termcap],[tgetent],[READLINE_SHARED_LIBADD="-ltermcap"])
169 AC_CHECK_LIB([readline],[readline],[READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,$READLINE_SHARED_LIBADD)
170 AC_CHECK_LIB([history],[add_history],[READLINE_LIBS="$READLINE_LIBS -lhistory"])
171 if test "$ac_cv_lib_readline_readline" = "yes"; then
172 AC_CHECK_HEADERS([readline/readline.h readline/history.h])
174 LIBS="$LIBS $READLINE_LIBS"
177 #include <readline/readline.h>
179 rl_attempted_completion_over = 0;
180 ],AC_DEFINE([HAVE_READLINE_COMPLETION_OVER],1,[Define to 1 if rl_attempted_completion_over is defined]))
183 #include <readline/readline.h>
185 rl_completion_matches (0, 0);
186 ],[AC_DEFINE([HAVE_READLINE_RL_COMPLETION_MATCHES],1,[Define to 1 if rl_completion_matches is defined])])
190 AC_ARG_WITH([iconv],[ --with-iconv[=PREFIX] iconv library in PREFIX])
191 if test "$with_iconv" != "no"; then
192 AC_MSG_CHECKING([for iconv])
194 oldCPPFLAGS="${CPPFLAGS}"
195 if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then
196 LIBS="$LIBS -L${with_iconv}/lib"
197 CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include"
202 iconv_t t = iconv_open("", "");
204 AC_DEFINE([HAVE_ICONV_H],1,[Define to 1 if iconv.h is present])
211 iconv_t t = iconv_open("", "");
213 AC_DEFINE([HAVE_ICONV_H],1)
217 CPPFLAGS="$oldCPPFLAGS"
222 dnl ------ various functions
223 AC_CHECK_FUNCS([getaddrinfo vsnprintf gettimeofday poll strerror_r localtime_r usleep fopen64])
233 if test "$ac_cv_func_poll" = "yes" -a "$trypoll" = "yes"; then
234 AC_CHECK_HEADERS([sys/poll.h])
237 dnl We check for socklen_t by making prototypes with the
238 dnl various types. First socklen_t, then size_t, finally int.
239 dnl If the prototype succeeds, we are probably safe.
240 dnl That works if accept is not preprocessor defined (such sa AIX)
241 AC_MSG_CHECKING([for socklen_t])
242 AC_CACHE_VAL(ac_cv_check_socklen_t,[ac_cv_check_socklen_t=''
244 #include <sys/types.h>
245 #include <sys/socket.h>
256 extern int accept(int, struct sockaddr *, socklen_t *);
261 ],,[ac_cv_check_socklen_t=socklen_t],[
263 #include <sys/types.h>
264 #include <sys/socket.h>
275 extern int accept(int, struct sockaddr *, size_t t *);
280 ],,[ac_cv_check_socklen_t=size_t],[ac_cv_check_socklen_t=int])
283 AC_MSG_RESULT([$ac_cv_check_socklen_t])
284 AC_DEFINE_UNQUOTED([YAZ_SOCKLEN_T],[$ac_cv_check_socklen_t],[socklen_t type])
287 AC_ARG_ENABLE([tcpd],[ --enable-tcpd[=PREFIX] enable TCP wrapper for server if available])
288 if test "$enable_tcpd" -a "$enable_tcpd" != "no"; then
290 oldCPPFLAGS=$CPPFLAGS
291 if test "$enable_tcpd" != "yes"; then
292 LIBS="$LIBS -L$enable_tcpd/lib"
293 CPPFLAGS="$CPPFLAGS -I$enable_tcpd/include"
295 AC_MSG_CHECKING([for working tcpd.h])
297 AC_TRY_LINK([#include <syslog.h>
299 int allow_severity = LOG_INFO;
300 int deny_severity = LOG_WARNING;],
301 [struct request_info request_info; int i;
302 i = hosts_access(&request_info);],
303 tcpd_ok=1, tcpd_ok=0)
305 if test "$tcpd_ok" = "0"; then
307 AC_MSG_ERROR([tcpd development libraries missing])
308 CPPFLAGS=$oldCPPFLAGS
312 AC_DEFINE([HAVE_TCPD_H],1,[Define to 1 if tcp wrap library is present])
315 AC_SUBST([TCPD_LIBS])
317 AC_SUBST([YAZ_CONFIG_CFLAGS])
319 dnl ------ POSIX Threads
321 AC_ARG_ENABLE([threads],[ --disable-threads disable POSIX threads],[enable_threads=$enableval],[enable_threads=yes])
322 if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then
325 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
326 dnl unfortunately empty thread lib spec is problematic because
327 dnl 'yaz-config --cflags' is not always passed to linker in
328 dnl applications using YAZ (such as Zebra).
329 if test "x$PTHREAD_LIBS" = "x"; then
331 for lib in -lpthread -lpthreads -lc_r; do
333 AC_TRY_LINK([ #include <pthread.h> ],
334 [ pthread_t id; pthread_join(id, 0); ],
335 [ PTHREAD_LIBS=$lib; break ]
340 LIBS="$LIBS $PTHREAD_LIBS"
341 AC_DEFINE(YAZ_POSIX_THREADS,1,[Define to 1 if POSIX threads is present])
342 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_POSIX_THREADS=1"
346 dnl ----- libXSLT/libEXLT/libXML2
347 AC_SUBST([XML2_CFLAGS])
351 AC_DEFINE(YAZ_HAVE_XML2,1,[Define to 1 if Libxml2 is present])
352 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XML2=1"
356 if test "$xml_enabled" = "true"; then
358 AC_DEFINE(YAZ_HAVE_XSLT,1,[Define to 1 if Libxslt is present])
359 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XSLT=1"
362 AC_DEFINE(YAZ_HAVE_EXSLT,1,[Define to 1 if EXSLT is present])
363 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_EXSLT=1"
367 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS $XML2_CFLAGS"
369 if test "$XML2_LIBS"; then
370 LIBS="$XML2_LIBS $LIBS"
376 if test "$xml_enabled" = "true"; then
377 ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"
380 AC_MSG_WARN([ICU support disabled because XML support is unavailable])
383 dnl ------ versioning
385 WIN_FILEVERSION=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { m = $4; printf("%d,%d,%d,%d", $1, $2, $3 == "" ? "0" : $3, $4 == "" ? "1" : $4);}'`
386 AC_SUBST([WIN_FILEVERSION])
387 VERSION_HEX=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { printf("%x", ($1 * 256 + $2) * 256 + $3);}'`
388 AC_SUBST([VERSION_HEX])
389 if test -d ${srcdir}/.git; then
390 VERSION_SHA1=`git show --pretty=format:%H|head -1`
392 VERSION_SHA1=`head -1 ${srcdir}/ChangeLog|awk '{print $2}'`
394 AC_SUBST([VERSION_SHA1])
417 include/yaz/yaz-version.h
419 sed s%echo_source=yes%echo_source=no%g < yaz-config > util/yaz-config && chmod +x yaz-config util/yaz-config
420 diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
421 || cp doc/local0.ent doc/local.ent
427 "------------------------------------------------------------------------
430 YAZ Package: ${PACKAGE}
431 YAZ Version: ${VERSION}
432 Bugreport: ${PACKAGE_BUGREPORT}
433 Source code location: ${srcdir}
434 C Preprocessor: ${CPP}
435 C Preprocessor flags: ${CPPFLAGS}
437 C Compiler flags: ${CFLAGS}
438 Linker flags: ${LDFLAGS}
440 Host System Type: ${host}
441 Install path: ${prefix}
442 Automake: ${AUTOMAKE}
446 ------------------------------------------------------------------------"
448 dnl mode:shell-script
449 dnl sh-indentation: 2
450 dnl sh-basic-offset: 4