-
Notifications
You must be signed in to change notification settings - Fork 19
/
configure.ac
458 lines (447 loc) · 13.4 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
dnl This file is part of the YAZ toolkit.
dnl Copyright (C) Index Data
dnl See the file LICENSE for details.
AC_PREREQ([2.69])
AC_INIT([yaz],[m4_esyscmd([. ./IDMETA; printf $VERSION])],[[email protected]])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_AUX_DIR([config])
AM_INIT_AUTOMAKE([1.9 subdir-objects])
dnl
AC_SUBST([READLINE_LIBS])
AC_SUBST([YAZ_CONF_CFLAGS])
dnl ------ Checking programs
AC_PROG_CC
AC_PROG_CPP
AC_CHECK_PROGS([YACC], ['bison -y'])
test -z "$YACC" -a ! -f src/cql.c && AC_MSG_ERROR([GNU Bison not found])
test -z "$YACC" && AC_MSG_WARN([GNU Bison not found])
AC_CHECK_PROGS([TCLSH], [tclsh tclsh8.5 tclsh8.4 tclsh8.3 tclsh8.2], [tclsh])
AC_PROG_INSTALL
LT_INIT
AM_PROG_CC_C_O
AC_PATH_TOOL([PKG_CONFIG],[pkg-config],[NONE])
dnl
YAZ_DOC
dnl
dnl
AC_C_BIGENDIAN
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],[],[],[])
AC_CHECK_HEADERS([net/if.h netinet/in.h netinet/if_ether.h],[],[],[
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#if HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#if HAVE_NET_IF_H
#include <net/if.h>
#endif
#if HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
])
dnl ----- Types
AC_CHECK_TYPES([long long])
dnl
dnl ----- Sockets
checkBoth=0
AC_CHECK_FUNC([connect])
if test "$ac_cv_func_connect" = "no"; then
AC_CHECK_LIB([socket], [main], [LIBS="$LIBS -lsocket"], [checkBoth=1])
fi
if test "$checkBoth" = "1"; then
oldLibs=$LIBS
LIBS="$LIBS -lsocket -lnsl"
AC_CHECK_FUNC([accept], , [LIBS=$oldLibs])
fi
AC_CHECK_FUNC([gethostbyname], , [AC_CHECK_LIB([nsl], [main], [LIBS="$LIBS -lnsl"])])
dnl
dnl ------ redis
hiredis=default
AC_SUBST([HIREDIS_LIBS])
AC_ARG_WITH([redis], [ --with-redis hiredis library],
[hiredis=$withval])
if test "$hiredis" != "no" -a "$PKG_CONFIG" != "NONE"; then
AC_CHECK_LIB([hiredis],[redisCommandArgv],[HIREDIS_LIBS=-lhiredis])
AC_MSG_CHECKING([for redis])
if $PKG_CONFIG --cflags hiredis >/dev/null 2>&1 ; then
if $PKG_CONFIG --atleast-version 0.10 hiredis; then
AC_MSG_RESULT([yes])
CFLAGS="$CFLAGS `$PKG_CONFIG --cflags hiredis`"
HIREDIS_LIBS="`$PKG_CONFIG --libs hiredis`"
AC_DEFINE([HAVE_HIREDIS],[1],[Define to 1 if hiredis is enabled])
else
AC_MSG_RESULT([no. Version 0.10 required])
if test "$hiredis" != "default"; then
AC_MSG_ERROR([hiredis libraries missing])
fi
fi
else
if test "$ac_cv_lib_hiredis_redisCommandArgv" = "yes"; then
AC_DEFINE([HAVE_HIREDIS],[1])
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
if test "$hiredis" != "default"; then
AC_MSG_ERROR([hiredis libraries missing])
fi
fi
fi
fi
dnl ------ memcached
memcached=default
AC_SUBST([MEMCACHED_LIBS])
AC_ARG_WITH([memcached], [ --with-memcached Memcached library], [memcached=$withval])
if test "$memcached" != "no" -a "$PKG_CONFIG" != "NONE"; then
AC_MSG_CHECKING([for libmemcached])
if $PKG_CONFIG --cflags libmemcached >/dev/null 2>&1 ; then
if $PKG_CONFIG --atleast-version 0.40 libmemcached; then
AC_MSG_RESULT([yes])
CFLAGS="$CFLAGS `$PKG_CONFIG --cflags libmemcached`"
MEMCACHED_LIBS="`$PKG_CONFIG --libs libmemcached`"
AC_DEFINE([HAVE_LIBMEMCACHED],[1],[Define to 1 if memcached is enabled])
else
AC_MSG_RESULT([no. Version 0.40 required])
if test "$memcached" != "default"; then
AC_MSG_ERROR([libmemcached libraries missing])
fi
fi
else
AC_MSG_RESULT([no])
if test "$memcached" != "default"; then
AC_MSG_ERROR([libmemcached libraries missing])
fi
fi
fi
dnl
dnl
dnl
dnl ------ GNU TLS
AC_SUBST([SSL_CFLAGS])
AC_SUBST([SSL_LIBS])
gnutls=default
AC_ARG_WITH([gnutls], [ --with-gnutls[=PREFIX] GNU TLS library in PREFIX],
[gnutls=$withval])
if test "$gnutls" != "no"; then
gnutlsver=no
if test "$gnutls" != "yes" -a "$gnutls" != "default"; then
if test -x $gnutls/bin/pkg-config; then
if $gnutls/bin/pkg-config --exists gnutls; then
SSL_CFLAGS=`$gnutls/bin/pkg-config --cflags gnutls`
SSL_LIBS="`$gnutls/bin/pkg-config --libs gnutls`"
gnutlsver=`$gnutls/bin/pkg-config --modversion gnutls`
fi
fi
else
if test "$PKG_CONFIG" != "NONE"; then
if $PKG_CONFIG --exists gnutls; then
SSL_CFLAGS=`$PKG_CONFIG --cflags gnutls`
SSL_LIBS="`$PKG_CONFIG --libs gnutls`"
gnutlsver=`$PKG_CONFIG --modversion gnutls`
fi
fi
fi
AC_MSG_CHECKING([for GNU TLS])
if test "$gnutlsver" != "no"; then
AC_DEFINE([HAVE_GNUTLS_H],[1],[Define to 1 if GNUTLS is present])
AC_MSG_RESULT([$gnutlsver])
else
SSL_CFLAGS=""
AC_MSG_RESULT([None])
if test "$gnutls" != "default"; then
AC_MSG_ERROR([GNU TLS development libraries missing])
fi
fi
fi
dnl
dnl ------ GNU Readline
READLINE_SHARED_LIBADD=""
AC_CHECK_LIB([ncurses],[tgetent],[READLINE_SHARED_LIBADD="-lncurses"],
AC_CHECK_LIB([termcap],[tgetent],[READLINE_SHARED_LIBADD="-ltermcap"])
)
READLINE_LIBS=""
AC_CHECK_LIB([readline],[readline],
[READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,[$READLINE_SHARED_LIBADD])
AC_CHECK_LIB([history],[add_history],
[READLINE_LIBS="$READLINE_LIBS -lhistory"])
if test "$ac_cv_lib_readline_readline" = "yes"; then
AC_CHECK_HEADERS([readline/readline.h readline/history.h])
xLIBS=$LIBS
LIBS="$LIBS $READLINE_LIBS"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <stdio.h>
#include <readline/readline.h>
]], [[
rl_attempted_completion_over = 0;
]])],[AC_DEFINE([HAVE_READLINE_COMPLETION_OVER],[1],[Define to 1 if rl_attempted_completion_over is defined])],[])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <stdio.h>
#include <readline/readline.h>
]], [[
rl_completion_matches (0, 0);
]])],
[AC_DEFINE([HAVE_READLINE_RL_COMPLETION_MATCHES],1,[Define to 1 if rl_completion_matches is defined])],[])
LIBS=$xLIBS
fi
dnl ------ iconv
AC_ARG_WITH([iconv],[ --with-iconv[=PREFIX] iconv library in PREFIX])
if test "$with_iconv" != "no"; then
AC_MSG_CHECKING([for iconv])
oldLIBS="$LIBS"
oldCPPFLAGS="${CPPFLAGS}"
if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then
LIBS="$LIBS -L${with_iconv}/lib"
CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include"
fi
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <iconv.h>
]], [[
iconv_t t = iconv_open("", "");
]])],[
AC_DEFINE([HAVE_ICONV_H],1,[Define to 1 if iconv.h is present])
AC_MSG_RESULT([yes])
],[
LIBS="$LIBS -liconv"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <iconv.h>
]],[[
iconv_t t = iconv_open("", "");
]])],[
AC_DEFINE([HAVE_ICONV_H],1)
AC_MSG_RESULT([yes])
],[
LIBS="$oldLIBS"
CPPFLAGS="$oldCPPFLAGS"
AC_MSG_RESULT([no])
])
])
fi
dnl ------ various functions
AC_CHECK_FUNCS([getaddrinfo vsnprintf gettimeofday poll strerror_r localtime_r nanosleep fopen64 open_memstream malloc_info])
if test "$ac_cv_func_getaddrinfo" = "no"; then
AC_MSG_ERROR([getaddrinfo required])
fi
case $host in
*-*-darwin*)
trypoll="no";
;;
*)
trypoll="yes";
;;
esac
if test "$ac_cv_func_poll" = "yes" -a "$trypoll" = "yes"; then
AC_CHECK_HEADERS([sys/poll.h])
fi
dnl ------ socklen_t
dnl We check for socklen_t by making prototypes with the
dnl various types. First socklen_t, then size_t, finally int.
dnl If the prototype succeeds, we are probably safe.
dnl That works if accept is not preprocessor defined (such sa AIX)
AC_MSG_CHECKING([for socklen_t])
AC_CACHE_VAL(ac_cv_check_socklen_t,[ac_cv_check_socklen_t=''
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <sys/types.h>
#include <sys/socket.h>
#ifdef __cplusplus
extern "C" {
#endif
#define try 1
#ifdef AIX
#if AIX >= 51
#define try 0
#endif
#endif
#if try
extern int accept(int, struct sockaddr *, socklen_t *);
#endif
#ifdef __cplusplus
}
#endif
]], [[]])],[ac_cv_check_socklen_t=socklen_t],[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <sys/types.h>
#include <sys/socket.h>
#ifdef __cplusplus
extern "C" {
#endif
#define try 1
#ifdef AIX
#if AIX >= 42
#define try 0
#endif
#endif
#if try
extern int accept(int, struct sockaddr *, size_t t *);
#endif
#ifdef __cplusplus
}
#endif
]],[[]])],[ac_cv_check_socklen_t=size_t],[ac_cv_check_socklen_t=int])
])
])
AC_MSG_RESULT([$ac_cv_check_socklen_t])
AC_DEFINE_UNQUOTED([YAZ_SOCKLEN_T],[$ac_cv_check_socklen_t],[socklen_t type])
dnl
dnl ------ tcpd
AC_ARG_ENABLE([tcpd],
[ --enable-tcpd[=PREFIX] enable TCP wrapper for server if available])
if test "$enable_tcpd" -a "$enable_tcpd" != "no"; then
oldLibs=$LIBS
oldCPPFLAGS=$CPPFLAGS
if test "$enable_tcpd" != "yes"; then
LIBS="$LIBS -L$enable_tcpd/lib"
CPPFLAGS="$CPPFLAGS -I$enable_tcpd/include"
fi
AC_MSG_CHECKING([for working tcpd.h])
LIBS="$LIBS -lwrap"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <syslog.h>
#include <tcpd.h>
int allow_severity = LOG_INFO;
int deny_severity = LOG_WARNING;]], [[struct request_info request_info; int i;
i = hosts_access(&request_info);]])],[tcpd_ok=1],[tcpd_ok=0])
LIBS=$oldLibs
if test "$tcpd_ok" = "0"; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([tcpd development libraries missing])
CPPFLAGS=$oldCPPFLAGS
else
TCPD_LIBS="-lwrap"
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_TCPD_H], 1, [Define to 1 if tcp wrap library is present])
fi
fi
AC_SUBST([TCPD_LIBS])
dnl
AC_SUBST([YAZ_CONFIG_CFLAGS])
dnl
dnl ------ POSIX Threads
HAVETHREADS=0
AC_ARG_ENABLE([threads],
[ --disable-threads disable POSIX threads],[enable_threads=$enableval],[enable_threads=yes])
if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then
ACX_PTHREAD([
OCFLAGS=$CFLAGS
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
dnl unfortunately empty thread lib spec is problematic because
dnl 'yaz-config --cflags' is not always passed to linker in
dnl applications using YAZ (such as Zebra).
if test "x$PTHREAD_LIBS" = "x"; then
OLIBS=$LIBS
for lib in -lpthread -lpthreads -lc_r; do
LIBS="$lib $OLIBS"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <pthread.h> ]],
[[ pthread_t id; pthread_join(id, 0); ]])],
[ PTHREAD_LIBS=$lib; break
],[])
done
LIBS=$OLIBS
fi
LIBS="$LIBS $PTHREAD_LIBS"
AC_DEFINE([YAZ_POSIX_THREADS], [1], [Define to 1 if POSIX threads is present])
YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_POSIX_THREADS=1"
])
fi
dnl ----- libXSLT/libEXLT/libXML2
AC_SUBST([XML2_CFLAGS])
xml_enabled=false
YAZ_LIBXML2([
AC_DEFINE([YAZ_HAVE_XML2], [1], [Define to 1 if Libxml2 is present])
YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XML2=1"
xml_enabled=true
])
if test "$xml_enabled" = "true"; then
YAZ_LIBXSLT([
AC_DEFINE([YAZ_HAVE_XSLT], [1], [Define to 1 if Libxslt is present])
YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_XSLT=1"
])
YAZ_LIBEXSLT([
AC_DEFINE([YAZ_HAVE_EXSLT], [1], [Define to 1 if EXSLT is present])
YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS -DYAZ_HAVE_EXSLT=1"
])
fi
YAZ_CONFIG_CFLAGS="$YAZ_CONFIG_CFLAGS $XML2_CFLAGS"
if test "$XML2_LIBS"; then
LIBS="$XML2_LIBS $LIBS"
fi
dnl
dnl
AC_CHECK_ICU([3.4],[
if test "$xml_enabled" = "true"; then
ICU_CPPFLAGS="$ICU_CPPFLAGS -DYAZ_HAVE_ICU=1"
else
ICU_CPPFLAGS=""
AC_MSG_WARN([ICU support disabled because XML support is unavailable])
fi
])
dnl ------ versioning
dnl
WIN_FILEVERSION=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { m = $4; printf("%d,%d,%d,%d", $1, $2, $3 == "" ? "0" : $3, $4 == "" ? "1" : $4);}'`
AC_SUBST([WIN_FILEVERSION])
VERSION_HEX=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { printf("%x", ($1 * 256 + $2) * 256 + $3);}'`
AC_SUBST([VERSION_HEX])
if test -d ${srcdir}/.git; then
VERSION_SHA1=`git show --pretty=format:%H|head -1`
else
VERSION_SHA1=`head -1 ${srcdir}/ChangeLog|awk '{print $2}'`
fi
AC_SUBST([VERSION_SHA1])
dnl
dnl ------ Makefiles
dnl
AC_CONFIG_FILES([
Makefile
src/Makefile
test/Makefile
util/Makefile
client/Makefile
ztest/Makefile
zoom/Makefile
doc/Makefile
doc/local0.ent
doc/common/Makefile
doc/common/print.dsl
etc/Makefile
yaz-config
yaz.pc
yaz-icu.pc
yaz-server.pc
Doxyfile
win/version.nsi
src/yaz/yaz-version.h
])
AC_CONFIG_COMMANDS([default],[
sed -e 's%echo_source=yes%echo_source=no%g; s%src_root=.*$%%g; s%build_root=.*%%g' \
< yaz-config > src/yaz-config && chmod +x yaz-config src/yaz-config
diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
|| cp doc/local0.ent doc/local.ent
],[])
AC_OUTPUT
echo \
"------------------------------------------------------------------------
Configuration:
YAZ Package: ${PACKAGE}
YAZ Version: ${VERSION}
Bugreport: ${PACKAGE_BUGREPORT}
Source code location: ${srcdir}
C Preprocessor: ${CPP}
C Preprocessor flags: ${CPPFLAGS}
C Compiler: ${CC}
C Compiler flags: ${CFLAGS}
Linker flags: ${LDFLAGS}
Linked libs: ${LIBS}
Host System Type: ${host}
Install path: ${prefix}
Automake: ${AUTOMAKE}
Archiver: ${AR}
Ranlib: ${RANLIB}
------------------------------------------------------------------------"
dnl Local Variables:
dnl mode:shell-script
dnl sh-indentation: 2
dnl sh-basic-offset: 4
dnl End: