1 dnl YAZ Toolkit, Index Data 1994-2004
2 dnl See the file LICENSE for details.
3 dnl $Id: configure.in,v 1.164 2005-01-04 09:41:34 adam Exp $
4 AC_INIT(include/yaz/yaz-version.h)
5 AM_INIT_AUTOMAKE(yaz, 2.0.31)
8 AC_SUBST(READLINE_LIBS)
9 AC_SUBST(YAZ_CONF_CFLAGS)
10 dnl ------ Checking programs
13 AC_CHECK_PROGS(YACC, 'bison -y')
14 test -z "$YACC" && AC_MSG_WARN([GNU bison not found])
18 AC_PATH_PROG(pkgconfigpath, pkg-config, NONE)
24 AC_CHECK_FUNC(connect)
25 if test "$ac_cv_func_connect" = "no"; then
26 AC_CHECK_LIB(socket, main, LIBS="$LIBS -lsocket", checkBoth=1)
28 if test "$checkBoth" = "1"; then
30 LIBS="$LIBS -lsocket -lnsl"
31 AC_CHECK_FUNC(accept, , [LIBS=$oldLibs])
33 AC_CHECK_FUNC(gethostbyname, , AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"]))
38 AC_ARG_WITH(openssl, [ --with-openssl[=PREFIX] OpenSSL library in PREFIX], [openssl=$withval])
41 if test "$openssl" != "no"; then
43 if test "$openssl" != "yes"; then
44 if test -x $openssl/bin/pkg-config; then
45 if $openssl/bin/pkg-config --exists openssl; then
46 SSL_CFLAGS=`$openssl/bin/pkg-config --cflags openssl`
47 LIBS="$LIBS `$openssl/bin/pkg-config --libs openssl`"
48 sslver=`$openssl/bin/pkg-config --modversion openssl`
51 if test "$sslver" = "no"; then
52 SSL_CFLAGS="-I$openssl/include -I$openssl/include/openssl"
53 SSL_LIBPATH="-L$openssl/lib"
56 if test "$pkgconfigpath" != "NONE"; then
57 if $pkgconfigpath --exists openssl; then
58 SSL_CFLAGS=`$pkgconfigpath --cflags openssl`
59 LIBS="$LIBS `$pkgconfigpath --libs openssl`"
60 sslver=`$pkgconfigpath --modversion openssl`
63 if test "$sslver" = "no"; then
64 SSL_CFLAGS="-I/usr/include/openssl"
67 if test "$sslver" = "no"; then
69 xCPPFLAGS="$CPPFLAGS";
70 CPPFLAGS="$CPPFLAGS $SSL_CFLAGS $SSL_LIBPATH"
71 AC_CHECK_LIB(crypto, main)
72 AC_CHECK_LIB(ssl, SSL_new)
73 if test "$ac_cv_lib_ssl_SSL_new" = "yes"; then
74 AC_CHECK_HEADER(openssl/ssl.h,[sslver=yes])
75 LIBS="$SSL_LIBPATH $LIBS"
77 if test "$sslver" != "yes"; then
82 AC_MSG_CHECKING([for SSL])
83 if test "$sslver" != "no"; then
84 SSL_CFLAGS="-DHAVE_OPENSSL_SSL_H=1 $SSL_CFLAGS"
85 AC_MSG_RESULT([$sslver])
89 AC_MSG_ERROR([OpenSSL development libraries missing])
93 dnl ------ GNU Readline
94 READLINE_SHARED_LIBADD=""
95 AC_CHECK_LIB(ncurses, tgetent, [READLINE_SHARED_LIBADD="-lncurses"],
96 AC_CHECK_LIB(termcap, tgetent, [READLINE_SHARED_LIBADD="-ltermcap"])
99 AC_CHECK_LIB(readline, readline, [READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,$READLINE_SHARED_LIBADD)
100 AC_CHECK_LIB(history, add_history, [READLINE_LIBS="$READLINE_LIBS -lhistory"])
101 if test "$ac_cv_lib_readline_readline" = "yes"; then
102 AC_CHECK_HEADERS(readline/readline.h readline/history.h)
104 LIBS="$LIBS $READLINE_LIBS"
107 #include <readline/readline.h>
109 rl_attempted_completion_over = 0;
110 ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER))
113 #include <readline/readline.h>
115 rl_completion_matches (0, 0);
116 ],[AC_DEFINE(HAVE_READLINE_RL_COMPLETION_MATCHES)])
120 AC_ARG_WITH(iconv, [ --with-iconv[=PREFIX] iconv library in PREFIX])
121 if test "$with_iconv" != "no"; then
122 AC_MSG_CHECKING(for iconv)
124 oldCPPFLAGS="${CPPFLAGS}"
125 if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then
126 LIBS="$LIBS -L${with_iconv}/lib"
127 CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include"
132 iconv_t t = iconv_open("", "");
134 AC_DEFINE(HAVE_ICONV_H)
141 iconv_t t = iconv_open("", "");
143 AC_DEFINE(HAVE_ICONV_H)
147 CPPFLAGS="$oldCPPFLAGS"
152 dnl ------ various functions
153 AC_CHECK_FUNCS(vsnprintf gettimeofday poll strerror_r)
154 if test "$ac_cv_func_poll" = "yes"; then
155 AC_CHECK_HEADERS(sys/poll.h)
158 dnl We check for socklen_t by making prototypes with the
159 dnl various types. First socklen_t, then size_t, finally int.
160 dnl If the prototype succeeds, we're probably safe.
161 dnl That works if accept is not preprocessor defined (such sa AIX)
162 AC_MSG_CHECKING([for socklen_t])
163 AC_CACHE_VAL(ac_cv_check_socklen_t,[ac_cv_check_socklen_t=''
165 #include <sys/types.h>
166 #include <sys/socket.h>
177 extern int accept(int, struct sockaddr *, socklen_t *);
182 ],,[ac_cv_check_socklen_t=socklen_t],[
184 #include <sys/types.h>
185 #include <sys/socket.h>
196 extern int accept(int, struct sockaddr *, size_t t *);
201 ],,[ac_cv_check_socklen_t=size_t],[ac_cv_check_socklen_t=int])
204 AC_MSG_RESULT($ac_cv_check_socklen_t)
205 AC_DEFINE_UNQUOTED(YAZ_SOCKLEN_T,$ac_cv_check_socklen_t)
206 AC_DEFINE(YAZ_USE_NEW_LOG)
209 AC_ARG_ENABLE(tcpd,[ --enable-tcpd[=PREFIX] enable TCP wrapper for server if available])
210 if test "$enable_tcpd" -a "$enable_tcpd" != "no"; then
212 oldCPPFLAGS=$CPPFLAGS
213 if test "$enable_tcpd" != "yes"; then
214 LIBS="$LIBS -L$enable_tcpd/lib"
215 CPPFLAGS="$CPPFLAGS -I$enable_tcpd/include"
217 AC_MSG_CHECKING(for working tcpd.h)
218 LIBS="$LIBS -lwrap -lnsl"
219 AC_TRY_LINK([#include <syslog.h>
221 int allow_severity = LOG_INFO;
222 int deny_severity = LOG_WARNING;],
223 [struct request_info request_info; int i;
224 i = hosts_access(&request_info);],
225 tcpd_ok=1, tcpd_ok=0)
226 if test "$tcpd_ok" = "0"; then
228 AC_MSG_ERROR([tcpd development libraries missing])
230 CPPFLAGS=$oldCPPFLAGS
233 AC_DEFINE(HAVE_TCPD_H)
238 AC_CHECK_HEADERS(fnmatch.h wchar.h locale.h langinfo.h)
240 if test "$ac_cv_header_stdc" = "no"; then
241 AC_MSG_WARN(Your system doesn't seem to support ANSI C)
245 AC_SUBST(CFLAGSTHREADS)
250 dnl ------ GNU threads
251 AC_ARG_ENABLE(pth, [ --enable-pth enable GNU threads],[enable_pth=$enableval],[enable_pth=no])
253 if test "$enable_pth" = "yes"; then
255 AC_CHECK_LIB(pth,main)
256 if test "$ac_cv_lib_pth_main" = "yes"; then
257 AC_CHECK_HEADERS(pth.h)
258 if test "$ac_cv_header_pth_h" = "yes"; then
260 CFLAGSTHREADS="-DYAZ_GNU_THREADS=1"
267 dnl ------ POSIX Threads
268 AC_ARG_ENABLE(threads, [ --disable-threads disable POSIX threads],[enable_threads=$enableval],[enable_threads=yes])
269 if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then
272 AC_CHECK_LIB(pthread,main)
273 AC_MSG_CHECKING(for working POSIX Threads)
274 AC_TRY_LINK([#include <pthread.h>
275 void *func(void *p) { return 0; }
277 pthread_t pthread_id;
278 pthread_create (&pthread_id, 0, func, 0);],
279 thread_ok=yes,thread_ok=no)
280 if test "$thread_ok" = "yes"; then
282 LIBTHREAD="-lpthread"
283 CFLAGSTHREADS="-DYAZ_POSIX_THREADS=1 -D_REENTRANT"
287 AC_TRY_LINK([#include <pthread.h>
288 void *func(void *p) { return 0; }
290 pthread_t pthread_id;
291 pthread_create (&pthread_id, 0, func, 0);],
292 thread_ok=yes,thread_ok=no)
293 if test "$thread_ok" = "yes"; then
294 AC_MSG_RESULT([yes,BSD])
295 CFLAGSTHREADS="-pthread -DYAZ_POSIX_THREADS=1 -D_REENTRANT"
300 if test "$thread_ok" = "no"; then
306 AM_CONDITIONAL(ISTHR, test $HAVETHREADS = "1")
310 AC_SUBST(XML2_CFLAGS)
312 AC_ARG_WITH(xml2, [ --with-xml2[=PREFIX] use libxml2 in PREFIX],[xml2dir=$withval])
313 if test "$xml2dir" = "yes" -o "$xml2dir" = "default"; then
314 for d in /usr /usr/local; do
315 if test -x $d/bin/xml2-config; then
320 if test "$xml2dir" != "no"; then
321 AC_MSG_CHECKING(for libXML2)
322 if test -x $xml2dir/bin/xml2-config; then
323 XML2_LIBS=`$xml2dir/bin/xml2-config --libs`
324 LIBS="$XML2_LIBS $LIBS"
325 XML2_CFLAGS=`$xml2dir/bin/xml2-config --cflags`
326 XML2_VER=`$xml2dir/bin/xml2-config --version`
327 AC_MSG_RESULT($XML2_VER)
330 AC_MSG_RESULT([Not found])
331 if test "$xml2dir" != "default"; then
332 AC_MSG_ERROR([libXML2 development libraries missing])
337 dnl ------ Memory debugging
338 AC_ARG_ENABLE(memdebug, [ --enable-memdebug enable memory debugging],[enable_memdebug=$enableval],[enable_memdebug=none])
339 if test "$enable_memdebug" = "yes"; then
340 AC_DEFINE(TRACE_XMALLOC,2)
341 elif test "$enable_memdebug" = "no"; then
342 AC_DEFINE(TRACE_XMALLOC,0)
345 dnl ------ Using this for "in-source" yaz-config
346 AC_SUBST(YAZ_SRC_ROOT)
347 AC_SUBST(YAZ_BUILD_ROOT)
348 YAZ_SRC_ROOT=`cd ${srcdir}; pwd`
374 ],[sed s%yaz_echo_source=yes%yaz_echo_source=no%g < yaz-config > util/yaz-config && chmod +x yaz-config util/yaz-config])