1 dnl This file is part of the YAZ toolkit.
2 dnl Copyright (C) Index Data
3 dnl See the file LICENSE for details.
6 m4_esyscmd([. ./IDMETA; echo $VERSION|tr -d '\n']),
7 [yaz-help@indexdata.dk])
8 AC_CONFIG_HEADERS(include/config.h)
9 AC_CONFIG_SRCDIR([configure.ac])
10 AC_CONFIG_AUX_DIR([config])
11 AM_INIT_AUTOMAKE([1.9 subdir-objects])
13 AC_SUBST([READLINE_LIBS])
14 AC_SUBST([YAZ_CONF_CFLAGS])
15 dnl ------ Checking programs
18 AC_CHECK_PROGS([YACC], 'bison -y')
19 test -z "$YACC" && AC_MSG_WARN([GNU bison not found])
20 AC_CHECK_PROGS([TCLSH], [tclsh tclsh8.5 tclsh8.4 tclsh8.3 tclsh8.2], [tclsh])
24 AC_PATH_PROG([pkgconfigpath],[pkg-config],[NONE])
29 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],[],[],[])
30 AC_CHECK_HEADERS([net/if.h netinet/in.h netinet/if_ether.h],[],[],[
32 #include <sys/types.h>
35 #include <sys/socket.h>
41 #include <netinet/in.h>
45 if test "$ac_cv_header_stdc" = "no"; then
46 AC_MSG_WARN([Your system doesn not seem to support ANSI C])
49 AC_CHECK_TYPES([long long])
53 AC_CHECK_FUNC([connect])
54 if test "$ac_cv_func_connect" = "no"; then
55 AC_CHECK_LIB([socket],[main], LIBS="$LIBS -lsocket", checkBoth=1)
57 if test "$checkBoth" = "1"; then
59 LIBS="$LIBS -lsocket -lnsl"
60 AC_CHECK_FUNC([accept], , [LIBS=$oldLibs])
62 AC_CHECK_FUNC([gethostbyname], ,[AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])])
64 AC_SUBST([GCRYPT_LIBS])
66 AC_ARG_WITH(libgcrypt, [ --with-libgcrypt=DIR use libgcrypt-config in DIR],[libgcryptpath=$withval])
67 if test "$libgcryptpath" != "no"; then
68 if test "$libgcryptpath" = "NONE"; then
69 AC_PATH_PROG([libgcrypt],[libgcrypt-config],[NONE])
70 elif test -x $libgcryptpath/libgcrypt-config; then
71 libgcrypt=$libgcryptpath/libgcrypt-config
73 libgcrypt=$libgcryptpath
75 AC_MSG_CHECKING([for libgcrypt])
76 if "$libgcrypt" --version >/dev/null 2>&1; then
77 libgcryptversion=`$libgcrypt --version`
78 libgcryptversion2=`echo "$libgcryptversion" | awk 'BEGIN { FS = "."; } { printf "%d", [$]1 * 1000 + [$]2;}'`
79 AC_MSG_RESULT([$libgcryptversion])
80 if test $libgcryptversion2 -ge 1002; then
81 GCRYPT_LIBS="`$libgcrypt --libs`"
82 CFLAGS="$CFLAGS `$libgcrypt --cflags`"
83 AC_DEFINE([HAVE_GCRYPT_H],[1],[Define to 1 if libgcrypt is present])
85 if test "$libgcryptpath" = "NONE"; then
86 AC_MSG_WARN([Only libgcrypt version 1.2 and later supported])
88 AC_MSG_ERROR([Only libgcrypt version 1.2 and later supported])
98 AC_SUBST([HIREDIS_LIBS])
99 AC_ARG_WITH([redis], [ --with-redis hiredis library], [hiredis=$withval])
100 if test "$hiredis" != "no" -a "$pkgconfigpath" != "NONE" -a "$libgcryptversion"; then
101 AC_CHECK_LIB([hiredis],[redisCommandArgv],[HIREDIS_LIBS=-lhiredis])
102 AC_MSG_CHECKING([for redis])
103 if $pkgconfigpath --cflags hiredis >/dev/null 2>&1 ; then
104 if $pkgconfigpath --atleast-version 0.10 hiredis; then
106 CFLAGS="$CFLAGS `$pkgconfigpath --cflags hiredis`"
107 HIREDIS_LIBS="`$pkgconfigpath --libs hiredis`"
108 AC_DEFINE([HAVE_HIREDIS],[1],[Define to 1 if hiredis is enabled])
110 AC_MSG_RESULT([no. Version 0.10 required])
111 if test "$hiredis" != "default"; then
112 AC_MSG_ERROR([hiredis libraries missing])
116 if test "$ac_cv_lib_hiredis_redisCommandArgv" = "yes"; then
117 AC_DEFINE([HAVE_HIREDIS],[1])
121 if test "$hiredis" != "default"; then
122 AC_MSG_ERROR([hiredis libraries missing])
129 AC_SUBST([MEMCACHED_LIBS])
130 AC_ARG_WITH([memcached], [ --with-memcached Memcached library], [memcached=$withval])
131 if test "$memcached" != "no" -a -n "$libgcryptversion" -a "$pkgconfigpath" != "NONE"; then
132 AC_MSG_CHECKING([for libmemcached])
133 if $pkgconfigpath --cflags libmemcached >/dev/null 2>&1 ; then
134 if $pkgconfigpath --atleast-version 0.40 libmemcached; then
136 CFLAGS="$CFLAGS `$pkgconfigpath --cflags libmemcached`"
137 MEMCACHED_LIBS="`$pkgconfigpath --libs libmemcached`"
138 AC_DEFINE([HAVE_LIBMEMCACHED],[1],[Define to 1 if memcached is enabled])
140 AC_MSG_RESULT([no. Version 0.40 required])
141 if test "$memcached" != "default"; then
142 AC_MSG_ERROR([libmemcached libraries missing])
147 if test "$memcached" != "default"; then
148 AC_MSG_ERROR([libmemcached libraries missing])
153 AC_SUBST([SSL_CFLAGS])
156 AC_ARG_WITH([gnutls], [ --with-gnutls[=PREFIX] GNU TLS library in PREFIX], [gnutls=$withval])
157 if test "$gnutls" != "no"; then
159 if test "$gnutls" != "yes" -a "$gnutls" != "default"; then
160 if test -x $gnutls/bin/pkg-config; then
161 if $gnutls/bin/pkg-config --exists gnutls; then
162 SSL_CFLAGS=`$gnutls/bin/pkg-config --cflags gnutls`
163 SSL_LIBS="`$gnutls/bin/pkg-config --libs gnutls`"
164 gnutlsver=`$gnutls/bin/pkg-config --modversion gnutls`
168 if test "$pkgconfigpath" != "NONE"; then
169 if $pkgconfigpath --exists gnutls; then
170 SSL_CFLAGS=`$pkgconfigpath --cflags gnutls`
171 SSL_LIBS="`$pkgconfigpath --libs gnutls`"
172 gnutlsver=`$pkgconfigpath --modversion gnutls`
176 AC_MSG_CHECKING([for GNU TLS])
177 if test "$gnutlsver" != "no"; then
178 AC_DEFINE([HAVE_GNUTLS_H],[1],[Define to 1 if GNUTLS is present])
179 AC_MSG_RESULT([$gnutlsver])
182 AC_MSG_RESULT([None])
183 if test "$gnutls" != "default"; then
184 AC_MSG_ERROR([GNU TLS development libraries missing])
189 dnl ------ GNU Readline
190 READLINE_SHARED_LIBADD=""
191 AC_CHECK_LIB([ncurses],[tgetent],[READLINE_SHARED_LIBADD="-lncurses"],
192 AC_CHECK_LIB([termcap],[tgetent],[READLINE_SHARED_LIBADD="-ltermcap"])
195 AC_CHECK_LIB([readline],[readline],[READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,$READLINE_SHARED_LIBADD)
196 AC_CHECK_LIB([history],[add_history],[READLINE_LIBS="$READLINE_LIBS -lhistory"])
197 if test "$ac_cv_lib_readline_readline" = "yes"; then
198 AC_CHECK_HEADERS([readline/readline.h readline/history.h])
200 LIBS="$LIBS $READLINE_LIBS"
203 #include <readline/readline.h>
205 rl_attempted_completion_over = 0;
206 ],AC_DEFINE([HAVE_READLINE_COMPLETION_OVER],1,[Define to 1 if rl_attempted_completion_over is defined]))
209 #include <readline/readline.h>
211 rl_completion_matches (0, 0);
212 ],[AC_DEFINE([HAVE_READLINE_RL_COMPLETION_MATCHES],1,[Define to 1 if rl_completion_matches is defined])])
216 AC_ARG_WITH([iconv],[ --with-iconv[=PREFIX] iconv library in PREFIX])
217 if test "$with_iconv" != "no"; then
218 AC_MSG_CHECKING([for iconv])
220 oldCPPFLAGS="${CPPFLAGS}"
221 if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then
222 LIBS="$LIBS -L${with_iconv}/lib"
223 CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include"
228 iconv_t t = iconv_open("", "");
230 AC_DEFINE([HAVE_ICONV_H],1,[Define to 1 if iconv.h is present])
237 iconv_t t = iconv_open("", "");
239 AC_DEFINE([HAVE_ICONV_H],1)
243 CPPFLAGS="$oldCPPFLAGS"
248 dnl ------ various functions
249 AC_CHECK_FUNCS([getaddrinfo vsnprintf gettimeofday poll strerror_r localtime_r usleep fopen64])
259 if test "$ac_cv_func_poll" = "yes" -a "$trypoll" = "yes"; then
260 AC_CHECK_HEADERS([sys/poll.h])
263 dnl We check for socklen_t by making prototypes with the
264 dnl various types. First socklen_t, then size_t, finally int.
265 dnl If the prototype succeeds, we are probably safe.
266 dnl That works if accept is not preprocessor defined (such sa AIX)
267 AC_MSG_CHECKING([for socklen_t])
268 AC_CACHE_VAL(ac_cv_check_socklen_t,[ac_cv_check_socklen_t=''
270 #include <sys/types.h>
271 #include <sys/socket.h>
282 extern int accept(int, struct sockaddr *, socklen_t *);
287 ],,[ac_cv_check_socklen_t=socklen_t],[
289 #include <sys/types.h>
290 #include <sys/socket.h>
301 extern int accept(int, struct sockaddr *, size_t t *);
306 ],,[ac_cv_check_socklen_t=size_t],[ac_cv_check_socklen_t=int])
309 AC_MSG_RESULT([$ac_cv_check_socklen_t])
310 AC_DEFINE_UNQUOTED([YAZ_SOCKLEN_T],[$ac_cv_check_socklen_t],[socklen_t type])
313 AC_ARG_ENABLE([tcpd],[ --enable-tcpd[=PREFIX] enable TCP wrapper for server if available])
314 if test "$enable_tcpd" -a "$enable_tcpd" != "no"; then
316 oldCPPFLAGS=$CPPFLAGS
317 if test "$enable_tcpd" != "yes"; then
318 LIBS="$LIBS -L$enable_tcpd/lib"
319 CPPFLAGS="$CPPFLAGS -I$enable_tcpd/include"
321 AC_MSG_CHECKING([for working tcpd.h])
323 AC_TRY_LINK([#include <syslog.h>
325 int allow_severity = LOG_INFO;
326 int deny_severity = LOG_WARNING;],
327 [struct request_info request_info; int i;
328 i = hosts_access(&request_info);],
329 tcpd_ok=1, tcpd_ok=0)
331 if test "$tcpd_ok" = "0"; then
333 AC_MSG_ERROR([tcpd development libraries missing])
334 CPPFLAGS=$oldCPPFLAGS
338 AC_DEFINE([HAVE_TCPD_H],1,[Define to 1 if tcp wrap library is present])
341 AC_SUBST([TCPD_LIBS])
343 AC_SUBST([YAZ_CONFIG_CFLAGS])
345 dnl ------ POSIX Threads
347 AC_ARG_ENABLE([threads],[ --disable-threads disable POSIX threads],[enable_threads=$enableval],[enable_threads=yes])
348 if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then
351 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
352 dnl unfortunately empty thread lib spec is problematic because
353 dnl 'yaz-config --cflags' is not always passed to linker in
354 dnl applications using YAZ (such as Zebra).
355 if test "x$PTHREAD_LIBS" = "x"; then
357 for lib in -lpthread -lpthreads -lc_r; do
359 AC_TRY_LINK([ #include <pthread.h> ],
360 [ pthread_t id; pthread_join(id, 0); ],
361 [ PTHREAD_LIBS=$lib; break ]
366 LIBS="$LIBS $PTHREAD_LIBS"
367 AC_DEFINE(YAZ_POSIX_THREADS,1,[Define to 1 if POSIX threads is present])
368 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_POSIX_THREADS=1"
372 dnl ----- libXSLT/libEXLT/libXML2
373 AC_SUBST([XML2_CFLAGS])
377 AC_DEFINE(YAZ_HAVE_XML2,1,[Define to 1 if Libxml2 is present])
378 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XML2=1"
382 if test "$xml_enabled" = "true"; then
384 AC_DEFINE(YAZ_HAVE_XSLT,1,[Define to 1 if Libxslt is present])
385 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XSLT=1"
388 AC_DEFINE(YAZ_HAVE_EXSLT,1,[Define to 1 if EXSLT is present])
389 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_EXSLT=1"
393 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS $XML2_CFLAGS"
395 if test "$XML2_LIBS"; then
396 LIBS="$XML2_LIBS $LIBS"
402 if test "$xml_enabled" = "true"; then
403 ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"
406 AC_MSG_WARN([ICU support disabled because XML support is unavailable])
409 dnl ------ versioning
411 WIN_FILEVERSION=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { m = $4; printf("%d,%d,%d,%d", $1, $2, $3 == "" ? "0" : $3, $4 == "" ? "1" : $4);}'`
412 AC_SUBST([WIN_FILEVERSION])
413 VERSION_HEX=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { printf("%x", ($1 * 256 + $2) * 256 + $3);}'`
414 AC_SUBST([VERSION_HEX])
415 if test -d ${srcdir}/.git; then
416 VERSION_SHA1=`git show --pretty=format:%H|head -1`
418 VERSION_SHA1=`head -1 ${srcdir}/ChangeLog|awk '{print $2}'`
420 AC_SUBST([VERSION_SHA1])
443 include/yaz/yaz-version.h
445 sed s%echo_source=yes%echo_source=no%g < yaz-config > util/yaz-config && chmod +x yaz-config util/yaz-config
446 diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
447 || cp doc/local0.ent doc/local.ent
453 "------------------------------------------------------------------------
456 YAZ Package: ${PACKAGE}
457 YAZ Version: ${VERSION}
458 Bugreport: ${PACKAGE_BUGREPORT}
459 Source code location: ${srcdir}
460 C Preprocessor: ${CPP}
461 C Preprocessor flags: ${CPPFLAGS}
463 C Compiler flags: ${CFLAGS}
464 Linker flags: ${LDFLAGS}
466 Host System Type: ${host}
467 Install path: ${prefix}
468 Automake: ${AUTOMAKE}
472 ------------------------------------------------------------------------"
474 dnl mode:shell-script
475 dnl sh-indentation: 2
476 dnl sh-basic-offset: 4