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" -a ! -f src/cql.c && AC_MSG_ERROR([GNU Bison not found])
20 test -z "$YACC" && AC_MSG_WARN([GNU Bison not found])
21 AC_CHECK_PROGS([TCLSH], [tclsh tclsh8.5 tclsh8.4 tclsh8.3 tclsh8.2], [tclsh])
25 AC_PATH_PROG([pkgconfigpath],[pkg-config],[NONE])
30 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 execinfo.h],[],[],[])
31 AC_CHECK_HEADERS([net/if.h netinet/in.h netinet/if_ether.h],[],[],[
33 #include <sys/types.h>
36 #include <sys/socket.h>
42 #include <netinet/in.h>
46 if test "$ac_cv_header_stdc" = "no"; then
47 AC_MSG_WARN([Your system doesn not seem to support ANSI C])
50 AC_CHECK_TYPES([long long])
54 AC_CHECK_FUNC([connect])
55 if test "$ac_cv_func_connect" = "no"; then
56 AC_CHECK_LIB([socket],[main], LIBS="$LIBS -lsocket", checkBoth=1)
58 if test "$checkBoth" = "1"; then
60 LIBS="$LIBS -lsocket -lnsl"
61 AC_CHECK_FUNC([accept], , [LIBS=$oldLibs])
63 AC_CHECK_FUNC([gethostbyname], ,[AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])])
65 AC_SUBST([GCRYPT_LIBS])
67 AC_ARG_WITH(libgcrypt, [ --with-libgcrypt=DIR use libgcrypt-config in DIR],[libgcryptpath=$withval])
68 if test "$libgcryptpath" != "no"; then
69 if test "$libgcryptpath" = "NONE"; then
70 AC_PATH_PROG([libgcrypt],[libgcrypt-config],[NONE])
71 elif test -x $libgcryptpath/libgcrypt-config; then
72 libgcrypt=$libgcryptpath/libgcrypt-config
74 libgcrypt=$libgcryptpath
76 AC_MSG_CHECKING([for libgcrypt])
77 if "$libgcrypt" --version >/dev/null 2>&1; then
78 libgcryptversion=`$libgcrypt --version`
79 libgcryptversion2=`echo "$libgcryptversion" | awk 'BEGIN { FS = "."; } { printf "%d", [$]1 * 1000 + [$]2;}'`
80 AC_MSG_RESULT([$libgcryptversion])
81 if test $libgcryptversion2 -ge 1002; then
82 GCRYPT_LIBS="`$libgcrypt --libs`"
83 CFLAGS="$CFLAGS `$libgcrypt --cflags`"
84 AC_DEFINE([HAVE_GCRYPT_H],[1],[Define to 1 if libgcrypt is present])
86 if test "$libgcryptpath" = "NONE"; then
87 AC_MSG_WARN([Only libgcrypt version 1.2 and later supported])
89 AC_MSG_ERROR([Only libgcrypt version 1.2 and later supported])
99 AC_SUBST([HIREDIS_LIBS])
100 AC_ARG_WITH([redis], [ --with-redis hiredis library], [hiredis=$withval])
101 if test "$hiredis" != "no" -a "$pkgconfigpath" != "NONE" -a "$libgcryptversion"; then
102 AC_CHECK_LIB([hiredis],[redisCommandArgv],[HIREDIS_LIBS=-lhiredis])
103 AC_MSG_CHECKING([for redis])
104 if $pkgconfigpath --cflags hiredis >/dev/null 2>&1 ; then
105 if $pkgconfigpath --atleast-version 0.10 hiredis; then
107 CFLAGS="$CFLAGS `$pkgconfigpath --cflags hiredis`"
108 HIREDIS_LIBS="`$pkgconfigpath --libs hiredis`"
109 AC_DEFINE([HAVE_HIREDIS],[1],[Define to 1 if hiredis is enabled])
111 AC_MSG_RESULT([no. Version 0.10 required])
112 if test "$hiredis" != "default"; then
113 AC_MSG_ERROR([hiredis libraries missing])
117 if test "$ac_cv_lib_hiredis_redisCommandArgv" = "yes"; then
118 AC_DEFINE([HAVE_HIREDIS],[1])
122 if test "$hiredis" != "default"; then
123 AC_MSG_ERROR([hiredis libraries missing])
130 AC_SUBST([MEMCACHED_LIBS])
131 AC_ARG_WITH([memcached], [ --with-memcached Memcached library], [memcached=$withval])
132 if test "$memcached" != "no" -a -n "$libgcryptversion" -a "$pkgconfigpath" != "NONE"; then
133 AC_MSG_CHECKING([for libmemcached])
134 if $pkgconfigpath --cflags libmemcached >/dev/null 2>&1 ; then
135 if $pkgconfigpath --atleast-version 0.40 libmemcached; then
137 CFLAGS="$CFLAGS `$pkgconfigpath --cflags libmemcached`"
138 MEMCACHED_LIBS="`$pkgconfigpath --libs libmemcached`"
139 AC_DEFINE([HAVE_LIBMEMCACHED],[1],[Define to 1 if memcached is enabled])
141 AC_MSG_RESULT([no. Version 0.40 required])
142 if test "$memcached" != "default"; then
143 AC_MSG_ERROR([libmemcached libraries missing])
148 if test "$memcached" != "default"; then
149 AC_MSG_ERROR([libmemcached libraries missing])
154 AC_SUBST([SSL_CFLAGS])
157 AC_ARG_WITH([gnutls], [ --with-gnutls[=PREFIX] GNU TLS library in PREFIX], [gnutls=$withval])
158 if test "$gnutls" != "no"; then
160 if test "$gnutls" != "yes" -a "$gnutls" != "default"; then
161 if test -x $gnutls/bin/pkg-config; then
162 if $gnutls/bin/pkg-config --exists gnutls; then
163 SSL_CFLAGS=`$gnutls/bin/pkg-config --cflags gnutls`
164 SSL_LIBS="`$gnutls/bin/pkg-config --libs gnutls`"
165 gnutlsver=`$gnutls/bin/pkg-config --modversion gnutls`
169 if test "$pkgconfigpath" != "NONE"; then
170 if $pkgconfigpath --exists gnutls; then
171 SSL_CFLAGS=`$pkgconfigpath --cflags gnutls`
172 SSL_LIBS="`$pkgconfigpath --libs gnutls`"
173 gnutlsver=`$pkgconfigpath --modversion gnutls`
177 AC_MSG_CHECKING([for GNU TLS])
178 if test "$gnutlsver" != "no"; then
179 AC_DEFINE([HAVE_GNUTLS_H],[1],[Define to 1 if GNUTLS is present])
180 AC_MSG_RESULT([$gnutlsver])
183 AC_MSG_RESULT([None])
184 if test "$gnutls" != "default"; then
185 AC_MSG_ERROR([GNU TLS development libraries missing])
190 dnl ------ GNU Readline
191 READLINE_SHARED_LIBADD=""
192 AC_CHECK_LIB([ncurses],[tgetent],[READLINE_SHARED_LIBADD="-lncurses"],
193 AC_CHECK_LIB([termcap],[tgetent],[READLINE_SHARED_LIBADD="-ltermcap"])
196 AC_CHECK_LIB([readline],[readline],[READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,$READLINE_SHARED_LIBADD)
197 AC_CHECK_LIB([history],[add_history],[READLINE_LIBS="$READLINE_LIBS -lhistory"])
198 if test "$ac_cv_lib_readline_readline" = "yes"; then
199 AC_CHECK_HEADERS([readline/readline.h readline/history.h])
201 LIBS="$LIBS $READLINE_LIBS"
204 #include <readline/readline.h>
206 rl_attempted_completion_over = 0;
207 ],AC_DEFINE([HAVE_READLINE_COMPLETION_OVER],1,[Define to 1 if rl_attempted_completion_over is defined]))
210 #include <readline/readline.h>
212 rl_completion_matches (0, 0);
213 ],[AC_DEFINE([HAVE_READLINE_RL_COMPLETION_MATCHES],1,[Define to 1 if rl_completion_matches is defined])])
217 AC_ARG_WITH([iconv],[ --with-iconv[=PREFIX] iconv library in PREFIX])
218 if test "$with_iconv" != "no"; then
219 AC_MSG_CHECKING([for iconv])
221 oldCPPFLAGS="${CPPFLAGS}"
222 if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then
223 LIBS="$LIBS -L${with_iconv}/lib"
224 CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include"
229 iconv_t t = iconv_open("", "");
231 AC_DEFINE([HAVE_ICONV_H],1,[Define to 1 if iconv.h is present])
238 iconv_t t = iconv_open("", "");
240 AC_DEFINE([HAVE_ICONV_H],1)
244 CPPFLAGS="$oldCPPFLAGS"
249 dnl ------ various functions
250 AC_CHECK_FUNCS([getaddrinfo vsnprintf gettimeofday poll strerror_r localtime_r usleep fopen64])
260 if test "$ac_cv_func_poll" = "yes" -a "$trypoll" = "yes"; then
261 AC_CHECK_HEADERS([sys/poll.h])
264 dnl We check for socklen_t by making prototypes with the
265 dnl various types. First socklen_t, then size_t, finally int.
266 dnl If the prototype succeeds, we are probably safe.
267 dnl That works if accept is not preprocessor defined (such sa AIX)
268 AC_MSG_CHECKING([for socklen_t])
269 AC_CACHE_VAL(ac_cv_check_socklen_t,[ac_cv_check_socklen_t=''
271 #include <sys/types.h>
272 #include <sys/socket.h>
283 extern int accept(int, struct sockaddr *, socklen_t *);
288 ],,[ac_cv_check_socklen_t=socklen_t],[
290 #include <sys/types.h>
291 #include <sys/socket.h>
302 extern int accept(int, struct sockaddr *, size_t t *);
307 ],,[ac_cv_check_socklen_t=size_t],[ac_cv_check_socklen_t=int])
310 AC_MSG_RESULT([$ac_cv_check_socklen_t])
311 AC_DEFINE_UNQUOTED([YAZ_SOCKLEN_T],[$ac_cv_check_socklen_t],[socklen_t type])
314 AC_ARG_ENABLE([tcpd],[ --enable-tcpd[=PREFIX] enable TCP wrapper for server if available])
315 if test "$enable_tcpd" -a "$enable_tcpd" != "no"; then
317 oldCPPFLAGS=$CPPFLAGS
318 if test "$enable_tcpd" != "yes"; then
319 LIBS="$LIBS -L$enable_tcpd/lib"
320 CPPFLAGS="$CPPFLAGS -I$enable_tcpd/include"
322 AC_MSG_CHECKING([for working tcpd.h])
324 AC_TRY_LINK([#include <syslog.h>
326 int allow_severity = LOG_INFO;
327 int deny_severity = LOG_WARNING;],
328 [struct request_info request_info; int i;
329 i = hosts_access(&request_info);],
330 tcpd_ok=1, tcpd_ok=0)
332 if test "$tcpd_ok" = "0"; then
334 AC_MSG_ERROR([tcpd development libraries missing])
335 CPPFLAGS=$oldCPPFLAGS
339 AC_DEFINE([HAVE_TCPD_H],1,[Define to 1 if tcp wrap library is present])
342 AC_SUBST([TCPD_LIBS])
344 AC_SUBST([YAZ_CONFIG_CFLAGS])
346 dnl ------ POSIX Threads
348 AC_ARG_ENABLE([threads],[ --disable-threads disable POSIX threads],[enable_threads=$enableval],[enable_threads=yes])
349 if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then
352 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
353 dnl unfortunately empty thread lib spec is problematic because
354 dnl 'yaz-config --cflags' is not always passed to linker in
355 dnl applications using YAZ (such as Zebra).
356 if test "x$PTHREAD_LIBS" = "x"; then
358 for lib in -lpthread -lpthreads -lc_r; do
360 AC_TRY_LINK([ #include <pthread.h> ],
361 [ pthread_t id; pthread_join(id, 0); ],
362 [ PTHREAD_LIBS=$lib; break ]
367 LIBS="$LIBS $PTHREAD_LIBS"
368 AC_DEFINE(YAZ_POSIX_THREADS,1,[Define to 1 if POSIX threads is present])
369 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_POSIX_THREADS=1"
373 dnl ----- libXSLT/libEXLT/libXML2
374 AC_SUBST([XML2_CFLAGS])
378 AC_DEFINE(YAZ_HAVE_XML2,1,[Define to 1 if Libxml2 is present])
379 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XML2=1"
383 if test "$xml_enabled" = "true"; then
385 AC_DEFINE(YAZ_HAVE_XSLT,1,[Define to 1 if Libxslt is present])
386 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XSLT=1"
389 AC_DEFINE(YAZ_HAVE_EXSLT,1,[Define to 1 if EXSLT is present])
390 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_EXSLT=1"
394 YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS $XML2_CFLAGS"
396 if test "$XML2_LIBS"; then
397 LIBS="$XML2_LIBS $LIBS"
403 if test "$xml_enabled" = "true"; then
404 ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"
407 AC_MSG_WARN([ICU support disabled because XML support is unavailable])
410 dnl ------ versioning
412 WIN_FILEVERSION=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { m = $4; printf("%d,%d,%d,%d", $1, $2, $3 == "" ? "0" : $3, $4 == "" ? "1" : $4);}'`
413 AC_SUBST([WIN_FILEVERSION])
414 VERSION_HEX=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { printf("%x", ($1 * 256 + $2) * 256 + $3);}'`
415 AC_SUBST([VERSION_HEX])
416 if test -d ${srcdir}/.git; then
417 VERSION_SHA1=`git show --pretty=format:%H|head -1`
419 VERSION_SHA1=`head -1 ${srcdir}/ChangeLog|awk '{print $2}'`
421 AC_SUBST([VERSION_SHA1])
444 include/yaz/yaz-version.h
446 sed s%echo_source=yes%echo_source=no%g < yaz-config > util/yaz-config && chmod +x yaz-config util/yaz-config
447 diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
448 || cp doc/local0.ent doc/local.ent
454 "------------------------------------------------------------------------
457 YAZ Package: ${PACKAGE}
458 YAZ Version: ${VERSION}
459 Bugreport: ${PACKAGE_BUGREPORT}
460 Source code location: ${srcdir}
461 C Preprocessor: ${CPP}
462 C Preprocessor flags: ${CPPFLAGS}
464 C Compiler flags: ${CFLAGS}
465 Linker flags: ${LDFLAGS}
467 Host System Type: ${host}
468 Install path: ${prefix}
469 Automake: ${AUTOMAKE}
473 ------------------------------------------------------------------------"
475 dnl mode:shell-script
476 dnl sh-indentation: 2
477 dnl sh-basic-offset: 4