]> git.ipfire.org Git - thirdparty/sarg.git/blame - configure.ac
Optimize away a useless strcpy.
[thirdparty/sarg.git] / configure.ac
CommitLineData
11cb1341 1dnl Process this file with autoconf or autoreconf to produce a configure script.
2fd0415d 2AC_INIT([sarg],[2.4.0-pre2])
0743911c 3AC_CONFIG_SRCDIR([log.c])
ea4317b8
FM
4AC_CONFIG_AUX_DIR([cfgaux])
5AC_CONFIG_MACRO_DIR([m4])
6
7dnl We don't use automake but the following macro is required to
8dnl install "install-sh" that is required by configure.
9dnl I may be a bug in autoconf 2.69...
10dnl But if it is enabled, the AM_GNU_GETTEXT produce a warning!
11dnl The solution for now is to manually run automake -a before
12dnl running the configure script
13dnl AM_INIT_AUTOMAKE
25697a35 14
25697a35
GS
15AC_CANONICAL_HOST
16
17AC_ARG_WITH(gcc,
2020ec6f 18AS_HELP_STRING([--without-gcc],[use CC to compile]))
25697a35
GS
19
20test -n "$CC" && cc_specified=yes
21case ${with_gcc} in
22 yes ) CC=gcc ;;
23dnl yes ) CC=g++ ;;
24 no ) CC=cc ;;
25 * ) AC_PROG_CC;;
26dnl * ) AC_PROG_CXX ;;
27esac
28
ff0eb6c5
FM
29dnl The purpose of the following condition is unknown but it is obsolete as it is.
30dnl The -Aa option produces an error claiming that some argument are missing.
31dnl if test "${CC}" = "cc" ; then
32dnl CFLAGS="${CFLAGS} -g -O2 -Aa"
33dnl fi
34
2b17869b
FM
35dnl C99 support is required to define LLONG_MAX (at least on CentOS 5.7)
36AC_PROG_CC_C99
37
ff0eb6c5 38# Report more warnings to improve code quality.
dfbbe8fa 39CFLAGS="${CFLAGS} -Wall"
05b90947 40
f6614448 41dnl Check for supported compiler options
4782357f 42
f6614448
FM
43AC_MSG_CHECKING([for extra warnings flag in $CC])
44saved_CFLAGS="${CFLAGS}"
7c9980f1 45CFLAGS="${CFLAGS} -Wextra -Wno-unused-parameter"
f6614448
FM
46AC_COMPILE_IFELSE([AC_LANG_SOURCE([])],[have_extra_warnings="yes"],[have_extra_warnings="no"])
47AC_MSG_RESULT($have_extra_warnings)
e9e69ce7 48AS_IF([test "$have_extra_warnings" = "no"],[CFLAGS="${saved_CFLAGS}"])
f6614448 49
dfbbe8fa
FM
50# Don't compare signs as it is a mess
51CFLAGS="${CFLAGS} -Wno-sign-compare"
52
f6614448 53AC_MSG_CHECKING([for implicit-function-declaration error flag in $CC])
4782357f
FM
54saved_CFLAGS="${CFLAGS}"
55CFLAGS="${CFLAGS} -Werror=implicit-function-declaration"
56AC_COMPILE_IFELSE([AC_LANG_SOURCE([])],[have_implicit_function_declaration="yes"],[have_implicit_function_declaration="no"])
57AC_MSG_RESULT($have_implicit_function_declaration)
e9e69ce7 58AS_IF([test "$have_implicit_function_declaration" = "no"],[CFLAGS="${saved_CFLAGS}"])
4782357f 59
f6614448 60AC_MSG_CHECKING([for format error flag in $CC])
4782357f
FM
61saved_CFLAGS="${CFLAGS}"
62CFLAGS="${CFLAGS} -Werror=format"
63AC_COMPILE_IFELSE([AC_LANG_SOURCE([])],[have_error_format="yes"],[have_error_format="no"])
64AC_MSG_RESULT($have_error_format)
e9e69ce7 65AS_IF([test "$have_error_format" = "no"],[CFLAGS="${saved_CFLAGS}"])
25697a35
GS
66
67case "$host" in
68 *-solaris*)
69 LDFLAGS="${LDFLAGS} -lsocket -lnsl"
70 CFLAGS="-DSOLARIS ${CFLAGS}"
71 ;;
72esac
73
74#dnl Checks for programs.
75#AC_PROG_CC
76
77dnl Check for headers
78AC_HEADER_DIRENT
79AC_HEADER_STDC
80
d6e703cc 81
25697a35 82AC_CHECK_HEADERS(stdio.h stdlib.h string.h strings.h sys/time.h time.h unistd.h sys/dirent.h \
a50c6319 83 dirent.h sys/types.h sys/socket.h netdb.h arpa/inet.h netinet/in.h sys/stat.h \
1c72006e 84 ctype.h errno.h sys/resource.h sys/wait.h stdarg.h inttypes.h limits.h locale.h \
58dfd425
FM
85 execinfo.h math.h libintl.h libgen.h stdbool.h getopt.h fcntl.h fnmatch.h \
86 winsock.h)
9b179eb0 87
e9e69ce7 88AS_IF([test $ac_cv_header_getopt_h = "no"],[AC_MSG_ERROR("getopt.h is required to compile sarg")])
25697a35 89
1c72006e
FM
90# Build with gd
91AC_ARG_WITH([gd],
82aba1f7
FM
92 AS_HELP_STRING([--with-gd],[Compile with support for the graphical gd library]),
93 [],[with_gd=check])
e9e69ce7
FM
94AS_IF([test "x$with_gd" != "xno"],
95[
1c72006e 96 AC_CHECK_HEADERS(gd.h gdfontl.h gdfontt.h gdfonts.h gdfontmb.h gdfontg.h)
e9e69ce7
FM
97 AS_IF([test "x$ac_cv_header_gd_h" = "xyes"],
98 [
8ddc656a 99 AC_CHECK_LIB(gd, gdImagePng,LIBS="-lgd ${LIBS}"; HAVE_GD_LIB="yes", HAVE_GD_LIB="")
e9e69ce7
FM
100 AS_IF([test "x$HAVE_GD_LIB" != "xyes"],
101 [
a11f0112 102 AC_MSG_ERROR([libgd is required to compile sarg with gd])
e9e69ce7
FM
103 ])
104 ],[
8ddc656a 105 gd_status="not found"
e9e69ce7
FM
106 ])
107],[
8ddc656a 108 gd_status="disabled"
e9e69ce7 109])
1c72006e
FM
110
111# Build with LDAP
112AC_ARG_WITH([ldap],
82aba1f7
FM
113 AS_HELP_STRING([--with-ldap],[Compile with LDAP support]),
114 [],[with_ldap=check])
e9e69ce7
FM
115AS_IF([test "x$with_ldap" != "xno"],
116[
62f36072 117 AC_CHECK_HEADERS([ldap_cdefs.h] [ldap_features.h] [ldap.h],,break)
e9e69ce7
FM
118 AS_IF([test "x$ac_cv_header_ldap_h" = "xyes"],
119 [
62f36072 120 AC_CHECK_LIB(ldap, ldap_init,LIBS="-lldap ${LIBS}"; HAVE_LDAP="yes", HAVE_LDAP="")
e9e69ce7 121 ],[
e9d09e79 122 ldap_status="not found"
e9e69ce7
FM
123 ])
124],[
e9d09e79 125 ldap_status="disabled"
e9e69ce7 126])
1c72006e
FM
127
128# Build with iconv
129AC_ARG_WITH([iconv],
82aba1f7
FM
130 AS_HELP_STRING([--with-iconv],[Compile with support for iconv]),
131 [],[with_iconv=check])
e9e69ce7
FM
132AS_IF([test "x$with_iconv" != "xno"],
133[
1c72006e
FM
134 dnl Check for iconv
135 AM_ICONV
e9e69ce7 136 AS_IF([test -n "$LIBICONV"],[LIBS="$LIBS $LIBICONV"])
1c72006e 137 AC_CHECK_HEADERS(iconv.h)
e9e69ce7 138],[
1c72006e 139 AC_MSG_NOTICE([Not building with iconv as requested on the configuration command line])
e9e69ce7 140])
25697a35 141
6e24f222
FM
142# Build with pcre
143AC_ARG_WITH([pcre],
82aba1f7
FM
144 AS_HELP_STRING([--with-pcre],[Compile with support for the Perl Compatible Regular Expressions library]),
145 [],[with_pcre=check])
e9e69ce7
FM
146AS_IF([test "x$with_pcre" != "xno"],
147[
6e24f222 148 AC_CHECK_HEADERS(pcre.h)
e9e69ce7
FM
149 AS_IF([test "x$ac_cv_header_pcre_h" = "xyes"],
150 [
f6185ca7 151 LIBS="$LIBS $(pcre-config --libs)"
6e24f222 152 CFLAGS="$CFLAGS $(pcre-config --cflags)"
e9e69ce7 153 ],[
6e24f222 154 pcre_status="not found"
e9e69ce7
FM
155 ])
156],[
6e24f222 157 pcre_status="disabled"
e9e69ce7 158])
25697a35 159
2b41f02c
FM
160# Build with file globbing
161AC_ARG_WITH([glob],
82aba1f7
FM
162 AS_HELP_STRING([--without-glob],[Ignore wildcards in file names]),
163 [],[with_glob=yes])
e9e69ce7
FM
164AS_IF([test "x$with_glob" != "xno"],
165[
f101e208
FM
166 AC_CHECK_HEADERS([glob.h],[],
167 [
168 AS_IF([test "x$with_glob" != "xcheck"],
169 [
170 AC_MSG_FAILURE([glob.h not found (use --without-glob to compile without file globbing)])
171 ])
172 ])
e9e69ce7 173],[
2b41f02c 174 glob_status="disabled"
e9e69ce7 175])
2b41f02c 176
800eafb8
FM
177# Build with zlib
178AC_ARG_WITH([zlib],
82aba1f7
FM
179 AS_HELP_STRING([--with-zlib],[Compile with support to decompress gz files]),
180 [],[with_zlib=check])
e9e69ce7
FM
181AS_IF([test "x$with_zlib" != "xno" ],
182[
800eafb8 183 AC_CHECK_HEADERS(zlib.h)
e9e69ce7
FM
184 AS_IF([test "x$ac_cv_header_zlib_h" = "xyes"],
185 [
68bb0f2c
FM
186 AC_CHECK_LIB([z],[gzopen],
187 [
188 LIBS="-lz ${LIBS}"
189 HAVE_ZLIB_LIB="yes"
190 ],[
191 HAVE_ZLIB_LIB=""
192 ])
e9e69ce7
FM
193 AS_IF([test "x$HAVE_ZLIB_LIB" != "xyes"],[AC_MSG_ERROR([zlib was not found])])
194 ],[
800eafb8 195 zlib_status="not found"
e9e69ce7
FM
196 ])
197],[
800eafb8 198 zlib_status="disabled"
e9e69ce7 199])
800eafb8 200
a1e4e370
FM
201# Build with bzlib
202AC_ARG_WITH([bzlib],
203 AS_HELP_STRING([--with-bzlib],[Compile with support to decompress bz2 files]),
204 [],[with_bzlib=check])
205AS_IF([test "x$with_bzlib" != "xno" ],
206[
207 AC_CHECK_HEADERS(bzlib.h)
208 AS_IF([test "x$ac_cv_header_bzlib_h" = "xyes"],
209 [
210 AC_CHECK_LIB([bz2],[BZ2_bzReadOpen],
211 [
212 LIBS="-lbz2 ${LIBS}"
213 HAVE_BZLIB_LIB="yes"
214 ],[
215 HAVE_BZLIB_LIB=""
216 ])
217 AS_IF([test "x$HAVE_BZLIB_LIB" != "xyes"],[AC_MSG_ERROR([bzlib was not found])])
218 ],[
219 bzlib_status="not found"
220 ])
221],[
222 bzlib_status="disabled"
223])
224
25697a35
GS
225dnl Checks for typedefs, structures, and compiler characteristics.
226AC_C_CONST
227AC_STRUCT_TM
228
5963cdcd
FM
229# Change the gettext version according to the available version on your system.
230# It should not be necessary to change it unless you run autoreconf -fi.
c8aad602 231AM_GNU_GETTEXT_VERSION([0.18])
095bc6be
FM
232AM_GNU_GETTEXT([external])
233
32e71fa4 234AC_SYS_LARGEFILE
d6e703cc 235
25697a35
GS
236# Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
237# needs to be defined for it
238AC_MSG_CHECKING([for fopen64])
239AC_CACHE_VAL(bu_cv_have_fopen64,
a61fe05c
FM
240[noerror_CFLAGS=$CFLAGS
241 CFLAGS="$CFLAGS -Werror"
242 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[FILE *f = fopen64 ("/tmp/foo","r");fclose(f);]])],[bu_cv_have_fopen64=yes],
243 [CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
244 AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");fclose(f);],
25697a35 245bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE",
a61fe05c
FM
246 CFLAGS=$noerror_CFLAGS
247 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[FILE *f = fopen64 ("/tmp/foo","r");fclose(f);]])],[bu_cv_have_fopen64="yes without -Werror"
248 werror_status="fail"],
249 [CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
250 AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");fclose(f);],
251bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE and no -Werror"
252werror_status="fail",
253bu_cv_have_fopen64=no)]))
254 ])
255 CFLAGS=$noerror_CFLAGS])
25697a35 256AC_MSG_RESULT($bu_cv_have_fopen64)
e9e69ce7
FM
257AS_IF([test "$bu_cv_have_fopen64" != no],
258[
259 AC_DEFINE([HAVE_FOPEN64],1,[Is fopen64 available?])
260 AS_IF([test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE"],
261 [
262 AC_DEFINE([_LARGEFILE64_SOURCE],1,[Enable LFS])
263 ])
264])
25697a35 265
40d681bc 266dnl check for functions
e6414a9d 267AC_CHECK_FUNCS(backtrace)
b5f13803 268AC_CHECK_FUNCS(symlink)
d9c45e9c 269AC_CHECK_FUNCS(lstat)
72c27633 270AC_CHECK_FUNCS(getnameinfo)
4afbb7a5 271AC_CHECK_FUNCS(getaddrinfo)
d7cb0aec 272AC_CHECK_FUNCS(mkstemp)
6068ae56 273AC_CHECK_FUNCS(fnmatch)
32e71fa4 274
a50c6319
FM
275dnl check for structure members
276AC_CHECK_MEMBER([struct sockaddr_storage.ss_len],[AC_DEFINE([HAVE_SOCKADDR_SA_LEN],1,[ss_len in sockaddr_storage])])
277
cda22ffb 278dnl windows require this library
e9e69ce7
FM
279AS_IF([test $ac_cv_header_winsock_h = "yes"],
280[
cda22ffb 281# AC_CHECK_LIBS([ws2_32],[WSAGetLastError]) fails because of the __stdcall in the function prototype
e9e69ce7
FM
282 LIBS="$LIBS -lws2_32"
283])
cda22ffb 284
32e71fa4
FM
285dnl check for the rlim_t size
286AC_CHECK_SIZEOF(rlim_t,1,[#if HAVE_SYS_RESOURCE_H
287#include <sys/resource.h>
288#endif
289])
e9e69ce7
FM
290AS_IF([test $ac_cv_sizeof_rlim_t = "4"],
291[
292 AC_DEFINE(RLIM_STRING, "%d", [Rlim string])
293],[test $ac_cv_sizeof_rlim_t = "8"],
294[
295 AC_DEFINE(RLIM_STRING, "%lli", [Rlim string])
296],[
297 AC_MSG_WARN([can not detect the size of your system rlim_t type])
298])
32e71fa4 299
2b17869b
FM
300dnl check for the long long int max constant
301AC_CHECK_DECL(LLONG_MAX,HAVE_LLONG_MAX="yes",HAVE_LLONG_MAX="no",[[#include <limits.h>]])
e9e69ce7
FM
302AS_IF([test "x$ac_cv_have_decl_LLONG_MAX" != "xyes"],
303[
2b17869b 304 AC_MSG_ERROR([LLONG_MAX is not defined on your system.])
e9e69ce7 305])
2b17869b 306
7bbc1de4
FM
307dnl Select sarg-php directory
308AC_ARG_ENABLE(sargphp,
82aba1f7
FM
309 AS_HELP_STRING([--enable-sargphp=sargphpdir],
310 [Select sargphpdir as the directory to install sarg-php into]),
311 [
312 AS_IF([test "$enableval" -a "x$enableval" != "xno"],[SARGPHPDIR=$enableval])
313 ],[SARGPHPDIR="/var/www/html"])
e9e69ce7
FM
314AS_IF([test "$SARGPHPDIR"],
315[
316 AC_MSG_NOTICE([using $SARGPHPDIR as the directory to install sarg-php])
317 AC_SUBST(SARGPHPDIR)
318])
25697a35 319
b3695c67
FM
320dnl Select fonts dir
321AC_ARG_ENABLE(fontdir,
82aba1f7
FM
322 AS_HELP_STRING([--enable-fontdir=fontdir],
323 [Select fontdir as the directory with the fonts to use in the reports]),
324 [
325 AS_IF([test "$enableval" -a "x$enableval" != "xno"],[FONTDIR=$enableval])
326 ],[FONTDIR="${datarootdir}/sarg/fonts"])
e9e69ce7
FM
327AS_IF([test "$FONTDIR"],
328[
329 AS_IF([test "x$prefix" = "xNONE"],
330 [
331 tempfullpath=`prefix=$ac_default_prefix ; eval "echo $FONTDIR"`
332 ],[
333 tempfullpath=`eval "echo $FONTDIR"`
334 ])
335 AC_MSG_NOTICE([using $tempfullpath as the directory of the fonts])
336 AC_SUBST(FONTDIR)
337])
b3695c67
FM
338
339dnl Select images dir
340AC_ARG_ENABLE(imagedir,
82aba1f7
FM
341 AS_HELP_STRING([--enable-imagedir=imagedir],
342 [Select imagedir as the directory with the images to use in the reports]),
343 [
344 AS_IF([test "$enableval"],[IMAGEDIR=$enableval])
345 ],[IMAGEDIR="${datarootdir}/sarg/images"])
e9e69ce7
FM
346AS_IF([test "x$prefix" = "xNONE"],
347[
348 tempfullpath=`prefix=$ac_default_prefix ; eval "echo $IMAGEDIR"`
349],[
350 tempfullpath=`eval "echo $IMAGEDIR"`
351])
d2eb201c 352AC_MSG_NOTICE([using $tempfullpath as the directory of the images])
b3695c67
FM
353AC_SUBST(IMAGEDIR)
354
05b90947
FM
355dnl Enable extra compile and run time protection
356AC_ARG_ENABLE(extraprotection,
82aba1f7
FM
357 AS_HELP_STRING([--enable-extraprotection],
358 [Enable compile and runtime extra protections]),
05b90947 359[
e9e69ce7
FM
360 AS_IF([test "$enableval"],
361 [
362 # _FORTIFY_SOURCE may have been defined by the system. It must be undefined before it is changed to the value we want.
363 CFLAGS="${CFLAGS} -fstack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2"
364 AS_IF([test "x$werror_status" != "xfail"],[CFLAGS="${CFLAGS} -Werror"])
365
366 AC_MSG_CHECKING([for format security flag in $CC])
367 saved_CFLAGS="${CFLAGS}"
368 CFLAGS="${CFLAGS} -Wformat -Werror=format-security"
369 AC_COMPILE_IFELSE([AC_LANG_SOURCE([])],[have_format_security="yes"],[have_format_security="no"])
370 AC_MSG_RESULT($have_format_security)
371 AS_IF([test "$have_format_security" = "no"],[CFLAGS="${saved_CFLAGS}"])
372
373 AC_MSG_CHECKING([for empty body flag in $CC])
374 saved_CFLAGS="${CFLAGS}"
375 CFLAGS="${CFLAGS} -Wempty-body"
376 AC_COMPILE_IFELSE([AC_LANG_SOURCE([])],[have_empty_body="yes"],[have_empty_body="no"])
377 AC_MSG_RESULT($have_empty_body)
378 AS_IF([test "$have_empty_body" = "no"],[CFLAGS="${saved_CFLAGS}"])
379 ])
feba7d37 380])
05b90947 381
65b4ec2c
FM
382dnl Enable double check of the data written in the reports
383AC_ARG_ENABLE(doublecheck,
82aba1f7
FM
384 AS_HELP_STRING([--enable-doublecheck],
385 [Make sarg double check the data it manipulates and output a warning if an error is found]),
65b4ec2c 386[
e9e69ce7
FM
387 AS_IF([test "$enableval"],
388 [
389 AC_DEFINE(ENABLE_DOUBLE_CHECK_DATA)
390 ])
65b4ec2c
FM
391])
392
a640023b
FM
393dnl Get the xsl stylesheet to produce the manpage
394AC_ARG_ENABLE(xsl-man,
82aba1f7
FM
395 AS_HELP_STRING([--enable-xsl-man=man-xsl-style-sheet],
396 [Select the directory containing the the XSL stylesheets to convert DocBook into man page]),
a640023b 397[
e9e69ce7
FM
398 AS_IF([test "$enableval"],
399 [
a640023b
FM
400 XSL_MAN_STYLESHEET=$enableval
401 AC_SUBST(XSL_MAN_STYLESHEET)
e9e69ce7 402 ])
a640023b
FM
403],
404AC_CHECK_FILES([/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl],
405[
406 # debian
407 XSL_MAN_STYLESHEET="/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl"
408 AC_SUBST(XSL_MAN_STYLESHEET)
82aba1f7
FM
409],[
410 AC_CHECK_FILES([/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl],
411 [
412 # gentoo
413 XSL_MAN_STYLESHEET="/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl"
414 AC_SUBST(XSL_MAN_STYLESHEET)
415 ])
a640023b
FM
416]))
417
418dnl Get the xsl stylesheet to produce the html page
419AC_ARG_ENABLE(xsl-html,
82aba1f7
FM
420 AS_HELP_STRING([--enable-xsl-html=html-xsl-style-sheet],
421 [Select the directory containing the the XSL stylesheets to convert DocBook into html page]),
a640023b 422[
e9e69ce7
FM
423 AS_IF([test "$enableval"],
424 [
a640023b
FM
425 XSL_HTML_STYLESHEET=$enableval
426 AC_SUBST(XSL_HTML_STYLESHEET)
e9e69ce7 427 ])
a640023b
FM
428],
429AC_CHECK_FILES([/usr/share/sgml/docbook/stylesheet/xsl/docbook-xsl/html/onechunk.xsl],
430[
431 # debian
432 XSL_HTML_STYLESHEET="/usr/share/sgml/docbook/stylesheet/xsl/docbook-xsl/html/onechunk.xsl"
433 AC_SUBST(XSL_HTML_STYLESHEET)
434],
435[
436AC_CHECK_FILES([/usr/share/sgml/docbook/xsl-stylesheets/html/onechunk.xsl],
437[
438 # gentoo
439 XSL_HTML_STYLESHEET="/usr/share/sgml/docbook/xsl-stylesheets/html/onechunk.xsl"
440 AC_SUBST(XSL_HTML_STYLESHEET)
d89f1394 441])
a640023b
FM
442]))
443
b6b2e9a9
FM
444AC_SUBST(PACKAGE,"$PACKAGE_NAME")
445AC_SUBST(VERSION,"$PACKAGE_VERSION")
446
095bc6be 447AC_CONFIG_FILES([Makefile po/Makefile.in])
0743911c 448AC_OUTPUT
8ddc656a 449
e9e69ce7 450AS_IF([test "x$gd_status" = "xdisabled"],[
8ddc656a 451 AC_MSG_NOTICE([Not building with gd as requested on the configuration command line])
e9e69ce7 452],[test "x$gd_status" = "xnot found"],[
8ddc656a 453 AC_MSG_NOTICE([gd.h was not found so the graphs won't be available in the report])
e9e69ce7 454])
6e24f222 455
e9e69ce7 456AS_IF([test "x$pcre_status" = "xdisabled"],[
6e24f222 457 AC_MSG_NOTICE([Not building with pcre as requested on the configuration command line])
e9e69ce7 458],[test "x$pcre_status" = "xnot found"],[
ea9c71bf 459 AC_MSG_NOTICE([pcre.h was not found so the regexp won't be available in hostalias])
e9e69ce7 460])
e9d09e79 461
e9e69ce7 462AS_IF([test "x$ldap_status" = "xdisabled"],[
e9d09e79 463 AC_MSG_NOTICE([Not building with LDAP support as requested on the configuration command line])
e9e69ce7 464],[test "x$ldap_status" = "xnot found"],[
e9d09e79 465 AC_MSG_NOTICE([ldap header files not found so LDAP is not available to resolve user's names])
e9e69ce7 466])
2b41f02c 467
e9e69ce7 468AS_IF([test "x$glob_status" = "xdisabled"],[
2b41f02c 469 AC_MSG_NOTICE([Not building with file globbing as requested on the configuration command line])
e9e69ce7 470])
800eafb8 471
e9e69ce7 472AS_IF([test "x$zlib_status" = "xdisabled"],[
800eafb8 473 AC_MSG_NOTICE([Not building with zlib as requested on the configuration command line])
e9e69ce7 474],[test "x$zlib_status" = "xnot found"],[
800eafb8 475 AC_MSG_NOTICE([zlib.h was not found so it won't be possible to process gzipped files])
e9e69ce7 476])
a1e4e370
FM
477
478AS_IF([test "x$bzlib_status" = "xdisabled"],[
479 AC_MSG_NOTICE([Not building with bzlib as requested on the configuration command line])
480],[test "x$bzlib_status" = "xnot found"],[
481 AC_MSG_NOTICE([bzlib.h was not found so it won't be possible to process bzipped files])
482])