]> git.ipfire.org Git - thirdparty/collectd.git/blame - configure.in
Bump version to 5.3.0; Update ChangeLog.
[thirdparty/collectd.git] / configure.in
CommitLineData
86ca149a 1dnl Process this file with autoconf to produce a configure script.
4b849301 2AC_INIT(collectd, [m4_esyscmd(./version-gen.sh)])
6e765a02
FF
3AC_CONFIG_SRCDIR(src/collectd.c)
4AC_CONFIG_HEADERS(src/config.h)
e82cc54a 5AC_CONFIG_AUX_DIR([libltdl/config])
65e2acb6
SH
6
7m4_ifdef([LT_PACKAGE_VERSION],
8 # libtool >= 2.2
9 [
10 LT_CONFIG_LTDL_DIR([libltdl])
11 LT_INIT([dlopen])
12 LTDL_INIT([convenience])
47f2b4a9 13 AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.])
65e2acb6
SH
14 ]
15,
16 # libtool <= 1.5
17 [
18 AC_LIBLTDL_CONVENIENCE
19 AC_SUBST(LTDLINCL)
20 AC_SUBST(LIBLTDL)
21 AC_LIBTOOL_DLOPEN
22 AC_CONFIG_SUBDIRS(libltdl)
47f2b4a9 23 AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.])
65e2acb6
SH
24 ]
25)
26
908ffa99 27AM_INIT_AUTOMAKE([tar-pax dist-bzip2])
86ca149a
FF
28AC_LANG(C)
29
30AC_PREFIX_DEFAULT("/opt/collectd")
31
9e7918de
SH
32AC_SYS_LARGEFILE
33
15996f86
FF
34#
35# Checks for programs.
36#
86ca149a
FF
37AC_PROG_CC
38AC_PROG_CPP
39AC_PROG_INSTALL
40AC_PROG_LN_S
41AC_PROG_MAKE_SET
30f3e7b8 42AM_PROG_CC_C_O
586eed68 43AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
86ca149a 44
86ca149a 45AC_DISABLE_STATIC
86ca149a 46AC_PROG_LIBTOOL
108c20b2
FF
47AC_PROG_LEX
48AC_PROG_YACC
249d5776 49PKG_PROG_PKG_CONFIG
86ca149a 50
5f4c4a17 51AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no])
418f91fb
FF
52AC_CHECK_HEADERS([google/protobuf-c/protobuf-c.h],
53 [have_protobuf_c_h="yes"],
54 [have_protobuf_c_h="no"])
8a09193a
FF
55if test "x$have_protoc_c" = "xyes" && test "x$have_protobuf_c_h" != "xyes"
56then
418f91fb 57 have_protoc_c="no (unable to find <google/protobuf-c/protobuf-c.h>)"
8a09193a 58fi
5f4c4a17 59AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")
23a8901d 60
af18c7e0
FF
61AC_MSG_CHECKING([for kernel type ($host_os)])
62case $host_os in
63 *linux*)
64 AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
65 ac_system="Linux"
66 ;;
67 *solaris*)
68 AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
69 ac_system="Solaris"
70 ;;
29f72849
FF
71 *darwin*)
72 ac_system="Darwin"
af18c7e0 73 ;;
7132090f
FF
74 *openbsd*)
75 ac_system="OpenBSD"
76 ;;
11b1e65a
MS
77 *aix*)
78 AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
79 ac_system="AIX"
80 ;;
af18c7e0
FF
81 *)
82 ac_system="unknown"
83esac
84AC_MSG_RESULT([$ac_system])
85
9bf39535
BB
86if test "x$ac_system" = "xLinux"
87then
88 AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
89 if test -z "$KERNEL_DIR"
90 then
91 KERNEL_DIR="/lib/modules/`uname -r`/source"
92 fi
93
94 KERNEL_CFLAGS="-I$KERNEL_DIR/include"
95 AC_SUBST(KERNEL_CFLAGS)
96fi
97
1862f170
FF
98if test "x$ac_system" = "xSolaris"
99then
7bec4afe 100 AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
101c7c00 101 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
1862f170 102fi
13cbf9d4
AR
103if test "x$ac_system" = "xAIX"
104then
105 AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
106fi
1862f170 107
9ece08de
FF
108# Where to install .pc files.
109pkgconfigdir="${libdir}/pkgconfig"
110AC_SUBST(pkgconfigdir)
111
7bec4afe
FF
112# Check for standards compliance mode
113AC_ARG_ENABLE(standards,
114 AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
115 [enable_standards="$enableval"],
116 [enable_standards="no"])
117if test "x$enable_standards" = "xyes"
118then
119 AC_DEFINE(_ISOC99_SOURCE, 1, [Define to enforce ISO C99 compliance.])
c1f003b7
FF
120 AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
121 AC_DEFINE(_XOPEN_SOURCE, 700, [Define to enforce X/Open 7 (XSI) compliance.])
7bec4afe 122 AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.])
c1f003b7
FF
123 if test "x$GCC" = "xyes"
124 then
125 CFLAGS="$CFLAGS -std=c99"
126 fi
7bec4afe
FF
127fi
128AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
129
15996f86
FF
130#
131# Checks for header files.
132#
e708ae9b 133AC_HEADER_STDC
86ca149a 134AC_HEADER_SYS_WAIT
6e765a02 135AC_HEADER_DIRENT
9e0809db 136AC_HEADER_STDBOOL
a905d397 137
76910471 138AC_CHECK_HEADERS(stdio.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h endian.h sys/isa_defs.h fnmatch.h libgen.h)
15996f86 139
c9a5b034 140# For ping library
6934b3d0
FF
141AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
142[#if HAVE_STDINT_H
143# include <stdint.h>
144#endif
ac491e03
FF
145#if HAVE_SYS_TYPES_H
146# include <sys/types.h>
147#endif
6934b3d0 148])
c9a5b034 149AC_CHECK_HEADERS(netinet/in.h, [], [],
6934b3d0
FF
150[#if HAVE_STDINT_H
151# include <stdint.h>
152#endif
ac491e03
FF
153#if HAVE_SYS_TYPES_H
154# include <sys/types.h>
155#endif
6934b3d0 156#if HAVE_NETINET_IN_SYSTM_H
c9a5b034
FF
157# include <netinet/in_systm.h>
158#endif
159])
160AC_CHECK_HEADERS(netinet/ip.h, [], [],
6934b3d0
FF
161[#if HAVE_STDINT_H
162# include <stdint.h>
163#endif
ac491e03
FF
164#if HAVE_SYS_TYPES_H
165# include <sys/types.h>
166#endif
6934b3d0 167#if HAVE_NETINET_IN_SYSTM_H
c9a5b034
FF
168# include <netinet/in_systm.h>
169#endif
170#if HAVE_NETINET_IN_H
171# include <netinet/in.h>
172#endif
173])
174AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
6934b3d0
FF
175[#if HAVE_STDINT_H
176# include <stdint.h>
177#endif
ac491e03
FF
178#if HAVE_SYS_TYPES_H
179# include <sys/types.h>
180#endif
6934b3d0 181#if HAVE_NETINET_IN_SYSTM_H
c9a5b034
FF
182# include <netinet/in_systm.h>
183#endif
184#if HAVE_NETINET_IN_H
185# include <netinet/in.h>
186#endif
187#if HAVE_NETINET_IP_H
188# include <netinet/ip.h>
189#endif
190])
191AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
6934b3d0
FF
192[#if HAVE_STDINT_H
193# include <stdint.h>
194#endif
ac491e03
FF
195#if HAVE_SYS_TYPES_H
196# include <sys/types.h>
197#endif
6934b3d0 198#if HAVE_NETINET_IN_SYSTM_H
c9a5b034
FF
199# include <netinet/in_systm.h>
200#endif
201#if HAVE_NETINET_IN_H
202# include <netinet/in.h>
203#endif
204#if HAVE_NETINET_IP_H
205# include <netinet/ip.h>
206#endif
207])
208AC_CHECK_HEADERS(netinet/ip6.h, [], [],
6934b3d0
FF
209[#if HAVE_STDINT_H
210# include <stdint.h>
211#endif
6fe07031
FF
212#if HAVE_SYS_TYPES_H
213# include <sys/types.h>
214#endif
6934b3d0 215#if HAVE_NETINET_IN_SYSTM_H
c9a5b034
FF
216# include <netinet/in_systm.h>
217#endif
218#if HAVE_NETINET_IN_H
219# include <netinet/in.h>
220#endif
221])
222AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
6934b3d0
FF
223[#if HAVE_STDINT_H
224# include <stdint.h>
225#endif
6fe07031
FF
226#if HAVE_SYS_TYPES_H
227# include <sys/types.h>
228#endif
6934b3d0 229#if HAVE_NETINET_IN_SYSTM_H
c9a5b034
FF
230# include <netinet/in_systm.h>
231#endif
232#if HAVE_NETINET_IN_H
233# include <netinet/in.h>
234#endif
235#if HAVE_NETINET_IP6_H
236# include <netinet/ip6.h>
237#endif
238])
79d36d9e
FF
239AC_CHECK_HEADERS(netinet/tcp.h, [], [],
240[#if HAVE_STDINT_H
241# include <stdint.h>
242#endif
243#if HAVE_SYS_TYPES_H
244# include <sys/types.h>
245#endif
246#if HAVE_NETINET_IN_SYSTM_H
247# include <netinet/in_systm.h>
248#endif
249#if HAVE_NETINET_IN_H
250# include <netinet/in.h>
251#endif
252#if HAVE_NETINET_IP_H
253# include <netinet/ip.h>
254#endif
255])
5b9d0a2b
FF
256AC_CHECK_HEADERS(netinet/udp.h, [], [],
257[#if HAVE_STDINT_H
258# include <stdint.h>
259#endif
260#if HAVE_SYS_TYPES_H
261# include <sys/types.h>
262#endif
263#if HAVE_NETINET_IN_SYSTM_H
264# include <netinet/in_systm.h>
265#endif
266#if HAVE_NETINET_IN_H
267# include <netinet/in.h>
268#endif
269#if HAVE_NETINET_IP_H
270# include <netinet/ip.h>
271#endif
272])
c9a5b034 273
e1d497b7 274# For cpu modules
af18c7e0 275AC_CHECK_HEADERS(sys/dkstat.h)
29f72849 276if test "x$ac_system" = "xDarwin"
af18c7e0
FF
277then
278 AC_CHECK_HEADERS(mach/mach_init.h mach/host_priv.h mach/mach_error.h mach/mach_host.h mach/mach_port.h mach/mach_types.h mach/message.h mach/processor_set.h mach/processor.h mach/processor_info.h mach/task.h mach/thread_act.h mach/vm_region.h mach/vm_map.h mach/vm_prot.h mach/vm_statistics.h mach/kern_return.h)
279 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
90151473
RK
280 # For the battery plugin
281 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
282[
283#if HAVE_IOKIT_IOKITLIB_H
284# include <IOKit/IOKitLib.h>
285#endif
286#if HAVE_IOKIT_IOTYPES_H
287# include <IOKit/IOTypes.h>
288#endif
289])
290
af18c7e0 291fi
90151473 292
d4b36462
FF
293AC_CHECK_HEADERS(sys/sysctl.h, [], [],
294[
295#if HAVE_SYS_TYPES_H
296# include <sys/types.h>
297#endif
298#if HAVE_SYS_PARAM_H
299# include <sys/param.h>
300#endif
301])
e1d497b7 302
917d7fa8
DM
303AC_MSG_CHECKING([for sysctl kern.cp_times])
304if test -x /sbin/sysctl
305then
3ed2b5f9 306 /sbin/sysctl kern.cp_times 2>/dev/null
917d7fa8
DM
307 if test $? -eq 0
308 then
309 AC_MSG_RESULT([yes])
310 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
311 [Define if sysctl supports kern.cp_times])
312 else
313 AC_MSG_RESULT([no])
314 fi
315else
316 AC_MSG_RESULT([no])
317fi
318
46ed2804 319# For hddtemp module
76910471 320AC_CHECK_HEADERS(linux/major.h)
46ed2804 321
9ce2a30d
MH
322# For md module (Linux only)
323if test "x$ac_system" = "xLinux"
324then
325 AC_CHECK_HEADERS(linux/raid/md_u.h,
326 [have_linux_raid_md_u_h="yes"],
327 [have_linux_raid_md_u_h="no"],
328[
329#include <sys/ioctl.h>
330#include <linux/major.h>
331#include <linux/types.h>
332])
333else
334 have_linux_raid_md_u_h="no"
335fi
336
72a6ea58
FF
337# For the swap module
338have_linux_wireless_h="no"
339if test "x$ac_system" = "xLinux"
340then
341 AC_CHECK_HEADERS(linux/wireless.h,
342 [have_linux_wireless_h="yes"],
343 [have_linux_wireless_h="no"],
344[
345#include <dirent.h>
346#include <sys/ioctl.h>
347#include <sys/socket.h>
348])
349fi
350
daedf582 351# For the swap module
1862f170 352have_sys_swap_h="yes"
168e7401 353AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
d4b36462 354[
799daf94
DM
355#undef _FILE_OFFSET_BITS
356#undef _LARGEFILE64_SOURCE
d4b36462
FF
357#if HAVE_SYS_TYPES_H
358# include <sys/types.h>
359#endif
360#if HAVE_SYS_PARAM_H
361# include <sys/param.h>
362#endif
363])
daedf582 364
1862f170
FF
365if test "x$have_sys_swap_h$ac_system" = "xnoSolaris"
366then
78097289
DM
367 hint_64=""
368 if test "x$GCC" = "xyes"
369 then
39f3ecb1 370 hint_64="CFLAGS='-m64'"
78097289 371 else
39f3ecb1 372 hint_64="CFLAGS='-xarch=v9'"
78097289
DM
373 fi
374 AC_MSG_NOTICE([Solaris detected and sys/swap.h not usable. Try building a 64-bit binary ($hint_64 ./configure).])
1862f170
FF
375fi
376
15996f86 377# For load module
44a3f33a 378# For the processes plugin
15996f86 379# For users module
e4080f7a 380AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
86ca149a 381
3268a333 382# For interface plugin
a05e34a0 383AC_CHECK_HEADERS(ifaddrs.h)
cd377858
FF
384AC_CHECK_HEADERS(net/if.h, [], [],
385[
386#if HAVE_SYS_TYPES_H
387# include <sys/types.h>
388#endif
389#if HAVE_SYS_SOCKET_H
390# include <sys/socket.h>
391#endif
392])
a05e34a0
FF
393AC_CHECK_HEADERS(linux/if.h, [], [],
394[
395#if HAVE_SYS_TYPES_H
396# include <sys/types.h>
397#endif
398#if HAVE_SYS_SOCKET_H
399# include <sys/socket.h>
400#endif
401])
402AC_CHECK_HEADERS(linux/netdevice.h, [], [],
403[
404#if HAVE_SYS_TYPES_H
405# include <sys/types.h>
406#endif
407#if HAVE_SYS_SOCKET_H
408# include <sys/socket.h>
409#endif
410#if HAVE_LINUX_IF_H
411# include <linux/if.h>
412#endif
413])
414
8ae25a97
FF
415# For ethstat module
416AC_CHECK_HEADERS(linux/sockios.h,
417 [have_linux_sockios_h="yes"],
418 [have_linux_sockios_h="no"],
419 [
420#if HAVE_SYS_IOCTL_H
421# include <sys/ioctl.h>
422#endif
423#if HAVE_NET_IF_H
424# include <net/if.h>
425#endif
426 ])
427AC_CHECK_HEADERS(linux/ethtool.h,
428 [have_linux_ethtool_h="yes"],
429 [have_linux_ethtool_h="no"],
430 [
431#if HAVE_SYS_IOCTL_H
432# include <sys/ioctl.h>
433#endif
434#if HAVE_NET_IF_H
435# include <net/if.h>
436#endif
437#if HAVE_LINUX_SOCKIOS_H
438# include <linux/sockios.h>
439#endif
440 ])
441
fb3a07dc 442# For ipvs module
d87bf146 443have_linux_ip_vs_h="no"
fb3a07dc
SH
444have_net_ip_vs_h="no"
445have_ip_vs_h="no"
d87bf146 446ip_vs_h_needs_kernel_cflags="no"
fb3a07dc
SH
447if test "x$ac_system" = "xLinux"
448then
d87bf146 449 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
fb3a07dc
SH
450 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
451 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
9bf39535 452
d87bf146
SH
453 if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
454 then
455 SAVE_CFLAGS="$CFLAGS"
456 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
457
458 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
459
460 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
461 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
462 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
463
464 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
465 then
466 ip_vs_h_needs_kernel_cflags="yes"
467 fi
468
469 CFLAGS="$SAVE_CFLAGS"
470 fi
fb3a07dc 471fi
d87bf146 472AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
fb3a07dc 473
6e765a02 474# For quota module
d4b36462
FF
475AC_CHECK_HEADERS(sys/ucred.h, [], [],
476[
477#if HAVE_SYS_TYPES_H
478# include <sys/types.h>
479#endif
480#if HAVE_SYS_PARAM_H
481# include <sys/param.h>
482#endif
483])
6e765a02
FF
484
485# For mount interface
d4b36462
FF
486AC_CHECK_HEADERS(sys/mount.h, [], [],
487[
488#if HAVE_SYS_TYPES_H
489# include <sys/types.h>
490#endif
491#if HAVE_SYS_PARAM_H
492# include <sys/param.h>
493#endif
494])
28c5e282 495
fc257d86
SH
496# For the email plugin
497AC_CHECK_HEADERS(linux/un.h, [], [],
498[
499#if HAVE_SYS_SOCKET_H
500# include <sys/socket.h>
501#endif
502])
fc257d86 503
7bec4afe 504AC_CHECK_HEADERS(pwd.h grp.h sys/un.h ctype.h limits.h xfs/xqm.h fs_info.h fshelp.h paths.h mntent.h mnttab.h sys/fstyp.h sys/fs_types.h sys/mntent.h sys/mnttab.h sys/statfs.h sys/statvfs.h sys/vfs.h sys/vfstab.h kvm.h wordexp.h)
ec88fb0e 505
fdfbf887 506# For the dns plugin
e0a11961
FF
507AC_CHECK_HEADERS(arpa/nameser.h)
508AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
509[
510#if HAVE_ARPA_NAMESER_H
511# include <arpa/nameser.h>
512#endif
513])
c4377c1e 514
e94efcbe
FF
515AC_CHECK_HEADERS(net/if_arp.h, [], [],
516[#if HAVE_SYS_SOCKET_H
517# include <sys/socket.h>
518#endif
519])
e40574f3
FF
520AC_CHECK_HEADERS(net/ppp_defs.h)
521AC_CHECK_HEADERS(net/if_ppp.h, [], [],
522[#if HAVE_NET_PPP_DEFS_H
523# include <net/ppp_defs.h>
524#endif
525])
e94efcbe
FF
526AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
527[#if HAVE_STDINT_H
528# include <stdint.h>
529#endif
530#if HAVE_SYS_TYPES_H
531# include <sys/types.h>
532#endif
533#if HAVE_SYS_SOCKET_H
534# include <sys/socket.h>
535#endif
536#if HAVE_NET_IF_H
537# include <net/if.h>
538#endif
539#if HAVE_NETINET_IN_H
540# include <netinet/in.h>
541#endif
542])
dd7a9bc9 543
4b3e4116
SH
544AC_CHECK_HEADERS(netinet/ip_compat.h)
545
43bc16aa 546have_net_pfvar_h="no"
b5a82d63
FF
547AC_CHECK_HEADERS(net/pfvar.h,
548 [have_net_pfvar_h="yes"],
549 [have_net_pfvar_h="no"],
550[
551#if HAVE_SYS_IOCTL_H
552# include <sys/ioctl.h>
553#endif
554#if HAVE_SYS_SOCKET_H
555# include <sys/socket.h>
556#endif
557#if HAVE_NET_IF_H
558# include <net/if.h>
559#endif
560])
43bc16aa 561
51e70a99 562# For the multimeter plugin
3fc0feb6
FF
563have_termios_h="no"
564AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
51e70a99 565
15996f86
FF
566#
567# Checks for typedefs, structures, and compiler characteristics.
568#
86ca149a
FF
569AC_C_CONST
570AC_TYPE_PID_T
571AC_TYPE_SIZE_T
7df03651 572AC_TYPE_UID_T
86ca149a
FF
573AC_HEADER_TIME
574
15996f86
FF
575#
576# Checks for library functions.
577#
86ca149a 578AC_PROG_GCC_TRADITIONAL
37676c3b 579AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog sysconf setenv if_indextoname)
15996f86 580
fa7db5e9
SH
581AC_FUNC_STRERROR_R
582
c4e077cc
FF
583SAVE_CFLAGS="$CFLAGS"
584# Emulate behavior of src/Makefile.am
585if test "x$GCC" = "xyes"
586then
587 CFLAGS="$CFLAGS -Wall -Werror"
588fi
589
0c06f2fa 590AC_CACHE_CHECK([for strtok_r],
5f5da97b 591 [c_cv_have_strtok_r_default],
0c06f2fa 592 AC_LINK_IFELSE(
ce8b96ae 593 [AC_LANG_PROGRAM(
e0552af6 594[[[
0c06f2fa
FF
595#include <stdlib.h>
596#include <stdio.h>
597#include <string.h>
e0552af6
FF
598]]],
599[[[
0c06f2fa
FF
600 char buffer[] = "foo,bar,baz";
601 char *token;
602 char *dummy;
603 char *saveptr;
604
605 dummy = buffer;
606 saveptr = NULL;
607 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
608 {
ce8b96ae 609 dummy = NULL;
0c06f2fa
FF
610 printf ("token = %s;\n", token);
611 }
e0552af6
FF
612]]]
613 )],
5f5da97b
SH
614 [c_cv_have_strtok_r_default="yes"],
615 [c_cv_have_strtok_r_default="no"]
0c06f2fa
FF
616 )
617)
618
5f5da97b 619if test "x$c_cv_have_strtok_r_default" = "xno"
0c06f2fa 620then
0c06f2fa
FF
621 CFLAGS="$CFLAGS -D_REENTRANT=1"
622
623 AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
5f5da97b 624 [c_cv_have_strtok_r_reentrant],
0c06f2fa 625 AC_LINK_IFELSE(
ce8b96ae 626 [AC_LANG_PROGRAM(
e0552af6 627[[[
0c06f2fa
FF
628#include <stdlib.h>
629#include <stdio.h>
630#include <string.h>
e0552af6
FF
631]]],
632[[[
0c06f2fa
FF
633 char buffer[] = "foo,bar,baz";
634 char *token;
635 char *dummy;
636 char *saveptr;
637
638 dummy = buffer;
639 saveptr = NULL;
640 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
641 {
ce8b96ae 642 dummy = NULL;
0c06f2fa
FF
643 printf ("token = %s;\n", token);
644 }
e0552af6
FF
645]]]
646 )],
5f5da97b 647 [c_cv_have_strtok_r_reentrant="yes"],
0c06f2fa
FF
648 [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
649 )
650 )
651fi
652
c4e077cc
FF
653CFLAGS="$SAVE_CFLAGS"
654if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
655then
656 CFLAGS="$CFLAGS -D_REENTRANT=1"
657fi
658
b5c58909 659AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
d6bb65ee 660
d89f6dc3
FF
661socket_needs_socket="no"
662AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
663AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
664
1c2e2427
FF
665clock_gettime_needs_rt="no"
666clock_gettime_needs_posix4="no"
5c4d2189
FF
667have_clock_gettime="no"
668AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
669if test "x$have_clock_gettime" = "xno"
670then
671 AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
672 have_clock_gettime="yes"])
673fi
674if test "x$have_clock_gettime" = "xno"
675then
676 AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
677 have_clock_gettime="yes"])
678fi
679if test "x$have_clock_gettime" = "xyes"
680then
681 AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
682else
683 AC_MSG_WARN(cannot find clock_gettime)
684fi
1c2e2427 685
4ca5457f 686nanosleep_needs_rt="no"
e428176d
SH
687nanosleep_needs_posix4="no"
688AC_CHECK_FUNCS(nanosleep,
689 [],
690 AC_CHECK_LIB(rt, nanosleep,
691 [nanosleep_needs_rt="yes"],
692 AC_CHECK_LIB(posix4, nanosleep,
693 [nanosleep_needs_posix4="yes"],
694 AC_MSG_ERROR(cannot find nanosleep))))
1c2e2427
FF
695
696AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
697AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
4ca5457f 698
22188738 699AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
e1d497b7 700AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
a905d397
FF
701AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
702AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
703AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
704AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
705AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
706AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
adee81fe 707AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
a905d397
FF
708AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
709AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
710AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
adee81fe
FF
711
712# Check for strptime {{{
713if test "x$GCC" = "xyes"
714then
715 SAVE_CFLAGS="$CFLAGS"
716 CFLAGS="$CFLAGS -Wall -Wextra -Werror"
717fi
718
719AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
720if test "x$have_strptime" = "xyes"
721then
722 AC_CACHE_CHECK([whether strptime is exported by default],
723 [c_cv_have_strptime_default],
e0552af6 724 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
ce8b96ae 725[[[
adee81fe 726#include <time.h>
ce8b96ae
FF
727]]],
728[[[
adee81fe
FF
729 struct tm stm;
730 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
e0552af6
FF
731]]]
732 )],
adee81fe
FF
733 [c_cv_have_strptime_default="yes"],
734 [c_cv_have_strptime_default="no"]))
735fi
736if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
737then
738 AC_CACHE_CHECK([whether strptime needs standards mode],
739 [c_cv_have_strptime_standards],
e0552af6 740 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
ce8b96ae 741[[[
adee81fe
FF
742#ifndef _ISOC99_SOURCE
743# define _ISOC99_SOURCE 1
744#endif
745#ifndef _POSIX_C_SOURCE
746# define _POSIX_C_SOURCE 200112L
747#endif
748#ifndef _XOPEN_SOURCE
749# define _XOPEN_SOURCE 500
750#endif
adee81fe 751#include <time.h>
ce8b96ae
FF
752]]],
753[[[
adee81fe
FF
754 struct tm stm;
755 (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
e0552af6
FF
756]]]
757 )],
adee81fe
FF
758 [c_cv_have_strptime_standards="yes"],
759 [c_cv_have_strptime_standards="no"]))
760
761 if test "x$c_cv_have_strptime_standards" = "xyes"
762 then
763 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
764 else
765 have_strptime="no"
766 fi
767fi
768
769if test "x$GCC" = "xyes"
770then
771 CFLAGS="$SAVE_CFLAGS"
772fi
adee81fe
FF
773# }}} Check for strptime
774
b10e5d81 775AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
34eb0428
AR
776if test "x$have_swapctl" = "xyes"; then
777 AC_CACHE_CHECK([whether swapctl takes two arguments],
778 [c_cv_have_swapctl_two_args],
ce8b96ae 779 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
e0552af6 780[[[
34eb0428
AR
781#if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
782# undef _FILE_OFFSET_BITS
783# undef _LARGEFILE64_SOURCE
784#endif
785#include <sys/stat.h>
ef3e1650 786#include <sys/swap.h>
e0552af6
FF
787]]],
788[[[
ef3e1650 789int num = swapctl(0, NULL);
e0552af6 790]]]
ce8b96ae 791 )],
34eb0428
AR
792 [c_cv_have_swapctl_two_args="yes"],
793 [c_cv_have_swapctl_two_args="no"]
794 )
795 )
796 AC_CACHE_CHECK([whether swapctl takes three arguments],
797 [c_cv_have_swapctl_three_args],
798 AC_COMPILE_IFELSE(
ef3e1650 799 [AC_LANG_PROGRAM(
e0552af6 800[[[
34eb0428
AR
801#if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
802# undef _FILE_OFFSET_BITS
803# undef _LARGEFILE64_SOURCE
804#endif
805#include <sys/stat.h>
ef3e1650 806#include <sys/swap.h>
e0552af6
FF
807]]],
808[[[
ef3e1650 809int num = swapctl(0, NULL, 0);
e0552af6 810]]]
ce8b96ae 811 )],
34eb0428
AR
812 [c_cv_have_swapctl_three_args="yes"],
813 [c_cv_have_swapctl_three_args="no"]
814 )
815 )
816fi
817# Check for different versions of `swapctl' here..
818if test "x$have_swapctl" = "xyes"; then
819 if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
820 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
821 [Define if the function swapctl exists and takes two arguments.])
822 fi
823 if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
824 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
825 [Define if the function swapctl exists and takes three arguments.])
826 fi
827fi
2d03e4e3 828
e91c40b8 829# Check for NAN
18fdfeca
FF
830AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
831[
832 if test "x$withval" = "xno"; then
833 nan_type="none"
834 else if test "x$withval" = "xyes"; then
835 nan_type="zero"
836 else
837 nan_type="$withval"
838 fi; fi
839],
840[nan_type="none"])
e91c40b8
FF
841if test "x$nan_type" = "xnone"; then
842 AC_CACHE_CHECK([whether NAN is defined by default],
5f5da97b 843 [c_cv_have_nan_default],
e0552af6
FF
844 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
845[[[
e91c40b8
FF
846#include <stdlib.h>
847#include <math.h>
6e0ffb3d 848static double foo = NAN;
e0552af6
FF
849]]],
850[[[
e91c40b8
FF
851 if (isnan (foo))
852 return 0;
853 else
854 return 1;
e0552af6
FF
855]]]
856 )],
5f5da97b
SH
857 [c_cv_have_nan_default="yes"],
858 [c_cv_have_nan_default="no"]
e91c40b8
FF
859 )
860 )
5f5da97b 861 if test "x$c_cv_have_nan_default" = "xyes"
e91c40b8 862 then
18fdfeca 863 nan_type="default"
e91c40b8
FF
864 fi
865fi
866if test "x$nan_type" = "xnone"; then
867 AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
5f5da97b 868 [c_cv_have_nan_isoc],
e0552af6
FF
869 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
870[[[
e91c40b8
FF
871#include <stdlib.h>
872#define __USE_ISOC99 1
873#include <math.h>
6e0ffb3d 874static double foo = NAN;
e0552af6
FF
875]]],
876[[[
e91c40b8
FF
877 if (isnan (foo))
878 return 0;
879 else
880 return 1;
e0552af6
FF
881]]]
882 )],
5f5da97b
SH
883 [c_cv_have_nan_isoc="yes"],
884 [c_cv_have_nan_isoc="no"]
e91c40b8
FF
885 )
886 )
5f5da97b 887 if test "x$c_cv_have_nan_isoc" = "xyes"
e91c40b8 888 then
18fdfeca 889 nan_type="isoc99"
e91c40b8
FF
890 fi
891fi
892if test "x$nan_type" = "xnone"; then
11b1e65a
MS
893 SAVE_LDFLAGS=$LDFLAGS
894 LDFLAGS="$LDFLAGS -lm"
e91c40b8 895 AC_CACHE_CHECK([whether NAN can be defined by 0/0],
5f5da97b 896 [c_cv_have_nan_zero],
e0552af6
FF
897 AC_RUN_IFELSE([AC_LANG_PROGRAM(
898[[[
e91c40b8
FF
899#include <stdlib.h>
900#include <math.h>
dcc46cbc
FF
901#ifdef NAN
902# undef NAN
903#endif
e91c40b8
FF
904#define NAN (0.0 / 0.0)
905#ifndef isnan
906# define isnan(f) ((f) != (f))
907#endif
6e0ffb3d 908static double foo = NAN;
e0552af6
FF
909]]],
910[[[
e91c40b8
FF
911 if (isnan (foo))
912 return 0;
913 else
914 return 1;
e0552af6
FF
915]]]
916 )],
5f5da97b
SH
917 [c_cv_have_nan_zero="yes"],
918 [c_cv_have_nan_zero="no"]
e91c40b8
FF
919 )
920 )
11b1e65a 921 LDFLAGS=$SAVE_LDFLAGS
5f5da97b 922 if test "x$c_cv_have_nan_zero" = "xyes"
e91c40b8 923 then
18fdfeca 924 nan_type="zero"
e91c40b8
FF
925 fi
926fi
18fdfeca
FF
927
928if test "x$nan_type" = "xdefault"; then
929 AC_DEFINE(NAN_STATIC_DEFAULT, 1,
930 [Define if NAN is defined by default and can initialize static variables.])
931else if test "x$nan_type" = "xisoc99"; then
932 AC_DEFINE(NAN_STATIC_ISOC, 1,
933 [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
934else if test "x$nan_type" = "xzero"; then
935 AC_DEFINE(NAN_ZERO_ZERO, 1,
936 [Define if NAN can be defined as (0.0 / 0.0)])
937else
e91c40b8 938 AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
18fdfeca 939fi; fi; fi
e91c40b8 940
b365f4e3
FF
941AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
942[
943 if test "x$withval" = "xnothing"; then
944 fp_layout_type="nothing"
945 else if test "x$withval" = "xendianflip"; then
946 fp_layout_type="endianflip"
947 else if test "x$withval" = "xintswap"; then
948 fp_layout_type="intswap"
949 else
950 AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
951fi; fi; fi
952],
953[fp_layout_type="unknown"])
954
955if test "x$fp_layout_type" = "xunknown"; then
956 AC_CACHE_CHECK([if doubles are stored in x86 representation],
5f5da97b 957 [c_cv_fp_layout_need_nothing],
e0552af6
FF
958 AC_RUN_IFELSE([AC_LANG_PROGRAM(
959[[[
b365f4e3
FF
960#include <stdlib.h>
961#include <stdio.h>
b365f4e3 962#include <string.h>
dfc4819a
FF
963#if HAVE_STDINT_H
964# include <stdint.h>
965#endif
aaa30a38
FF
966#if HAVE_INTTYPES_H
967# include <inttypes.h>
968#endif
dfc4819a
FF
969#if HAVE_STDBOOL_H
970# include <stdbool.h>
971#endif
e0552af6
FF
972]]],
973[[[
b365f4e3
FF
974 uint64_t i0;
975 uint64_t i1;
976 uint8_t c[8];
977 double d;
978
979 d = 8.642135e130;
980 memcpy ((void *) &i0, (void *) &d, 8);
981
982 i1 = i0;
983 memcpy ((void *) c, (void *) &i1, 8);
984
985 if ((c[0] == 0x2f) && (c[1] == 0x25)
986 && (c[2] == 0xc0) && (c[3] == 0xc7)
987 && (c[4] == 0x43) && (c[5] == 0x2b)
988 && (c[6] == 0x1f) && (c[7] == 0x5b))
989 return (0);
990 else
991 return (1);
e0552af6
FF
992]]]
993 )],
5f5da97b
SH
994 [c_cv_fp_layout_need_nothing="yes"],
995 [c_cv_fp_layout_need_nothing="no"]
b365f4e3
FF
996 )
997 )
5f5da97b 998 if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
b365f4e3
FF
999 fp_layout_type="nothing"
1000 fi
1001fi
1002if test "x$fp_layout_type" = "xunknown"; then
1003 AC_CACHE_CHECK([if endianflip converts to x86 representation],
5f5da97b 1004 [c_cv_fp_layout_need_endianflip],
e0552af6
FF
1005 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1006[[[
b365f4e3
FF
1007#include <stdlib.h>
1008#include <stdio.h>
b365f4e3 1009#include <string.h>
dfc4819a
FF
1010#if HAVE_STDINT_H
1011# include <stdint.h>
1012#endif
aaa30a38
FF
1013#if HAVE_INTTYPES_H
1014# include <inttypes.h>
1015#endif
dfc4819a
FF
1016#if HAVE_STDBOOL_H
1017# include <stdbool.h>
1018#endif
b365f4e3
FF
1019#define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1020 (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1021 (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1022 (((uint64_t)(A) & 0x000000ff00000000LL) >> 8) | \
1023 (((uint64_t)(A) & 0x00000000ff000000LL) << 8) | \
1024 (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1025 (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1026 (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
e0552af6
FF
1027]]],
1028[[[
b365f4e3
FF
1029 uint64_t i0;
1030 uint64_t i1;
1031 uint8_t c[8];
1032 double d;
1033
1034 d = 8.642135e130;
1035 memcpy ((void *) &i0, (void *) &d, 8);
1036
1037 i1 = endianflip (i0);
1038 memcpy ((void *) c, (void *) &i1, 8);
1039
1040 if ((c[0] == 0x2f) && (c[1] == 0x25)
1041 && (c[2] == 0xc0) && (c[3] == 0xc7)
1042 && (c[4] == 0x43) && (c[5] == 0x2b)
1043 && (c[6] == 0x1f) && (c[7] == 0x5b))
1044 return (0);
1045 else
1046 return (1);
e0552af6
FF
1047]]]
1048 )],
5f5da97b
SH
1049 [c_cv_fp_layout_need_endianflip="yes"],
1050 [c_cv_fp_layout_need_endianflip="no"]
b365f4e3
FF
1051 )
1052 )
5f5da97b 1053 if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
b365f4e3
FF
1054 fp_layout_type="endianflip"
1055 fi
1056fi
1057if test "x$fp_layout_type" = "xunknown"; then
1058 AC_CACHE_CHECK([if intswap converts to x86 representation],
5f5da97b 1059 [c_cv_fp_layout_need_intswap],
e0552af6
FF
1060 AC_RUN_IFELSE([AC_LANG_PROGRAM(
1061[[[
b365f4e3
FF
1062#include <stdlib.h>
1063#include <stdio.h>
b365f4e3 1064#include <string.h>
dfc4819a
FF
1065#if HAVE_STDINT_H
1066# include <stdint.h>
1067#endif
aaa30a38
FF
1068#if HAVE_INTTYPES_H
1069# include <inttypes.h>
1070#endif
dfc4819a
FF
1071#if HAVE_STDBOOL_H
1072# include <stdbool.h>
1073#endif
b365f4e3
FF
1074#define intswap(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1075 (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
e0552af6
FF
1076]]],
1077[[[
b365f4e3
FF
1078 uint64_t i0;
1079 uint64_t i1;
1080 uint8_t c[8];
1081 double d;
1082
1083 d = 8.642135e130;
1084 memcpy ((void *) &i0, (void *) &d, 8);
1085
1086 i1 = intswap (i0);
1087 memcpy ((void *) c, (void *) &i1, 8);
1088
1089 if ((c[0] == 0x2f) && (c[1] == 0x25)
1090 && (c[2] == 0xc0) && (c[3] == 0xc7)
1091 && (c[4] == 0x43) && (c[5] == 0x2b)
1092 && (c[6] == 0x1f) && (c[7] == 0x5b))
1093 return (0);
1094 else
1095 return (1);
e0552af6
FF
1096]]]
1097 )],
5f5da97b
SH
1098 [c_cv_fp_layout_need_intswap="yes"],
1099 [c_cv_fp_layout_need_intswap="no"]
b365f4e3
FF
1100 )
1101 )
5f5da97b 1102 if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
b365f4e3
FF
1103 fp_layout_type="intswap"
1104 fi
1105fi
1106
1107if test "x$fp_layout_type" = "xnothing"; then
1108 AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1109 [Define if doubles are stored in x86 representation.])
1110else if test "x$fp_layout_type" = "xendianflip"; then
1111 AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1112 [Define if endianflip is needed to convert to x86 representation.])
1113else if test "x$fp_layout_type" = "xintswap"; then
1114 AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1115 [Define if intswap is needed to convert to x86 representation.])
1116else
1117 AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1118fi; fi; fi
2dc3f07b
FF
1119
1120have_getfsstat="no"
1121AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1122have_getvfsstat="no"
1123AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1124have_listmntent="no"
1125AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1126
1127have_getmntent="no"
1128AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1129if test "x$have_getmntent" = "xno"; then
1130 AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
c9a5b034 1131fi
2dc3f07b
FF
1132if test "x$have_getmntent" = "xno"; then
1133 AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
c9a5b034 1134fi
2dc3f07b
FF
1135if test "x$have_getmntent" = "xno"; then
1136 AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
c9a5b034
FF
1137fi
1138
2dc3f07b 1139if test "x$have_getmntent" = "xc"; then
6e765a02 1140 AC_CACHE_CHECK([whether getmntent takes one argument],
5f5da97b 1141 [c_cv_have_one_getmntent],
6e765a02 1142 AC_COMPILE_IFELSE(
ef3e1650 1143 [AC_LANG_PROGRAM(
e0552af6 1144[[[
ef3e1650 1145#include "$srcdir/src/utils_mount.h"
e0552af6
FF
1146]]],
1147[[[
ef3e1650
FF
1148FILE *fh;
1149struct mntent *me;
1150fh = setmntent ("/etc/mtab", "r");
1151me = getmntent (fh);
e0552af6 1152]]]
ce8b96ae 1153 )],
5f5da97b
SH
1154 [c_cv_have_one_getmntent="yes"],
1155 [c_cv_have_one_getmntent="no"]
6e765a02
FF
1156 )
1157 )
2dc3f07b 1158 AC_CACHE_CHECK([whether getmntent takes two arguments],
5f5da97b 1159 [c_cv_have_two_getmntent],
2dc3f07b 1160 AC_COMPILE_IFELSE(
ef3e1650 1161 [AC_LANG_PROGRAM(
e0552af6 1162[[[
ef3e1650 1163#include "$srcdir/src/utils_mount.h"
e0552af6
FF
1164]]],
1165[[[
2dc3f07b
FF
1166 FILE *fh;
1167 struct mnttab mt;
1168 int status;
1169 fh = fopen ("/etc/mnttab", "r");
1170 status = getmntent (fh, &mt);
e0552af6 1171]]]
ce8b96ae 1172 )],
5f5da97b
SH
1173 [c_cv_have_two_getmntent="yes"],
1174 [c_cv_have_two_getmntent="no"]
6e765a02 1175 )
2dc3f07b
FF
1176 )
1177fi
1178
1179# Check for different versions of `getmntent' here..
1180
1181if test "x$have_getmntent" = "xc"; then
5f5da97b 1182 if test "x$c_cv_have_one_getmntent" = "xyes"; then
2dc3f07b
FF
1183 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1184 [Define if the function getmntent exists and takes one argument.])
1185 fi
5f5da97b 1186 if test "x$c_cv_have_two_getmntent" = "xyes"; then
2dc3f07b
FF
1187 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1188 [Define if the function getmntent exists and takes two arguments.])
6e765a02 1189 fi
6e765a02 1190fi
2dc3f07b
FF
1191if test "x$have_getmntent" = "xsun"; then
1192 AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1193 [Define if the function getmntent exists. It's the version from libsun.])
6e765a02 1194fi
2dc3f07b
FF
1195if test "x$have_getmntent" = "xseq"; then
1196 AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1197 [Define if the function getmntent exists. It's the version from libseq.])
1198fi
1199if test "x$have_getmntent" = "xgen"; then
1200 AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1201 [Define if the function getmntent exists. It's the version from libgen.])
6e765a02
FF
1202fi
1203
35602ac1
MS
1204# Check for htonll
1205AC_MSG_CHECKING([if have htonll defined])
1206
1207 have_htonll="no"
e0552af6
FF
1208 AC_LINK_IFELSE([AC_LANG_PROGRAM(
1209[[[
35602ac1
MS
1210#include <sys/types.h>
1211#include <netinet/in.h>
aaa30a38
FF
1212#if HAVE_INTTYPES_H
1213# include <inttypes.h>
35602ac1 1214#endif
e0552af6
FF
1215]]],
1216[[[
35602ac1 1217 return htonll(0);
e0552af6
FF
1218]]]
1219 )],
1220 [
35602ac1
MS
1221 have_htonll="yes"
1222 AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1223 ])
1224
1225AC_MSG_RESULT([$have_htonll])
1226
a05e34a0 1227# Check for structures
906bea76 1228AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
a05e34a0
FF
1229 [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1230 [],
cd377858
FF
1231 [
1232 #include <sys/types.h>
1233 #include <sys/socket.h>
1234 #include <net/if.h>
1235 ])
906bea76 1236AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
a05e34a0
FF
1237 [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1238 [],
1239 [
1240 #include <sys/types.h>
1241 #include <sys/socket.h>
1242 #include <linux/if.h>
1243 #include <linux/netdevice.h>
1244 ])
1245
76489692
FF
1246AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1247 [],
1248 [
1249 #include <netinet/in.h>
1250 #include <net/if.h>
1251 ])
1252
2d3861c5
FF
1253AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1254 [
1255 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1256 [Define if struct kinfo_proc exists in the FreeBSD variant.])
1257 have_struct_kinfo_proc_freebsd="yes"
1258 ],
1259 [
1260 have_struct_kinfo_proc_freebsd="no"
1261 ],
1262 [
1263#include <kvm.h>
1264#include <sys/param.h>
1265#include <sys/sysctl.h>
1266#include <sys/user.h>
1267 ])
1268
1269AC_CHECK_MEMBERS([struct kinfo_proc.kp_proc, struct kinfo_proc.kp_eproc],
1270 [
1271 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1272 [Define if struct kinfo_proc exists in the OpenBSD variant.])
1273 have_struct_kinfo_proc_openbsd="yes"
1274 ],
1275 [
1276 have_struct_kinfo_proc_openbsd="no"
1277 ],
1278 [
1279#include <sys/param.h>
1280#include <sys/sysctl.h>
1281#include <kvm.h>
1282 ])
1283
5b9d0a2b 1284AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
7bec4afe
FF
1285[#define _BSD_SOURCE
1286#if HAVE_STDINT_H
5b9d0a2b
FF
1287# include <stdint.h>
1288#endif
1289#if HAVE_SYS_TYPES_H
1290# include <sys/types.h>
1291#endif
1292#if HAVE_NETINET_IN_SYSTM_H
1293# include <netinet/in_systm.h>
1294#endif
1295#if HAVE_NETINET_IN_H
1296# include <netinet/in.h>
1297#endif
1298#if HAVE_NETINET_IP_H
1299# include <netinet/ip.h>
1300#endif
1301#if HAVE_NETINET_UDP_H
1302# include <netinet/udp.h>
1303#endif
1304])
1305AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
7bec4afe
FF
1306[#define _BSD_SOURCE
1307#if HAVE_STDINT_H
5b9d0a2b
FF
1308# include <stdint.h>
1309#endif
1310#if HAVE_SYS_TYPES_H
1311# include <sys/types.h>
1312#endif
1313#if HAVE_NETINET_IN_SYSTM_H
1314# include <netinet/in_systm.h>
1315#endif
1316#if HAVE_NETINET_IN_H
1317# include <netinet/in.h>
1318#endif
1319#if HAVE_NETINET_IP_H
1320# include <netinet/ip.h>
1321#endif
1322#if HAVE_NETINET_UDP_H
1323# include <netinet/udp.h>
1324#endif
1325])
2aff261d 1326
e94efcbe
FF
1327AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1328 [],
1329 [],
1330 [
1331#if HAVE_KSTAT_H
1332# include <kstat.h>
1333#endif
1334 ])
1335
4aed4a7a
FF
1336#
1337# Checks for libraries begin here
1338#
d896b012 1339
a58af051
FF
1340with_libresolv="yes"
1341AC_CHECK_LIB(resolv, res_search,
1342[
1343 AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1344],
1345[with_libresolv="no"])
1346AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
86ca149a 1347
30f3e7b8
RJ
1348dnl Check for HAL (hardware abstraction library)
1349with_libhal="yes"
1350AC_CHECK_LIB(hal,libhal_device_property_exists,
1351 [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1352 [with_libhal="no"])
1353if test "x$with_libhal" = "xyes"; then
30f3e7b8
RJ
1354 if test "x$PKG_CONFIG" != "x"; then
1355 BUILD_WITH_LIBHAL_CFLAGS="`pkg-config --cflags hal`"
1356 BUILD_WITH_LIBHAL_LIBS="`pkg-config --libs hal`"
1357 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1358 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1359 fi
1360fi
125bdc00 1361
c27cdba8
NW
1362m4_divert_once([HELP_WITH], [
1363collectd additional packages:])
1364
11b1e65a
MS
1365AM_CONDITIONAL([BUILD_AIX],[test "x$x$ac_system" = "xAIX"])
1366
1367if test "x$ac_system" = "xAIX"
1368then
1369 with_perfstat="yes"
1370 with_procinfo="yes"
1371else
1372 with_perfstat="no (AIX only)"
1373 with_procinfo="no (AIX only)"
1374fi
1375
1376if test "x$with_perfstat" = "xyes"
1377then
1378 AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1379# AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1380fi
1381if test "x$with_perfstat" = "xyes"
1382then
1383 AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
74dbb25f
AR
1384 # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1385 AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1386 if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1387 then
1388 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1389 fi
11b1e65a
MS
1390fi
1391AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1392
8dbb7bc4 1393# Processes plugin under AIX.
11b1e65a
MS
1394if test "x$with_procinfo" = "xyes"
1395then
1396 AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1397fi
1398if test "x$with_procinfo" = "xyes"
1399then
1400 AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1401fi
11b1e65a 1402
c044208a
FF
1403if test "x$ac_system" = "xSolaris"
1404then
1405 with_kstat="yes"
1406 with_devinfo="yes"
1407else
1408 with_kstat="no (Solaris only)"
1409 with_devinfo="no (Solaris only)"
1410fi
1411
1412if test "x$with_kstat" = "xyes"
1413then
1414 AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1415fi
1416if test "x$with_kstat" = "xyes"
1417then
1418 AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1419 AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1420fi
1421if test "x$with_kstat" = "xyes"
1422then
1423 AC_DEFINE(HAVE_LIBKSTAT, 1,
1424 [Define to 1 if you have the 'kstat' library (-lkstat)])
1425fi
1426AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1427AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1428
1429with_libiokit="no"
1430AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
1431[
1432 with_libiokit="yes"
1433],
1434[
1435 with_libiokit="no"
1436])
1437AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1438
1439with_libkvm="no"
1440AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1441if test "x$with_kvm_getprocs" = "xyes"
1442then
1443 AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1444 [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1445 with_libkvm="yes"
1446fi
1447AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1448
1449AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1450if test "x$with_kvm_getswapinfo" = "xyes"
1451then
1452 AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1453 [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1454 with_libkvm="yes"
1455fi
1456AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1457
1458AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1459if test "x$with_kvm_nlist" = "xyes"
1460then
cb2155af 1461 AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
c044208a
FF
1462 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1463 [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1464 with_libkvm="yes"
1465fi
1466AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1467
97fe2302
FF
1468AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1469if test "x$with_kvm_openfiles" = "xyes"
1470then
1471 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1472 [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1473 with_libkvm="yes"
1474fi
1475AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1476
b591eca2
FF
1477# --with-libcredis {{{
1478AC_ARG_WITH(libcredis, [AS_HELP_STRING([--with-libcredis@<:@=PREFIX@:>@], [Path to libcredis.])],
1479[
1480 if test "x$withval" = "xyes"
1481 then
1482 with_libcredis="yes"
1483 else if test "x$withval" = "xno"
1484 then
1485 with_libcredis="no"
1486 else
1487 with_libcredis="yes"
1488 LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS -I$withval/include"
1489 LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS -L$withval/lib"
1490 fi; fi
1491],
1492[with_libcredis="yes"])
1493
1494SAVE_CPPFLAGS="$CPPFLAGS"
1495SAVE_LDFLAGS="$LDFLAGS"
1496
1497CPPFLAGS="$CPPFLAGS $LIBCREDIS_CPPFLAGS"
1498LDFLAGS="$LDFLAGS $LIBCREDIS_LDFLAGS"
1499
1500if test "x$with_libcredis" = "xyes"
1501then
1502 if test "x$LIBCREDIS_CPPFLAGS" != "x"
1503 then
1504 AC_MSG_NOTICE([libcredis CPPFLAGS: $LIBCREDIS_CPPFLAGS])
1505 fi
1506 AC_CHECK_HEADERS(credis.h,
1507 [with_libcredis="yes"],
67d4532f 1508 [with_libcredis="no (credis.h not found)"])
b591eca2
FF
1509fi
1510if test "x$with_libcredis" = "xyes"
1511then
1512 if test "x$LIBCREDIS_LDFLAGS" != "x"
1513 then
1514 AC_MSG_NOTICE([libcredis LDFLAGS: $LIBCREDIS_LDFLAGS])
1515 fi
1516 AC_CHECK_LIB(credis, credis_info,
1517 [with_libcredis="yes"],
1518 [with_libcredis="no (symbol 'credis_info' not found)"])
1519
1520fi
1521
1522CPPFLAGS="$SAVE_CPPFLAGS"
1523LDFLAGS="$SAVE_LDFLAGS"
1524
1525if test "x$with_libcredis" = "xyes"
1526then
1527 BUILD_WITH_LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS"
1528 BUILD_WITH_LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS"
1529 AC_SUBST(BUILD_WITH_LIBCREDIS_CPPFLAGS)
1530 AC_SUBST(BUILD_WITH_LIBCREDIS_LDFLAGS)
1531fi
1532AM_CONDITIONAL(BUILD_WITH_LIBCREDIS, test "x$with_libcredis" = "xyes")
1533# }}}
1534
8757c918 1535# --with-libcurl {{{
1842a7a7 1536with_curl_config="curl-config"
8f6c03d5 1537with_curl_cflags=""
1842a7a7
FF
1538with_curl_libs=""
1539AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1540[
1842a7a7
FF
1541 if test "x$withval" = "xno"
1542 then
1543 with_libcurl="no"
8f6c03d5
FF
1544 else if test "x$withval" = "xyes"
1545 then
1842a7a7 1546 with_libcurl="yes"
8f6c03d5 1547 else
a3cd4630 1548 if test -f "$withval" && test -x "$withval"
8f6c03d5
FF
1549 then
1550 with_curl_config="$withval"
c39428ae 1551 with_libcurl="yes"
8f6c03d5
FF
1552 else if test -x "$withval/bin/curl-config"
1553 then
1554 with_curl_config="$withval/bin/curl-config"
c39428ae 1555 with_libcurl="yes"
8f6c03d5 1556 fi; fi
a3cd4630 1557 with_libcurl="yes"
8f6c03d5 1558 fi; fi
1842a7a7
FF
1559],
1560[
1561 with_libcurl="yes"
1562])
1563if test "x$with_libcurl" = "xyes"
1564then
8f6c03d5 1565 with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1842a7a7
FF
1566 curl_config_status=$?
1567
1568 if test $curl_config_status -ne 0
1569 then
48bc4be8 1570 with_libcurl="no ($with_curl_config failed)"
1842a7a7 1571 else
06c09fee
FF
1572 SAVE_CPPFLAGS="$CPPFLAGS"
1573 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
8f6c03d5
FF
1574
1575 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1576
06c09fee 1577 CPPFLAGS="$SAVE_CPPFLAGS"
1842a7a7
FF
1578 fi
1579fi
8f6c03d5 1580if test "x$with_libcurl" = "xyes"
1842a7a7 1581then
8f6c03d5 1582 with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1842a7a7
FF
1583 curl_config_status=$?
1584
1585 if test $curl_config_status -ne 0
1586 then
48bc4be8 1587 with_libcurl="no ($with_curl_config failed)"
1842a7a7 1588 else
8f6c03d5 1589 AC_CHECK_LIB(curl, curl_easy_init,
48bc4be8 1590 [with_libcurl="yes"],
8f6c03d5
FF
1591 [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1592 [$with_curl_libs])
1842a7a7
FF
1593 fi
1594fi
1842a7a7
FF
1595if test "x$with_libcurl" = "xyes"
1596then
8f6c03d5
FF
1597 BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1598 BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1599 AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1600 AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1842a7a7 1601fi
1842a7a7 1602AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
8757c918 1603# }}}
1842a7a7 1604
3f847b15
FF
1605# --with-libdbi {{{
1606with_libdbi_cppflags=""
1607with_libdbi_ldflags=""
1608AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1609[
1610 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1611 then
1612 with_libdbi_cppflags="-I$withval/include"
1613 with_libdbi_ldflags="-L$withval/lib"
1614 with_libdbi="yes"
1615 else
1616 with_libdbi="$withval"
1617 fi
1618],
1619[
1620 with_libdbi="yes"
1621])
1622if test "x$with_libdbi" = "xyes"
1623then
1624 SAVE_CPPFLAGS="$CPPFLAGS"
1625 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1626
1627 AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1628
1629 CPPFLAGS="$SAVE_CPPFLAGS"
1630fi
1631if test "x$with_libdbi" = "xyes"
1632then
1633 SAVE_CPPFLAGS="$CPPFLAGS"
1634 SAVE_LDFLAGS="$LDFLAGS"
1635 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1636 LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1637
1638 AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1639
1640 CPPFLAGS="$SAVE_CPPFLAGS"
1641 LDFLAGS="$SAVE_LDFLAGS"
1642fi
1643if test "x$with_libdbi" = "xyes"
1644then
1645 BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1646 BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1647 BUILD_WITH_LIBDBI_LIBS="-ldbi"
1648 AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1649 AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1650 AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1651fi
1652AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1653# }}}
1654
975e7fd6
FF
1655# --with-libesmtp {{{
1656AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
86ca149a 1657[
975e7fd6 1658 if test "x$withval" != "xno" && test "x$withval" != "xyes"
86ca149a 1659 then
975e7fd6
FF
1660 LDFLAGS="$LDFLAGS -L$withval/lib"
1661 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1662 with_libesmtp="yes"
fb713675 1663 else
975e7fd6 1664 with_libesmtp="$withval"
86ca149a
FF
1665 fi
1666],
1667[
975e7fd6 1668 with_libesmtp="yes"
86ca149a 1669])
975e7fd6 1670if test "x$with_libesmtp" = "xyes"
0aa63f0c 1671then
975e7fd6
FF
1672 AC_CHECK_LIB(esmtp, smtp_create_session,
1673 [
1674 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1675 ], [with_libesmtp="no (libesmtp not found)"])
0aa63f0c 1676fi
975e7fd6 1677if test "x$with_libesmtp" = "xyes"
176d5f79 1678then
975e7fd6
FF
1679 AC_CHECK_HEADERS(libesmtp.h,
1680 [
1681 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1682 ], [with_libesmtp="no (libesmtp.h not found)"])
176d5f79 1683fi
975e7fd6 1684if test "x$with_libesmtp" = "xyes"
4aed4a7a 1685then
975e7fd6
FF
1686 collect_libesmtp=1
1687else
1688 collect_libesmtp=0
4aed4a7a 1689fi
975e7fd6
FF
1690AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1691 [Wether or not to use the esmtp library])
1692AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
8757c918 1693# }}}
28c5e282 1694
2f0bd3ba
FF
1695# --with-libganglia {{{
1696AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
1697[
1698 if test -f "$withval" && test -x "$withval"
1699 then
1700 with_libganglia_config="$withval"
1701 with_libganglia="yes"
1702 else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
1703 then
1704 with_libganglia_config="$withval/bin/ganglia-config"
1705 with_libganglia="yes"
1706 else if test -d "$withval"
1707 then
1708 GANGLIA_CPPFLAGS="-I$withval/include"
1709 GANGLIA_LDFLAGS="-L$withval/lib"
1710 with_libganglia="yes"
1711 else
1712 with_libganglia_config="ganglia-config"
1713 with_libganglia="$withval"
1714 fi; fi; fi
1715],
1716[
1717 with_libganglia_config="ganglia-config"
1718 with_libganglia="yes"
1719])
1720
1721if test "x$with_libganglia" = "xyes" && test "x$with_libganglia_config" != "x"
1722then
1723 if test "x$GANGLIA_CPPFLAGS" = "x"
1724 then
1725 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
1726 fi
1727
1728 if test "x$GANGLIA_LDFLAGS" = "x"
1729 then
1730 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
1731 fi
1732
1733 if test "x$GANGLIA_LIBS" = "x"
1734 then
1735 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
1736 fi
1737fi
1738
1739SAVE_CPPFLAGS="$CPPFLAGS"
1740SAVE_LDFLAGS="$LDFLAGS"
1741CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
1742LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
1743
1744if test "x$with_libganglia" = "xyes"
1745then
1746 AC_CHECK_HEADERS(gm_protocol.h,
1747 [
1748 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
1749 [Define to 1 if you have the <gm_protocol.h> header file.])
1750 ], [with_libganglia="no (gm_protocol.h not found)"])
1751fi
1752
1753if test "x$with_libganglia" = "xyes"
1754then
1755 AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
1756 [
1757 AC_DEFINE(HAVE_LIBGANGLIA, 1,
1758 [Define to 1 if you have the ganglia library (-lganglia).])
1759 ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
1760fi
1761
1762CPPFLAGS="$SAVE_CPPFLAGS"
1763LDFLAGS="$SAVE_LDFLAGS"
1764
1765AC_SUBST(GANGLIA_CPPFLAGS)
1766AC_SUBST(GANGLIA_LDFLAGS)
1767AC_SUBST(GANGLIA_LIBS)
1768AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
1769# }}}
1770
6c4006c2
FF
1771# --with-libgcrypt {{{
1772GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
1773GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
1774GCRYPT_LIBS="$GCRYPT_LIBS"
1775AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
1776[
1777 if test -f "$withval" && test -x "$withval"
1778 then
1779 with_libgcrypt_config="$withval"
1780 with_libgcrypt="yes"
1781 else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
1782 then
1783 with_libgcrypt_config="$withval/bin/gcrypt-config"
1784 with_libgcrypt="yes"
1785 else if test -d "$withval"
1786 then
1787 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
1788 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
1789 with_libgcrypt="yes"
1790 else
1791 with_libgcrypt_config="gcrypt-config"
1792 with_libgcrypt="$withval"
1793 fi; fi; fi
1794],
1795[
1796 with_libgcrypt_config="libgcrypt-config"
1797 with_libgcrypt="yes"
1798])
1799
1800if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
1801then
1802 if test "x$GCRYPT_CPPFLAGS" = "x"
1803 then
1804 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
1805 fi
1806
1807 if test "x$GCRYPT_LDFLAGS" = "x"
1808 then
1809 gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null`
1810 GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib"
1811 fi
1812
1813 if test "x$GCRYPT_LIBS" = "x"
1814 then
1815 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
1816 fi
1817fi
1818
1819SAVE_CPPFLAGS="$CPPFLAGS"
1820SAVE_LDFLAGS="$LDFLAGS"
1821CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
1822LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
1823
1824if test "x$with_libgcrypt" = "xyes"
1825then
1826 if test "x$GCRYPT_CPPFLAGS" != "x"
1827 then
1828 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
1829 fi
1830 AC_CHECK_HEADERS(gcrypt.h,
1831 [with_libgcrypt="yes"],
1832 [with_libgcrypt="no (gcrypt.h not found)"])
1833fi
1834
1835if test "x$with_libgcrypt" = "xyes"
1836then
1837 if test "x$GCRYPT_LDFLAGS" != "x"
1838 then
1839 AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS])
1840 fi
1841 AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
1842 [with_libgcrypt="yes"],
1843 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
5f3f72cb
DM
1844
1845 if test "$with_libgcrypt" != "no"; then
1846 AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")
597ada32
DF
1847 GCRYPT_CPPFLAGS="$LIBGCRYPT_CPPFLAGS"
1848 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
5f3f72cb 1849 fi
6c4006c2
FF
1850fi
1851
1852CPPFLAGS="$SAVE_CPPFLAGS"
1853LDFLAGS="$SAVE_LDFLAGS"
1854
bcd6151b
FF
1855if test "x$with_libgcrypt" = "xyes"
1856then
1857 AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
1858fi
1859
6c4006c2
FF
1860AC_SUBST(GCRYPT_CPPFLAGS)
1861AC_SUBST(GCRYPT_LDFLAGS)
1862AC_SUBST(GCRYPT_LIBS)
1863AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
1864# }}}
1865
975e7fd6 1866# --with-libiptc {{{
975e7fd6 1867AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
86ca149a 1868[
755022b7 1869 if test "x$withval" = "xshipped"
86ca149a 1870 then
d1f72747
FF
1871 with_libiptc="own"
1872 else if test "x$withval" = "xyes"
86ca149a 1873 then
d1f72747
FF
1874 with_libiptc="pkgconfig"
1875 else if test "x$withval" = "xno"
1876 then
1877 with_libiptc="no"
14ffdba9 1878 else
d1f72747
FF
1879 with_libiptc="yes"
1880 with_libiptc_cflags="-I$withval/include"
1881 with_libiptc_libs="-L$withval/lib"
1882 fi; fi; fi
86ca149a
FF
1883],
1884[
86ca149a
FF
1885 if test "x$ac_system" = "xLinux"
1886 then
d1f72747 1887 with_libiptc="pkgconfig"
86ca149a 1888 else
975e7fd6 1889 with_libiptc="no (Linux only)"
86ca149a
FF
1890 fi
1891])
d1f72747
FF
1892
1893if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
86ca149a 1894then
d1f72747 1895 with_libiptc="no (Don't have pkg-config)"
3c12e8a6 1896fi
d1f72747
FF
1897
1898if test "x$with_libiptc" = "xpkgconfig"
3c12e8a6 1899then
d1f72747
FF
1900 $PKG_CONFIG --exists 'libiptc' 2>/dev/null
1901 if test $? -ne 0
1902 then
1903 with_libiptc="no (pkg-config doesn't know libiptc)"
1904 fi
1905fi
1906if test "x$with_libiptc" = "xpkgconfig"
3c12e8a6 1907then
d1f72747
FF
1908 with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
1909 if test $? -ne 0
1910 then
1911 with_libiptc="no ($PKG_CONFIG failed)"
1912 fi
1913 with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
1914 if test $? -ne 0
1915 then
1916 with_libiptc="no ($PKG_CONFIG failed)"
1917 fi
1918fi
1919
1920SAVE_CPPFLAGS="$CPPFLAGS"
1921CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
1922
1923# check whether the header file for libiptc is available.
1924if test "x$with_libiptc" = "xpkgconfig"
1925then
1926 AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
1927 [with_libiptc="no (header file missing)"])
975e7fd6 1928fi
88998e1d
FF
1929# If the header file is available, check for the required type declaractions.
1930# They may be missing in old versions of libiptc. In that case, they will be
1931# declared in the iptables plugin.
d1f72747 1932if test "x$with_libiptc" = "xpkgconfig"
b3315d59 1933then
d1f72747 1934 AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
af0dd163 1935fi
88998e1d 1936# Check for the iptc_init symbol in the library.
3835b23a 1937# This could be in iptc or ip4tc
d1f72747 1938if test "x$with_libiptc" = "xpkgconfig"
af0dd163 1939then
c43464c9 1940 SAVE_LIBS="$LIBS"
3835b23a 1941 AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
d1f72747
FF
1942 [with_libiptc="pkgconfig"],
1943 [with_libiptc="no"],
1944 [$with_libiptc_libs])
c43464c9 1945 LIBS="$SAVE_LIBS"
d1f72747
FF
1946fi
1947if test "x$with_libiptc" = "xpkgconfig"
1948then
1949 with_libiptc="yes"
88998e1d 1950fi
d1f72747
FF
1951
1952CPPFLAGS="$SAVE_CPPFLAGS"
1953
1954if test "x$with_libiptc" = "xown"
1955then
98ee3804 1956 with_libiptc_cflags=""
d1f72747
FF
1957 with_libiptc_libs=""
1958fi
1959if test "x$with_libiptc" = "xown"
88998e1d
FF
1960then
1961 AC_CHECK_HEADERS(linux/netfilter_ipv4/ip_tables.h linux/netfilter_ipv6/ip6_tables.h linux/netfilter/x_tables.h, [],
1962 [
1963 with_libiptc="no (Linux iptables headers not found)"
88998e1d
FF
1964 ],
1965 [
1966#include "$srcdir/src/owniptc/ipt_kernel_headers.h"
1967 ])
1968fi
d1f72747
FF
1969AM_CONDITIONAL(BUILD_WITH_OWN_LIBIPTC, test "x$with_libiptc" = "xown")
1970if test "x$with_libiptc" = "xown"
1971then
1972 AC_DEFINE(OWN_LIBIPTC, 1, [Define to 1 if we use the shipped iptc library.])
1973 with_libiptc="yes"
1974fi
1975
a690e4ac 1976AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
a690e4ac
FF
1977if test "x$with_libiptc" = "xyes"
1978then
d1f72747
FF
1979 BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
1980 BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
a690e4ac
FF
1981 AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
1982 AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
1983fi
8757c918 1984# }}}
86ca149a 1985
ff1c15a6
FF
1986# --with-java {{{
1987with_java_home="$JAVA_HOME"
1988with_java_vmtype="client"
1989with_java_cflags=""
1990with_java_libs=""
0e187c2e 1991JAVAC="$JAVAC"
c983405b 1992JAR="$JAR"
ff1c15a6
FF
1993AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
1994[
1995 if test "x$withval" = "xno"
1996 then
1997 with_java="no"
1998 else if test "x$withval" = "xyes"
1999 then
2000 with_java="yes"
2001 else
2002 with_java_home="$withval"
2003 with_java="yes"
2004 fi; fi
2005],
2006[with_java="yes"])
2007if test "x$with_java" = "xyes"
2008then
2009 if test -d "$with_java_home"
2010 then
33163ee3 2011 AC_MSG_CHECKING([for jni.h])
5efcb2fe 2012 TMPVAR=`find "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
5680622e 2013 if test "x$TMPVAR" != "x"
ff1c15a6 2014 then
5680622e
DC
2015 AC_MSG_RESULT([found in $TMPVAR])
2016 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
ff1c15a6 2017 else
33163ee3 2018 AC_MSG_RESULT([not found])
ff1c15a6 2019 fi
33163ee3
FF
2020
2021 AC_MSG_CHECKING([for jni_md.h])
5efcb2fe 2022 TMPVAR=`find "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
5680622e 2023 if test "x$TMPVAR" != "x"
33163ee3 2024 then
5680622e
DC
2025 AC_MSG_RESULT([found in $TMPVAR])
2026 JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
33163ee3
FF
2027 else
2028 AC_MSG_RESULT([not found])
2029 fi
2030
2031 AC_MSG_CHECKING([for libjvm.so])
5efcb2fe 2032 TMPVAR=`find "$with_java_home" -name libjvm.so -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
5680622e 2033 if test "x$TMPVAR" != "x"
ff1c15a6 2034 then
5680622e
DC
2035 AC_MSG_RESULT([found in $TMPVAR])
2036 JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
ff1c15a6 2037 else
33163ee3 2038 AC_MSG_RESULT([not found])
ff1c15a6 2039 fi
0e187c2e
FF
2040
2041 if test "x$JAVAC" = "x"
2042 then
2043 AC_MSG_CHECKING([for javac])
5efcb2fe 2044 TMPVAR=`find "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
5680622e 2045 if test "x$TMPVAR" != "x"
0e187c2e 2046 then
5680622e 2047 JAVAC="$TMPVAR"
0e187c2e
FF
2048 AC_MSG_RESULT([$JAVAC])
2049 else
2050 AC_MSG_RESULT([not found])
2051 fi
2052 fi
c983405b
AG
2053 if test "x$JAR" = "x"
2054 then
2055 AC_MSG_CHECKING([for jar])
5efcb2fe 2056 TMPVAR=`find "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
5680622e 2057 if test "x$TMPVAR" != "x"
c983405b 2058 then
5680622e 2059 JAR="$TMPVAR"
c983405b
AG
2060 AC_MSG_RESULT([$JAR])
2061 else
2062 AC_MSG_RESULT([not found])
2063 fi
2064 fi
ff1c15a6
FF
2065 else if test "x$with_java_home" != "x"
2066 then
2067 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2068 fi; fi
2069fi
2070
2071if test "x$JAVA_CPPFLAGS" != "x"
2072then
2073 AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2074fi
2075if test "x$JAVA_CFLAGS" != "x"
2076then
2077 AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2078fi
2079if test "x$JAVA_LDFLAGS" != "x"
2080then
2081 AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2082fi
0e187c2e
FF
2083if test "x$JAVAC" = "x"
2084then
2085 with_javac_path="$PATH"
2086 if test "x$with_java_home" != "x"
2087 then
2088 with_javac_path="$with_java_home:with_javac_path"
2089 if test -d "$with_java_home/bin"
2090 then
2091 with_javac_path="$with_java_home/bin:with_javac_path"
2092 fi
2093 fi
2094
2095 AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2096fi
2097if test "x$JAVAC" = "x"
2098then
2099 with_java="no (javac not found)"
2100fi
c983405b
AG
2101if test "x$JAR" = "x"
2102then
2103 with_jar_path="$PATH"
2104 if test "x$with_java_home" != "x"
2105 then
f181a333 2106 with_jar_path="$with_java_home:$with_jar_path"
c983405b
AG
2107 if test -d "$with_java_home/bin"
2108 then
f181a333 2109 with_jar_path="$with_java_home/bin:$with_jar_path"
c983405b
AG
2110 fi
2111 fi
2112
2113 AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2114fi
2115if test "x$JAR" = "x"
2116then
2117 with_java="no (jar not found)"
2118fi
ff1c15a6
FF
2119
2120SAVE_CPPFLAGS="$CPPFLAGS"
2121SAVE_CFLAGS="$CFLAGS"
2122SAVE_LDFLAGS="$LDFLAGS"
2123CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2124CFLAGS="$CFLAGS $JAVA_CFLAGS"
2125LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2126
2127if test "x$with_java" = "xyes"
2128then
2129 AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2130fi
2131if test "x$with_java" = "xyes"
2132then
2133 AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2134 [with_java="yes"],
2135 [with_java="no (libjvm not found)"],
2136 [$JAVA_LIBS])
2137fi
2138if test "x$with_java" = "xyes"
2139then
2140 JAVA_LIBS="$JAVA_LIBS -ljvm"
2141 AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2142fi
2143
2144CPPFLAGS="$SAVE_CPPFLAGS"
2145CFLAGS="$SAVE_CFLAGS"
2146LDFLAGS="$SAVE_LDFLAGS"
2147
2148AC_SUBST(JAVA_CPPFLAGS)
2149AC_SUBST(JAVA_CFLAGS)
2150AC_SUBST(JAVA_LDFLAGS)
2151AC_SUBST(JAVA_LIBS)
2152AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2153# }}}
2154
5e8e1fe1
FF
2155# --with-libmemcached {{{
2156with_libmemcached_cppflags=""
2157with_libmemcached_ldflags=""
2158AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2159[
2160 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2161 then
2162 with_libmemcached_cppflags="-I$withval/include"
2163 with_libmemcached_ldflags="-L$withval/lib"
2164 with_libmemcached="yes"
2165 else
2166 with_libmemcached="$withval"
2167 fi
2168],
2169[
2170 with_libmemcached="yes"
2171])
2172if test "x$with_libmemcached" = "xyes"
2173then
2174 SAVE_CPPFLAGS="$CPPFLAGS"
2175 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2176
2177 AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2178
2179 CPPFLAGS="$SAVE_CPPFLAGS"
2180fi
2181if test "x$with_libmemcached" = "xyes"
2182then
2183 SAVE_CPPFLAGS="$CPPFLAGS"
2184 SAVE_LDFLAGS="$LDFLAGS"
2185 CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2186 LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2187
2188 AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2189
2190 CPPFLAGS="$SAVE_CPPFLAGS"
2191 LDFLAGS="$SAVE_LDFLAGS"
2192fi
2193if test "x$with_libmemcached" = "xyes"
2194then
2195 BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2196 BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2197 BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2198 AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2199 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2200 AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2201 AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2202fi
2203AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2204# }}}
2205
367405c9
FF
2206# --with-libmodbus {{{
2207with_libmodbus_config=""
2208with_libmodbus_cflags=""
2209with_libmodbus_libs=""
2210AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2211[
2212 if test "x$withval" = "xno"
2213 then
2214 with_libmodbus="no"
2215 else if test "x$withval" = "xyes"
2216 then
2217 with_libmodbus="use_pkgconfig"
2218 else if test -d "$with_libmodbus/lib"
2219 then
2220 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2221 with_libmodbus_cflags="-I$withval/include"
2222 with_libmodbus_libs="-L$withval/lib -lmodbus"
2223 with_libmodbus="yes"
2224 fi; fi; fi
2225],
2226[with_libmodbus="use_pkgconfig"])
2227
2228# configure using pkg-config
2229if test "x$with_libmodbus" = "xuse_pkgconfig"
2230then
2231 if test "x$PKG_CONFIG" = "x"
2232 then
2233 with_libmodbus="no (Don't have pkg-config)"
2234 fi
2235fi
2236if test "x$with_libmodbus" = "xuse_pkgconfig"
2237then
97f36e3f
SN
2238 AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2239 $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
367405c9
FF
2240 if test $? -ne 0
2241 then
97f36e3f 2242 with_libmodbus="no (pkg-config doesn't know libmodbus)"
367405c9
FF
2243 fi
2244fi
2245if test "x$with_libmodbus" = "xuse_pkgconfig"
2246then
97f36e3f 2247 with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
367405c9
FF
2248 if test $? -ne 0
2249 then
2250 with_libmodbus="no ($PKG_CONFIG failed)"
2251 fi
97f36e3f 2252 with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
367405c9
FF
2253 if test $? -ne 0
2254 then
2255 with_libmodbus="no ($PKG_CONFIG failed)"
2256 fi
2257fi
2258if test "x$with_libmodbus" = "xuse_pkgconfig"
2259then
2260 with_libmodbus="yes"
2261fi
2262
2263# with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2264# the actual checks.
2265if test "x$with_libmodbus" = "xyes"
2266then
2267 SAVE_CPPFLAGS="$CPPFLAGS"
2268 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2269
2270 AC_CHECK_HEADERS(modbus/modbus.h, [], [with_libmodbus="no (modbus/modbus.h not found)"])
2271
2272 CPPFLAGS="$SAVE_CPPFLAGS"
2273fi
2274if test "x$with_libmodbus" = "xyes"
2275then
2276 SAVE_CPPFLAGS="$CPPFLAGS"
2277 SAVE_LDFLAGS="$LDFLAGS"
2278
2279 CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2280 LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2281
c4e824e4 2282 AC_CHECK_LIB(modbus, modbus_connect,
367405c9 2283 [with_libmodbus="yes"],
c4e824e4 2284 [with_libmodbus="no (symbol modbus_connect not found)"])
367405c9
FF
2285
2286 CPPFLAGS="$SAVE_CPPFLAGS"
2287 LDFLAGS="$SAVE_LDFLAGS"
2288fi
2289if test "x$with_libmodbus" = "xyes"
2290then
2291 BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2292 BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2293 AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2294 AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2295fi
2296# }}}
2297
13322bb3
FF
2298# --with-libmongoc {{{
2299AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2300[
2301 if test "x$withval" = "xyes"
2302 then
2303 with_libmongoc="yes"
2304 else if test "x$withval" = "xno"
2305 then
2306 with_libmongoc="no"
2307 else
2308 with_libmongoc="yes"
2309 LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2310 LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2311 fi; fi
2312],
2313[with_libmongoc="yes"])
2314
2315SAVE_CPPFLAGS="$CPPFLAGS"
2316SAVE_LDFLAGS="$LDFLAGS"
2317
2318CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2319LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2320
2321if test "x$with_libmongoc" = "xyes"
2322then
2323 if test "x$LIBMONGOC_CPPFLAGS" != "x"
2324 then
2325 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2326 fi
2327 AC_CHECK_HEADERS(mongo.h,
2328 [with_libmongoc="yes"],
2329 [with_libmongoc="no ('mongo.h' not found)"],
2330[#if HAVE_STDINT_H
2331# define MONGO_HAVE_STDINT 1
2332#else
2333# define MONGO_USE_LONG_LONG_INT 1
2334#endif
2335])
2336fi
2337if test "x$with_libmongoc" = "xyes"
2338then
2339 if test "x$LIBMONGOC_LDFLAGS" != "x"
2340 then
2341 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2342 fi
2343 AC_CHECK_LIB(mongoc, mongo_run_command,
2344 [with_libmongoc="yes"],
2345 [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2346fi
2347
2348CPPFLAGS="$SAVE_CPPFLAGS"
2349LDFLAGS="$SAVE_LDFLAGS"
2350
2351if test "x$with_libmongoc" = "xyes"
2352then
2353 BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2354 BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2355 AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2356 AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2357fi
2358AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2359# }}}
2360
8757c918 2361# --with-libmysql {{{
805c4940 2362with_mysql_config="mysql_config"
805c4940
FF
2363with_mysql_cflags=""
2364with_mysql_libs=""
e4303e15
FF
2365AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2366[
805c4940
FF
2367 if test "x$withval" = "xno"
2368 then
2369 with_libmysql="no"
8f6c03d5 2370 else if test "x$withval" = "xyes"
e4303e15 2371 then
e4303e15 2372 with_libmysql="yes"
8f6c03d5 2373 else
a3cd4630 2374 if test -f "$withval" && test -x "$withval";
8f6c03d5
FF
2375 then
2376 with_mysql_config="$withval"
2377 else if test -x "$withval/bin/mysql_config"
2378 then
2379 with_mysql_config="$withval/bin/mysql_config"
2380 fi; fi
a3cd4630 2381 with_libmysql="yes"
8f6c03d5 2382 fi; fi
e4303e15
FF
2383],
2384[
2385 with_libmysql="yes"
2386])
2387if test "x$with_libmysql" = "xyes"
2388then
805c4940
FF
2389 with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
2390 mysql_config_status=$?
2391
2392 if test $mysql_config_status -ne 0
2393 then
23164f56 2394 with_libmysql="no ($with_mysql_config failed)"
805c4940 2395 else
06c09fee
FF
2396 SAVE_CPPFLAGS="$CPPFLAGS"
2397 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
805c4940 2398
23164f56
SH
2399 have_mysql_h="no"
2400 have_mysql_mysql_h="no"
2401 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2402
2403 if test "x$have_mysql_h" = "xno"
2404 then
2405 AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2406 fi
2407
2408 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2409 then
2410 with_libmysql="no (mysql.h not found)"
2411 fi
805c4940 2412
06c09fee 2413 CPPFLAGS="$SAVE_CPPFLAGS"
805c4940 2414 fi
e4303e15
FF
2415fi
2416if test "x$with_libmysql" = "xyes"
2417then
a956e9ab 2418 with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
8f6c03d5
FF
2419 mysql_config_status=$?
2420
2421 if test $mysql_config_status -ne 0
2422 then
23164f56 2423 with_libmysql="no ($with_mysql_config failed)"
8f6c03d5
FF
2424 else
2425 AC_CHECK_LIB(mysqlclient, mysql_init,
48bc4be8
FF
2426 [with_libmysql="yes"],
2427 [with_libmysql="no (symbol 'mysql_init' not found)"],
8f6c03d5 2428 [$with_mysql_libs])
2b65cef7
DM
2429
2430 AC_CHECK_LIB(mysqlclient, mysql_get_server_version,
2431 [with_libmysql="yes"],
2432 [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2433 [$with_mysql_libs])
8f6c03d5 2434 fi
e4303e15
FF
2435fi
2436if test "x$with_libmysql" = "xyes"
2437then
805c4940
FF
2438 BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2439 BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2440 AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2441 AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
e4303e15 2442fi
e4303e15 2443AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
8757c918 2444# }}}
86ca149a 2445
975e7fd6
FF
2446# --with-libnetlink {{{
2447with_libnetlink_cflags=""
2448with_libnetlink_libs="-lnetlink"
2449AC_ARG_WITH(libnetlink, [AS_HELP_STRING([--with-libnetlink@<:@=PREFIX@:>@], [Path to libnetlink.])],
2450[
2451 echo "libnetlink: withval = $withval"
2452 if test "x$withval" = "xyes"
2453 then
2454 with_libnetlink="yes"
2455 else if test "x$withval" = "xno"
2456 then
2457 with_libnetlink="no"
2458 else
2459 if test -d "$withval/include"
2460 then
2461 with_libnetlink_cflags="-I$withval/include"
2462 with_libnetlink_libs="-L$withval/lib -lnetlink"
2463 with_libnetlink="yes"
2464 else
2465 AC_MSG_ERROR("no such directory: $withval/include")
2466 fi
2467 fi; fi
2468],
2469[
2470 if test "x$ac_system" = "xLinux"
2471 then
2472 with_libnetlink="yes"
2473 else
2474 with_libnetlink="no (Linux only library)"
2475 fi
2476])
2477if test "x$with_libnetlink" = "xyes"
2478then
4519a3ef 2479 SAVE_CFLAGS="$CFLAGS"
975e7fd6
FF
2480 CFLAGS="$CFLAGS $with_libnetlink_cflags"
2481
2482 with_libnetlink="no (libnetlink.h not found)"
2483
2484 AC_CHECK_HEADERS(libnetlink.h iproute/libnetlink.h linux/libnetlink.h,
2485 [
2486 with_libnetlink="yes"
2487 break
2488 ], [],
2489[#include <stdio.h>
2490#include <sys/types.h>
2491#include <asm/types.h>
2492#include <sys/socket.h>
2493#include <linux/netlink.h>
2494#include <linux/rtnetlink.h>])
2495 AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2496[#include <stdio.h>
2497#include <sys/types.h>
2498#include <asm/types.h>
2499#include <sys/socket.h>])
2500
601a4eae 2501 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
e0552af6 2502[[[
ef3e1650 2503#include <stdio.h>
975e7fd6
FF
2504#include <sys/types.h>
2505#include <asm/types.h>
2506#include <sys/socket.h>
2507#include <linux/netlink.h>
2508#include <linux/rtnetlink.h>
e0552af6
FF
2509]]],
2510[[[
ef3e1650
FF
2511int retval = TCA_STATS2;
2512return (retval);
e0552af6 2513]]]
ef3e1650
FF
2514 )],
2515 [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
975e7fd6 2516
ce8b96ae 2517 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
e0552af6 2518[[[
ef3e1650 2519#include <stdio.h>
975e7fd6
FF
2520#include <sys/types.h>
2521#include <asm/types.h>
2522#include <sys/socket.h>
2523#include <linux/netlink.h>
2524#include <linux/rtnetlink.h>
e0552af6
FF
2525]]],
2526[[[
ef3e1650
FF
2527int retval = TCA_STATS;
2528return (retval);
e0552af6 2529]]]
ef3e1650
FF
2530 )],
2531 [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
975e7fd6
FF
2532
2533 CFLAGS="$SAVE_CFLAGS"
2534fi
2535if test "x$with_libnetlink" = "xyes"
2536then
2537 AC_CHECK_LIB(netlink, rtnl_open,
2538 [with_libnetlink="yes"],
2539 [with_libnetlink="no (symbol 'rtnl_open' not found)"],
2540 [$with_libnetlink_libs])
2541fi
2542if test "x$with_libnetlink" = "xyes"
2543then
793d766a
SH
2544 SAVE_CFLAGS="$CFLAGS"
2545 CFLAGS="$CFLAGS $with_libnetlink_cflags"
2546
2547 AC_CACHE_CHECK(
2548 [if function 'rtnl_dump_filter' expects five arguments],
2549 [c_cv_rtnl_dump_filter_five_args],
2550 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
e0552af6 2551[[[
ef3e1650
FF
2552#include <stdio.h>
2553#include <sys/types.h>
f9917650
FF
2554#include <asm/types.h>
2555#include <sys/socket.h>
793d766a
SH
2556#if HAVE_LIBNETLINK_H
2557# include <libnetlink.h>
2558#elif HAVE_IPROUTE_LIBNETLINK_H
2559# include <iproute/libnetlink.h>
2560#elif HAVE_LINUX_LIBNETLINK_H
2561# include <linux/libnetlink.h>
2562#endif
e0552af6
FF
2563]]],
2564[[[
793d766a
SH
2565if (rtnl_dump_filter(NULL, NULL, NULL, NULL, NULL))
2566 return 1;
2567return 0;
e0552af6 2568]]]
ef3e1650
FF
2569 )],
2570 [c_cv_rtnl_dump_filter_five_args="yes"],
2571 [c_cv_rtnl_dump_filter_five_args="no"]
793d766a 2572 )
ef3e1650 2573)
793d766a
SH
2574
2575 AC_CACHE_CHECK(
2576 [if function 'rtnl_dump_filter' expects three arguments],
2577 [c_cv_rtnl_dump_filter_three_args],
2578 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
e0552af6 2579[[[
ef3e1650
FF
2580#include <stdio.h>
2581#include <sys/types.h>
f9917650
FF
2582#include <asm/types.h>
2583#include <sys/socket.h>
793d766a
SH
2584#if HAVE_LIBNETLINK_H
2585# include <libnetlink.h>
2586#elif HAVE_IPROUTE_LIBNETLINK_H
2587# include <iproute/libnetlink.h>
2588#elif HAVE_LINUX_LIBNETLINK_H
2589# include <linux/libnetlink.h>
2590#endif
e0552af6
FF
2591]]],
2592[[[
793d766a
SH
2593if (rtnl_dump_filter(NULL, NULL, NULL))
2594 return 1;
2595return 0;
e0552af6 2596]]]
ef3e1650
FF
2597 )],
2598 [c_cv_rtnl_dump_filter_three_args="yes"],
2599 [c_cv_rtnl_dump_filter_three_args="no"]
793d766a 2600 )
ef3e1650 2601)
793d766a
SH
2602
2603 CFLAGS="$SAVE_CFLAGS"
2604
2605 if test "x$c_cv_rtnl_dump_filter_five_args" = "xyes"
2606 then
2607 AC_DEFINE(RTNL_DUMP_FILTER_FIVE_ARGS, 1,
2608 [Define to 1 if function 'rtnl_dump_filter' expects five arguments.])
2609 fi
2610 if test "x$c_cv_rtnl_dump_filter_three_args" = "xyes"
2611 then
2612 AC_DEFINE(RTNL_DUMP_FILTER_THREE_ARGS, 1,
2613 [Define to 1 if function 'rtnl_dump_filter' expects three arguments.])
2614 fi
2615
975e7fd6
FF
2616 BUILD_WITH_LIBNETLINK_CFLAGS="$with_libnetlink_cflags"
2617 BUILD_WITH_LIBNETLINK_LIBS="$with_libnetlink_libs"
2618 AC_SUBST(BUILD_WITH_LIBNETLINK_CFLAGS)
2619 AC_SUBST(BUILD_WITH_LIBNETLINK_LIBS)
2620fi
2621AM_CONDITIONAL(BUILD_WITH_LIBNETLINK, test "x$with_libnetlink" = "xyes")
2622# }}}
2623
9f8962fb
FF
2624# --with-libnetapp {{{
2625AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2626AC_ARG_VAR([LIBNETAPP_LDFLAGS], [Linker flags required to build with libnetapp])
2627AC_ARG_VAR([LIBNETAPP_LIBS], [Other libraries required to link against libnetapp])
2628LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2629LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2630LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2631AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2632[
2633 if test -d "$withval"
2634 then
2635 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2636 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2637 with_libnetapp="yes"
2638 else
2639 with_libnetapp="$withval"
2640 fi
2641],
2642[
2643 with_libnetapp="yes"
2644])
2645
2646SAVE_CPPFLAGS="$CPPFLAGS"
2647SAVE_LDFLAGS="$LDFLAGS"
2648CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2649LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2650
2651if test "x$with_libnetapp" = "xyes"
2652then
2653 if test "x$LIBNETAPP_CPPFLAGS" != "x"
2654 then
2655 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2656 fi
2657 AC_CHECK_HEADERS(netapp_api.h,
2658 [with_libnetapp="yes"],
2659 [with_libnetapp="no (netapp_api.h not found)"])
2660fi
2661
2662if test "x$with_libnetapp" = "xyes"
2663then
2664 if test "x$LIBNETAPP_LDFLAGS" != "x"
2665 then
2666 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2667 fi
2668
2669 if test "x$LIBNETAPP_LIBS" = "x"
2670 then
3dd0749c 2671 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
9f8962fb
FF
2672 fi
2673 AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2674
2675 AC_CHECK_LIB(netapp, na_server_invoke_elem,
2676 [with_libnetapp="yes"],
2677 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2678 [$LIBNETAPP_LIBS])
df32b9d5 2679 LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
9f8962fb
FF
2680fi
2681
2682CPPFLAGS="$SAVE_CPPFLAGS"
2683LDFLAGS="$SAVE_LDFLAGS"
2684
2685if test "x$with_libnetapp" = "xyes"
2686then
2687 AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
2688fi
2689
2690AC_SUBST(LIBNETAPP_CPPFLAGS)
2691AC_SUBST(LIBNETAPP_LDFLAGS)
2692AC_SUBST(LIBNETAPP_LIBS)
2693AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
2694# }}}
2695
975e7fd6
FF
2696# --with-libnetsnmp {{{
2697with_snmp_config="net-snmp-config"
2698with_snmp_cflags=""
2699with_snmp_libs=""
2700AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
2701[
2702 if test "x$withval" = "xno"
2703 then
2704 with_libnetsnmp="no"
2705 else if test "x$withval" = "xyes"
2706 then
2707 with_libnetsnmp="yes"
2708 else
2709 if test -x "$withval"
2710 then
2711 with_snmp_config="$withval"
2712 with_libnetsnmp="yes"
2713 else
2714 with_snmp_config="$withval/bin/net-snmp-config"
2715 with_libnetsnmp="yes"
2716 fi
2717 fi; fi
2718],
2719[with_libnetsnmp="yes"])
2720if test "x$with_libnetsnmp" = "xyes"
2721then
2722 with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
2723 snmp_config_status=$?
2724
2725 if test $snmp_config_status -ne 0
2726 then
2727 with_libnetsnmp="no ($with_snmp_config failed)"
2728 else
2729 SAVE_CPPFLAGS="$CPPFLAGS"
2730 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
2731
2732 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
2733
2734 CPPFLAGS="$SAVE_CPPFLAGS"
2735 fi
2736fi
2737if test "x$with_libnetsnmp" = "xyes"
2738then
2739 with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
2740 snmp_config_status=$?
2741
2742 if test $snmp_config_status -ne 0
2743 then
2744 with_libnetsnmp="no ($with_snmp_config failed)"
2745 else
2746 AC_CHECK_LIB(netsnmp, init_snmp,
2747 [with_libnetsnmp="yes"],
2748 [with_libnetsnmp="no (libnetsnmp not found)"],
2749 [$with_snmp_libs])
2750 fi
2751fi
2752if test "x$with_libnetsnmp" = "xyes"
2753then
2754 BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
2755 BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
2756 AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
2757 AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
2758fi
2759AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
2760# }}}
2761
8757c918 2762# --with-liboconfig {{{
c64b3f3b
SH
2763with_own_liboconfig="no"
2764liboconfig_LDFLAGS="$LDFLAGS"
2765liboconfig_CPPFLAGS="$CPPFLAGS"
2766AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
2767[
2768 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2769 then
2770 if test -d "$withval/lib"
2771 then
2772 liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
2773 fi
2774 if test -d "$withval/include"
2775 then
2776 liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
2777 fi
2778 fi
2779 if test "x$withval" = "xno"
2780 then
2781 AC_MSG_ERROR("liboconfig is required")
2782 fi
2783],
2784[
2785 with_liboconfig="yes"
2786])
2787
2788save_LDFLAGS="$LDFLAGS"
2789save_CPPFLAGS="$CPPFLAGS"
2790LDFLAGS="$liboconfig_LDFLAGS"
2791CPPFLAGS="$liboconfig_CPPFLAGS"
2792AC_CHECK_LIB(oconfig, oconfig_parse_fh,
2793[
2794 with_liboconfig="yes"
2795 with_own_liboconfig="no"
2796],
2797[
2798 with_liboconfig="yes"
2799 with_own_liboconfig="yes"
2800 LDFLAGS="$save_LDFLAGS"
2801 CPPFLAGS="$save_CPPFLAGS"
2802])
2803
2804AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
2805if test "x$with_own_liboconfig" = "xyes"
2806then
2807 with_liboconfig="yes (shipped version)"
2808fi
8757c918 2809# }}}
c64b3f3b 2810
8757c918 2811# --with-liboping {{{
6997fb33
FF
2812AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
2813[
0f60795b
FF
2814 if test "x$withval" = "xyes"
2815 then
2816 with_liboping="yes"
2817 else if test "x$withval" = "xno"
2818 then
2819 with_liboping="no"
2820 else
2821 with_liboping="yes"
2822 LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
2823 LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
2824 fi; fi
2825],
2826[with_liboping="yes"])
2827
2828SAVE_CPPFLAGS="$CPPFLAGS"
2829SAVE_LDFLAGS="$LDFLAGS"
2830
2831CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
2832LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
2833
2834if test "x$with_liboping" = "xyes"
2835then
2836 if test "x$LIBOPING_CPPFLAGS" != "x"
6997fb33 2837 then
0f60795b 2838 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
6997fb33 2839 fi
0f60795b
FF
2840 AC_CHECK_HEADERS(oping.h,
2841 [with_liboping="yes"],
67d4532f 2842 [with_liboping="no (oping.h not found)"])
0f60795b
FF
2843fi
2844if test "x$with_liboping" = "xyes"
2845then
2846 if test "x$LIBOPING_LDFLAGS" != "x"
fb713675 2847 then
0f60795b
FF
2848 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
2849 fi
2850 AC_CHECK_LIB(oping, ping_construct,
2851 [with_liboping="yes"],
2852 [with_liboping="no (symbol 'ping_construct' not found)"])
2853fi
2854
2855CPPFLAGS="$SAVE_CPPFLAGS"
2856LDFLAGS="$SAVE_LDFLAGS"
6997fb33
FF
2857
2858if test "x$with_liboping" = "xyes"
2859then
0f60795b
FF
2860 BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
2861 BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
2862 AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
2863 AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
6997fb33
FF
2864fi
2865AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
8757c918 2866# }}}
6997fb33 2867
c87da662 2868# --with-oracle {{{
a737ed74
FF
2869with_oracle_cppflags=""
2870with_oracle_libs=""
2871AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
2872[
2873 if test "x$withval" = "xyes"
2874 then
2875 if test "x$ORACLE_HOME" = "x"
2876 then
2877 AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
2878 fi
2879 with_oracle="yes"
2880 else if test "x$withval" = "xno"
2881 then
2882 with_oracle="no"
2883 else
2884 with_oracle="yes"
2885 ORACLE_HOME="$withval"
2886 fi; fi
2887],
2888[
2889 if test "x$ORACLE_HOME" = "x"
2890 then
2891 with_oracle="no (ORACLE_HOME is not set)"
2892 else
2893 with_oracle="yes"
2894 fi
2895])
2896if test "x$ORACLE_HOME" != "x"
2897then
2898 with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
2899
2900 if test -e "$ORACLE_HOME/lib/ldflags"
2901 then
2902 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
2903 fi
2904 #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
2905 with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
2906fi
2907if test "x$with_oracle" = "xyes"
2908then
2909 SAVE_CPPFLAGS="$CPPFLAGS"
2910 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2911
2912 AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
2913
2914 CPPFLAGS="$SAVE_CPPFLAGS"
2915fi
2916if test "x$with_oracle" = "xyes"
2917then
2918 SAVE_CPPFLAGS="$CPPFLAGS"
2919 SAVE_LDFLAGS="$LDFLAGS"
2920 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2921 LDFLAGS="$LDFLAGS $with_oracle_libs"
2922
2923 AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
2924
2925 CPPFLAGS="$SAVE_CPPFLAGS"
2926 LDFLAGS="$SAVE_LDFLAGS"
2927fi
2928if test "x$with_oracle" = "xyes"
2929then
2930 BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
2931 BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
2932 AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
2933 AC_SUBST(BUILD_WITH_ORACLE_LIBS)
2934fi
c87da662 2935# }}}
a737ed74 2936
8757c918 2937# --with-libowcapi {{{
11ba6e7c
FF
2938with_libowcapi_cppflags=""
2939with_libowcapi_libs="-lowcapi"
2940AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
2941[
2942 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2943 then
2944 with_libowcapi_cppflags="-I$withval/include"
2945 with_libowcapi_libs="-L$withval/lib -lowcapi"
2946 with_libowcapi="yes"
2947 else
2948 with_libowcapi="$withval"
2949 fi
2950],
2951[
2952 with_libowcapi="yes"
2953])
2954if test "x$with_libowcapi" = "xyes"
2955then
2956 SAVE_CPPFLAGS="$CPPFLAGS"
2957 CPPFLAGS="$with_libowcapi_cppflags"
2958
2959 AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
2960
2961 CPPFLAGS="$SAVE_CPPFLAGS"
2962fi
2963if test "x$with_libowcapi" = "xyes"
2964then
2965 SAVE_LDFLAGS="$LDFLAGS"
2966 SAVE_CPPFLAGS="$CPPFLAGS"
2967 LDFLAGS="$with_libowcapi_libs"
2968 CPPFLAGS="$with_libowcapi_cppflags"
2969
2970 AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
2971
2972 LDFLAGS="$SAVE_LDFLAGS"
2973 CPPFLAGS="$SAVE_CPPFLAGS"
2974fi
2975if test "x$with_libowcapi" = "xyes"
2976then
2977 BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
2978 BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
2979 AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
2980 AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
2981fi
8757c918 2982# }}}
11ba6e7c 2983
8757c918 2984# --with-libpcap {{{
dd7a9bc9
FF
2985AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
2986[
2987 if test "x$withval" != "xno" && test "x$withval" != "xyes"
2988 then
2989 LDFLAGS="$LDFLAGS -L$withval/lib"
2990 CPPFLAGS="$CPPFLAGS -I$withval/include"
2991 with_libpcap="yes"
fb713675
SH
2992 else
2993 with_libpcap="$withval"
dd7a9bc9
FF
2994 fi
2995],
2996[
2997 with_libpcap="yes"
2998])
2999if test "x$with_libpcap" = "xyes"
3000then
3001 AC_CHECK_LIB(pcap, pcap_open_live,
3002 [
3003 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3004 ], [with_libpcap="no (libpcap not found)"])
3005fi
3006if test "x$with_libpcap" = "xyes"
3007then
589c5f25
FF
3008 AC_CHECK_HEADERS(pcap.h,,
3009 [with_libpcap="no (pcap.h not found)"])
dd7a9bc9
FF
3010fi
3011if test "x$with_libpcap" = "xyes"
3012then
135fcb2f
FF
3013 AC_CHECK_HEADERS(pcap-bpf.h,,
3014 [with_libpcap="no (pcap-bpf.h not found)"])
dd7a9bc9 3015fi
92f43553 3016AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
8757c918 3017# }}}
dd7a9bc9 3018
975e7fd6
FF
3019# --with-libperl {{{
3020perl_interpreter="perl"
3021AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
a1dd93a2 3022[
aa4d1f79 3023 if test -f "$withval" && test -x "$withval"
975e7fd6
FF
3024 then
3025 perl_interpreter="$withval"
3026 with_libperl="yes"
3027 else if test "x$withval" != "xno" && test "x$withval" != "xyes"
a1dd93a2
OK
3028 then
3029 LDFLAGS="$LDFLAGS -L$withval/lib"
975e7fd6
FF
3030 CPPFLAGS="$CPPFLAGS -I$withval/include"
3031 perl_interpreter="$withval/bin/perl"
3032 with_libperl="yes"
a1dd93a2 3033 else
975e7fd6
FF
3034 with_libperl="$withval"
3035 fi; fi
a1dd93a2
OK
3036],
3037[
975e7fd6 3038 with_libperl="yes"
a432a981 3039])
a459afe5 3040
f1075c22
SH
3041AC_MSG_CHECKING([for perl])
3042perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3043if test -x "$perl_interpreter"
3044then
a791a086 3045 AC_MSG_RESULT([yes ($perl_interpreter)])
f1075c22
SH
3046else
3047 perl_interpreter=""
3048 AC_MSG_RESULT([no])
3049fi
3050
a459afe5
SH
3051AC_SUBST(PERL, "$perl_interpreter")
3052
d45c77ca
FF
3053if test "x$with_libperl" = "xyes" \
3054 && test -n "$perl_interpreter"
a432a981 3055then
4519a3ef
FF
3056 SAVE_CFLAGS="$CFLAGS"
3057 SAVE_LDFLAGS="$LDFLAGS"
068e095e
DM
3058dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3059 PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3060 PERL_LDFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3acac9b0
FF
3061 CFLAGS="$CFLAGS $PERL_CFLAGS"
3062 LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
a432a981
FF
3063
3064 AC_CACHE_CHECK([for libperl],
5f5da97b 3065 [c_cv_have_libperl],
e0552af6
FF
3066 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3067[[[
0be8165a 3068#define PERL_NO_GET_CONTEXT
a432a981
FF
3069#include <EXTERN.h>
3070#include <perl.h>
3071#include <XSUB.h>
e0552af6
FF
3072]]],
3073[[[
0be8165a
SH
3074 dTHX;
3075 load_module (PERL_LOADMOD_NOIMPORT,
3acac9b0 3076 newSVpv ("Collectd::Plugin::FooBar", 24),
a432a981 3077 Nullsv);
e0552af6
FF
3078]]]
3079 )],
5f5da97b
SH
3080 [c_cv_have_libperl="yes"],
3081 [c_cv_have_libperl="no"]
a432a981
FF
3082 )
3083 )
3084
5f5da97b 3085 if test "x$c_cv_have_libperl" = "xyes"
a432a981
FF
3086 then
3087 AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3acac9b0
FF
3088 AC_SUBST(PERL_CFLAGS)
3089 AC_SUBST(PERL_LDFLAGS)
a432a981
FF
3090 else
3091 with_libperl="no"
3092 fi
3093
4519a3ef
FF
3094 CFLAGS="$SAVE_CFLAGS"
3095 LDFLAGS="$SAVE_LDFLAGS"
f1075c22
SH
3096else if test -z "$perl_interpreter"; then
3097 with_libperl="no (no perl interpreter found)"
5f5da97b 3098 c_cv_have_libperl="no"
f1075c22 3099fi; fi
a432a981
FF
3100AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3101
28785769
SH
3102if test "x$with_libperl" = "xyes"
3103then
4519a3ef
FF
3104 SAVE_CFLAGS="$CFLAGS"
3105 SAVE_LDFLAGS="$LDFLAGS"
28785769
SH
3106 CFLAGS="$CFLAGS $PERL_CFLAGS"
3107 LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3108
3109 AC_CACHE_CHECK([if perl supports ithreads],
5f5da97b 3110 [c_cv_have_perl_ithreads],
e0552af6
FF
3111 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3112[[[
28785769
SH
3113#include <EXTERN.h>
3114#include <perl.h>
3115#include <XSUB.h>
3116
3117#if !defined(USE_ITHREADS)
3118# error "Perl does not support ithreads!"
3119#endif /* !defined(USE_ITHREADS) */
e0552af6
FF
3120]]],
3121[[[ ]]]
3122 )],
5f5da97b
SH
3123 [c_cv_have_perl_ithreads="yes"],
3124 [c_cv_have_perl_ithreads="no"]
28785769
SH
3125 )
3126 )
3127
5f5da97b 3128 if test "x$c_cv_have_perl_ithreads" = "xyes"
28785769
SH
3129 then
3130 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3131 fi
3132
4519a3ef
FF
3133 CFLAGS="$SAVE_CFLAGS"
3134 LDFLAGS="$SAVE_LDFLAGS"
28785769 3135fi
037645b1
SH
3136
3137if test "x$with_libperl" = "xyes"
3138then
4519a3ef
FF
3139 SAVE_CFLAGS="$CFLAGS"
3140 SAVE_LDFLAGS="$LDFLAGS"
037645b1
SH
3141 # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3142 # (see issues #41 and #42)
3143 CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3144 LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3145
3146 AC_CACHE_CHECK([for broken Perl_load_module()],
b1d3856d 3147 [c_cv_have_broken_perl_load_module],
e0552af6
FF
3148 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3149[[[
037645b1
SH
3150#define PERL_NO_GET_CONTEXT
3151#include <EXTERN.h>
3152#include <perl.h>
3153#include <XSUB.h>
e0552af6
FF
3154]]],
3155[[[
037645b1
SH
3156 dTHX;
3157 load_module (PERL_LOADMOD_NOIMPORT,
3158 newSVpv ("Collectd::Plugin::FooBar", 24),
3159 Nullsv);
e0552af6
FF
3160]]]
3161 )],
b1d3856d
FF
3162 [c_cv_have_broken_perl_load_module="no"],
3163 [c_cv_have_broken_perl_load_module="yes"]
037645b1
SH
3164 )
3165 )
3166
4519a3ef
FF
3167 CFLAGS="$SAVE_CFLAGS"
3168 LDFLAGS="$SAVE_LDFLAGS"
037645b1 3169fi
61c19cc1 3170AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
b1d3856d 3171 test "x$c_cv_have_broken_perl_load_module" = "xyes")
388dfe0e
SH
3172
3173if test "x$with_libperl" = "xyes"
3174then
4519a3ef
FF
3175 SAVE_CFLAGS="$CFLAGS"
3176 SAVE_LDFLAGS="$LDFLAGS"
388dfe0e
SH
3177 CFLAGS="$CFLAGS $PERL_CFLAGS"
3178 LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3179
3180 AC_CHECK_MEMBER(
3181 [struct mgvtbl.svt_local],
3182 [have_struct_mgvtbl_svt_local="yes"],
3183 [have_struct_mgvtbl_svt_local="no"],
3184 [
3185#include <EXTERN.h>
3186#include <perl.h>
3187#include <XSUB.h>
3188 ])
3189
3190 if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3191 then
3192 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3193 [Define if Perl's struct mgvtbl has member svt_local.])
3194 fi
3195
4519a3ef
FF
3196 CFLAGS="$SAVE_CFLAGS"
3197 LDFLAGS="$SAVE_LDFLAGS"
388dfe0e 3198fi
8757c918 3199# }}}
28785769 3200
975e7fd6
FF
3201# --with-libpq {{{
3202with_pg_config="pg_config"
3203with_libpq_includedir=""
3204with_libpq_libdir=""
3205with_libpq_cppflags=""
3206with_libpq_ldflags=""
3207AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3208 [Path to libpq.])],
c02ba630 3209[
7f45f5b3 3210 if test "x$withval" = "xno"
c39428ae 3211 then
975e7fd6 3212 with_libpq="no"
ae03d749 3213 else if test "x$withval" = "xyes"
c02ba630 3214 then
975e7fd6 3215 with_libpq="yes"
c39428ae 3216 else
975e7fd6 3217 if test -f "$withval" && test -x "$withval";
c39428ae 3218 then
975e7fd6
FF
3219 with_pg_config="$withval"
3220 else if test -x "$withval/bin/pg_config"
3221 then
3222 with_pg_config="$withval/bin/pg_config"
3223 fi; fi
3224 with_libpq="yes"
c39428ae 3225 fi; fi
c02ba630 3226],
975e7fd6
FF
3227[
3228 with_libpq="yes"
3229])
3230if test "x$with_libpq" = "xyes"
c02ba630 3231then
975e7fd6
FF
3232 with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3233 pg_config_status=$?
c39428ae 3234
975e7fd6 3235 if test $pg_config_status -eq 0
c39428ae 3236 then
975e7fd6
FF
3237 if test -n "$with_libpq_includedir"; then
3238 for dir in $with_libpq_includedir; do
3239 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3240 done
3241 fi
c39428ae 3242 else
975e7fd6 3243 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
c39428ae 3244 fi
975e7fd6
FF
3245
3246 SAVE_CPPFLAGS="$CPPFLAGS"
3247 CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3248
3249 AC_CHECK_HEADERS(libpq-fe.h, [],
3250 [with_libpq="no (libpq-fe.h not found)"], [])
3251
3252 CPPFLAGS="$SAVE_CPPFLAGS"
c02ba630 3253fi
975e7fd6 3254if test "x$with_libpq" = "xyes"
c02ba630 3255then
975e7fd6
FF
3256 with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3257 pg_config_status=$?
c39428ae 3258
975e7fd6 3259 if test $pg_config_status -eq 0
c39428ae 3260 then
975e7fd6
FF
3261 if test -n "$with_libpq_libdir"; then
3262 for dir in $with_libpq_libdir; do
3263 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3264 done
3265 fi
c39428ae 3266 else
975e7fd6 3267 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
c39428ae 3268 fi
975e7fd6
FF
3269
3270 SAVE_LDFLAGS="$LDFLAGS"
3271 LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3272
3273 AC_CHECK_LIB(pq, PQconnectdb,
3274 [with_libpq="yes"],
3275 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3276
351026b0
DM
3277 AC_CHECK_LIB(pq, PQserverVersion,
3278 [with_libpq="yes"],
3279 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3280
975e7fd6 3281 LDFLAGS="$SAVE_LDFLAGS"
c39428ae 3282fi
975e7fd6 3283if test "x$with_libpq" = "xyes"
c39428ae 3284then
975e7fd6
FF
3285 BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3286 BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3287 AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3288 AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
c02ba630 3289fi
975e7fd6 3290AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
8757c918 3291# }}}
c02ba630 3292
975e7fd6
FF
3293# --with-libpthread {{{
3294AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3295[ if test "x$withval" != "xno" \
3296 && test "x$withval" != "xyes"
bc2d9402 3297 then
975e7fd6
FF
3298 LDFLAGS="$LDFLAGS -L$withval/lib"
3299 CPPFLAGS="$CPPFLAGS -I$withval/include"
3300 with_libpthread="yes"
bcb24183 3301 else
975e7fd6
FF
3302 if test "x$withval" = "xno"
3303 then
3304 with_libpthread="no (disabled)"
3305 fi
bc2d9402 3306 fi
975e7fd6
FF
3307], [with_libpthread="yes"])
3308if test "x$with_libpthread" = "xyes"
3fc0feb6 3309then
975e7fd6 3310 AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3fc0feb6 3311fi
24cae1ec 3312
975e7fd6 3313if test "x$with_libpthread" = "xyes"
1398c68c 3314then
975e7fd6 3315 AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
1398c68c 3316fi
975e7fd6
FF
3317if test "x$with_libpthread" = "xyes"
3318then
3319 collect_pthread=1
3320else
3321 collect_pthread=0
3322fi
3323AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3324 [Wether or not to use pthread (POSIX threads) library])
3325AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
3326# }}}
3327
b8c32e9f
FF
3328# --with-python {{{
3329with_python_prog=""
3330with_python_path="$PATH"
3331AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3332[
3333 if test "x$withval" = "xyes" || test "x$withval" = "xno"
3334 then
3335 with_python="$withval"
3336 else if test -x "$withval"
3337 then
3338 with_python_prog="$withval"
3339 with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3340 with_python="yes"
3341 else if test -d "$withval"
3342 then
3343 with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3344 with_python="yes"
3345 else
3346 AC_MSG_WARN([Argument not recognized: $withval])
3347 fi; fi; fi
3348], [with_python="yes"])
3349
3350SAVE_PATH="$PATH"
68362bd8
FF
3351SAVE_CPPFLAGS="$CPPFLAGS"
3352SAVE_LDFLAGS="$LDFLAGS"
3353SAVE_LIBS="$LIBS"
3354
b8c32e9f
FF
3355PATH="$with_python_path"
3356
3357if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3358then
3359 AC_MSG_CHECKING([for python])
3360 with_python_prog="`which python 2>/dev/null`"
3361 if test "x$with_python_prog" = "x"
3362 then
3363 AC_MSG_RESULT([not found])
3364 with_python="no (interpreter not found)"
3365 else
3366 AC_MSG_RESULT([$with_python_prog])
3367 fi
3368fi
3369
b8c32e9f
FF
3370if test "x$with_python" = "xyes"
3371then
3372 AC_MSG_CHECKING([for Python CPPFLAGS])
b9934400 3373 python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
b8c32e9f
FF
3374 python_config_status=$?
3375
3376 if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3377 then
563b2bdd 3378 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
b8c32e9f
FF
3379 with_python="no"
3380 else
3381 AC_MSG_RESULT([$python_include_path])
3382 fi
3383fi
3384
68362bd8
FF
3385if test "x$with_python" = "xyes"
3386then
3387 CPPFLAGS="-I$python_include_path $CPPFLAGS"
3388 AC_CHECK_HEADERS(Python.h,
3389 [with_python="yes"],
3390 [with_python="no ('Python.h' not found)"])
3391fi
3392
b8c32e9f
FF
3393if test "x$with_python" = "xyes"
3394then
3395 AC_MSG_CHECKING([for Python LDFLAGS])
b9934400 3396 python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2>&1`
b8c32e9f
FF
3397 python_config_status=$?
3398
3399 if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3400 then
563b2bdd 3401 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
b8c32e9f
FF
3402 with_python="no"
3403 else
3404 AC_MSG_RESULT([$python_library_path])
3405 fi
3406fi
3407
3408if test "x$with_python" = "xyes"
3409then
3410 AC_MSG_CHECKING([for Python LIBS])
b9934400 3411 python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2>&1`
b8c32e9f
FF
3412 python_config_status=$?
3413
3414 if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3415 then
563b2bdd 3416 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
b8c32e9f
FF
3417 with_python="no"
3418 else
3419 AC_MSG_RESULT([$python_library_flags])
3420 fi
3421fi
3422
68362bd8
FF
3423if test "x$with_python" = "xyes"
3424then
3425 LDFLAGS="-L$python_library_path $LDFLAGS"
3426 LIBS="$python_library_flags $LIBS"
3427
3428 AC_CHECK_FUNC(PyObject_CallFunction,
3429 [with_python="yes"],
3430 [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3431fi
3432
3433PATH="$SAVE_PATH"
3434CPPFLAGS="$SAVE_CPPFLAGS"
3435LDFLAGS="$SAVE_LDFLAGS"
3436LIBS="$SAVE_LIBS"
3437
b8c32e9f
FF
3438if test "x$with_python" = "xyes"
3439then
3440 BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3441 BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3442 BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3443 AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3444 AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3445 AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3446fi
3447# }}} --with-python
3448
3e77c9e8
FF
3449# --with-librabbitmq {{{
3450with_librabbitmq_cppflags=""
3451with_librabbitmq_ldflags=""
3452AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3453[
3454 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3455 then
3456 with_librabbitmq_cppflags="-I$withval/include"
3457 with_librabbitmq_ldflags="-L$withval/lib"
3458 with_librabbitmq="yes"
3459 else
3460 with_librabbitmq="$withval"
3461 fi
3462],
3463[
3464 with_librabbitmq="yes"
3465])
8991abf9
FF
3466SAVE_CPPFLAGS="$CPPFLAGS"
3467SAVE_LDFLAGS="$LDFLAGS"
3468CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3469LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3e77c9e8
FF
3470if test "x$with_librabbitmq" = "xyes"
3471then
3e77c9e8 3472 AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3e77c9e8
FF
3473fi
3474if test "x$with_librabbitmq" = "xyes"
3475then
8991abf9
FF
3476 # librabbitmq up to version 0.9.1 provides "library_errno", later
3477 # versions use "library_error". The library does not provide a version
3478 # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3479 AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3480 [
3481#if HAVE_STDLIB_H
3482# include <stdlib.h>
3483#endif
3484#if HAVE_STDIO_H
3485# include <stdio.h>
3486#endif
3487#if HAVE_STDINT_H
3488# include <stdint.h>
3489#endif
3490#if HAVE_INTTYPES_H
3491# include <inttypes.h>
3492#endif
3493#include <amqp.h>
3494 ])
3495fi
3496if test "x$with_librabbitmq" = "xyes"
3497then
3e77c9e8 3498 AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3e77c9e8
FF
3499fi
3500if test "x$with_librabbitmq" = "xyes"
3501then
3502 BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3503 BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3504 BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3505 AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3506 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3507 AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3508 AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3509fi
8991abf9
FF
3510CPPFLAGS="$SAVE_CPPFLAGS"
3511LDFLAGS="$SAVE_LDFLAGS"
3e77c9e8
FF
3512AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3513# }}}
3514
f51548ec
FF
3515# --with-librouteros {{{
3516AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3517[
3518 if test "x$withval" = "xyes"
3519 then
3520 with_librouteros="yes"
3521 else if test "x$withval" = "xno"
3522 then
3523 with_librouteros="no"
3524 else
3525 with_librouteros="yes"
3526 LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3527 LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3528 fi; fi
3529],
3530[with_librouteros="yes"])
3531
3532SAVE_CPPFLAGS="$CPPFLAGS"
3533SAVE_LDFLAGS="$LDFLAGS"
3534
3535CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3536LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3537
3538if test "x$with_librouteros" = "xyes"
3539then
3540 if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3541 then
3542 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3543 fi
3544 AC_CHECK_HEADERS(routeros_api.h,
3545 [with_librouteros="yes"],
67d4532f 3546 [with_librouteros="no (routeros_api.h not found)"])
f51548ec
FF
3547fi
3548if test "x$with_librouteros" = "xyes"
3549then
3550 if test "x$LIBROUTEROS_LDFLAGS" != "x"
3551 then
3552 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3553 fi
3554 AC_CHECK_LIB(routeros, ros_interface,
3555 [with_librouteros="yes"],
3556 [with_librouteros="no (symbol 'ros_interface' not found)"])
3557fi
3558
3559CPPFLAGS="$SAVE_CPPFLAGS"
3560LDFLAGS="$SAVE_LDFLAGS"
3561
3562if test "x$with_librouteros" = "xyes"
3563then
3564 BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3565 BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3566 AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3567 AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3568fi
3569AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3570# }}}
3571
975e7fd6
FF
3572# --with-librrd {{{
3573# AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3574librrd_cflags=""
3575librrd_ldflags=""
3576librrd_threadsafe="yes"
3577librrd_rrdc_update="no"
3578AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3579[ if test "x$withval" != "xno" && test "x$withval" != "xyes"
3580 then
3581 librrd_cflags="-I$withval/include"
3582 librrd_ldflags="-L$withval/lib"
3583 with_librrd="yes"
3584 else
3585 with_librrd="$withval"
3586 fi
3587], [with_librrd="yes"])
3588if test "x$with_librrd" = "xyes"
3fc0feb6 3589then
bcb24183
FF
3590 SAVE_CPPFLAGS="$CPPFLAGS"
3591 SAVE_LDFLAGS="$LDFLAGS"
3592
975e7fd6
FF
3593 CPPFLAGS="$CPPFLAGS $librrd_cflags"
3594 LDFLAGS="$LDFLAGS $librrd_ldflags"
3fc0feb6 3595
975e7fd6 3596 AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
bcb24183
FF
3597
3598 CPPFLAGS="$SAVE_CPPFLAGS"
3599 LDFLAGS="$SAVE_LDFLAGS"
bc2d9402 3600fi
975e7fd6 3601if test "x$with_librrd" = "xyes"
8f6c03d5 3602then
06c09fee 3603 SAVE_CPPFLAGS="$CPPFLAGS"
975e7fd6 3604 SAVE_LDFLAGS="$LDFLAGS"
06c09fee 3605
975e7fd6
FF
3606 CPPFLAGS="$CPPFLAGS $librrd_cflags"
3607 LDFLAGS="$LDFLAGS $librrd_ldflags"
3608
3609 AC_CHECK_LIB(rrd_th, rrd_update_r,
3610 [with_librrd="yes"
3611 librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3612 ],
3613 [librrd_threadsafe="no"
3614 AC_CHECK_LIB(rrd, rrd_update,
3615 [with_librrd="yes"
3616 librrd_ldflags="$librrd_ldflags -lrrd -lm"
3617 ],
3618 [with_librrd="no (symbol 'rrd_update' not found)"],
3619 [-lm])
3620 ],
3621 [-lm])
3622
3623 if test "x$librrd_threadsafe" = "xyes"
3624 then
3625 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3626 else
3627 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3628 fi
06c09fee
FF
3629
3630 CPPFLAGS="$SAVE_CPPFLAGS"
975e7fd6 3631 LDFLAGS="$SAVE_LDFLAGS"
8f6c03d5 3632fi
975e7fd6 3633if test "x$with_librrd" = "xyes"
bcb24183 3634then
975e7fd6
FF
3635 BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3636 BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3637 AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3638 AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3639fi
3640if test "x$librrd_threadsafe" = "xyes"
3641then
3642 AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
bcb24183 3643fi
8757c918 3644# }}}
bc2d9402 3645
975e7fd6
FF
3646# --with-libsensors {{{
3647with_sensors_cflags=""
3648with_sensors_ldflags=""
3649AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
558a6a1c 3650[
975e7fd6 3651 if test "x$withval" = "xno"
558a6a1c 3652 then
975e7fd6 3653 with_libsensors="no"
558a6a1c 3654 else
975e7fd6
FF
3655 with_libsensors="yes"
3656 if test "x$withval" != "xyes"
3657 then
3658 with_sensors_cflags="-I$withval/include"
3659 with_sensors_ldflags="-L$withval/lib"
3660 with_libsensors="yes"
3661 fi
3662 fi
558a6a1c
FF
3663],
3664[
975e7fd6 3665 if test "x$ac_system" = "xLinux"
558a6a1c 3666 then
975e7fd6
FF
3667 with_libsensors="yes"
3668 else
3669 with_libsensors="no (Linux only library)"
558a6a1c 3670 fi
975e7fd6
FF
3671])
3672if test "x$with_libsensors" = "xyes"
558a6a1c 3673then
975e7fd6
FF
3674 SAVE_CPPFLAGS="$CPPFLAGS"
3675 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
558a6a1c 3676
975e7fd6
FF
3677# AC_CHECK_HEADERS(sensors/sensors.h,
3678# [
3679# AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3680# ],
3681# [with_libsensors="no (sensors/sensors.h not found)"])
3682 AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3683
3684 CPPFLAGS="$SAVE_CPPFLAGS"
558a6a1c 3685fi
975e7fd6 3686if test "x$with_libsensors" = "xyes"
558a6a1c 3687then
975e7fd6
FF
3688 SAVE_CPPFLAGS="$CPPFLAGS"
3689 SAVE_LDFLAGS="$LDFLAGS"
3690 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3691 LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3692
3693 AC_CHECK_LIB(sensors, sensors_init,
558a6a1c 3694 [
975e7fd6 3695 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
558a6a1c 3696 ],
975e7fd6
FF
3697 [with_libsensors="no (libsensors not found)"])
3698
3699 CPPFLAGS="$SAVE_CPPFLAGS"
3700 LDFLAGS="$SAVE_LDFLAGS"
558a6a1c 3701fi
975e7fd6 3702if test "x$with_libsensors" = "xyes"
558a6a1c 3703then
975e7fd6
FF
3704 BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3705 BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3706 AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3707 AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
558a6a1c 3708fi
975e7fd6 3709AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
8757c918 3710# }}}
558a6a1c 3711
975e7fd6
FF
3712# --with-libstatgrab {{{
3713with_libstatgrab_cflags=""
3714with_libstatgrab_ldflags=""
3715AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
c1406acc 3716[
ad44a981
FF
3717 if test "x$withval" != "xno" \
3718 && test "x$withval" != "xyes"
3719 then
3720 with_libstatgrab_cflags="-I$withval/include"
3721 with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3722 with_libstatgrab="yes"
3723 with_libstatgrab_pkg_config="no"
3724 else
3725 with_libstatgrab="$withval"
3726 with_libstatgrab_pkg_config="yes"
3727 fi
3728 ],
c1406acc 3729[
ad44a981
FF
3730 with_libstatgrab="yes"
3731 with_libstatgrab_pkg_config="yes"
c1406acc 3732])
ad44a981 3733
975e7fd6 3734if test "x$with_libstatgrab" = "xyes" \
ad44a981 3735 && test "x$with_libstatgrab_pkg_config" = "xyes"
c1406acc 3736then
ad44a981 3737 if test "x$PKG_CONFIG" != "x"
975e7fd6 3738 then
ad44a981
FF
3739 AC_MSG_CHECKING([pkg-config for libstatgrab])
3740 temp_result="found"
3741 $PKG_CONFIG --exists libstatgrab 2>/dev/null
3742 if test "$?" != "0"
3743 then
3744 with_libstatgrab_pkg_config="no"
67d4532f 3745 with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
ad44a981
FF
3746 temp_result="not found"
3747 fi
3748 AC_MSG_RESULT([$temp_result])
3749 else
3750 AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
975e7fd6 3751 with_libstatgrab_pkg_config="no"
ad44a981 3752 with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
975e7fd6 3753 fi
975e7fd6 3754fi
5d26a660 3755
975e7fd6
FF
3756if test "x$with_libstatgrab" = "xyes" \
3757 && test "x$with_libstatgrab_pkg_config" = "xyes" \
3758 && test "x$with_libstatgrab_cflags" = "x"
3759then
3760 AC_MSG_CHECKING([for libstatgrab CFLAGS])
3761 temp_result="`$PKG_CONFIG --cflags libstatgrab`"
3762 if test "$?" = "0"
3763 then
3764 with_libstatgrab_cflags="$temp_result"
3765 else
3766 with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
3767 temp_result="$PKG_CONFIG --cflags libstatgrab failed"
3768 fi
3769 AC_MSG_RESULT([$temp_result])
3770fi
5d26a660 3771
975e7fd6
FF
3772if test "x$with_libstatgrab" = "xyes" \
3773 && test "x$with_libstatgrab_pkg_config" = "xyes" \
3774 && test "x$with_libstatgrab_ldflags" = "x"
3775then
3776 AC_MSG_CHECKING([for libstatgrab LDFLAGS])
3777 temp_result="`$PKG_CONFIG --libs libstatgrab`"
3778 if test "$?" = "0"
3779 then
3780 with_libstatgrab_ldflags="$temp_result"
3781 else
3782 with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
3783 temp_result="$PKG_CONFIG --libs libstatgrab failed"
3784 fi
3785 AC_MSG_RESULT([$temp_result])
3786fi
5d26a660 3787
975e7fd6
FF
3788if test "x$with_libstatgrab" = "xyes"
3789then
3790 SAVE_CPPFLAGS="$CPPFLAGS"
3791 CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
5d26a660 3792
975e7fd6
FF
3793 AC_CHECK_HEADERS(statgrab.h,
3794 [with_libstatgrab="yes"],
3795 [with_libstatgrab="no (statgrab.h not found)"])
c1406acc 3796
975e7fd6 3797 CPPFLAGS="$SAVE_CPPFLAGS"
c1406acc 3798fi
975e7fd6
FF
3799
3800if test "x$with_libstatgrab" = "xyes"
c1406acc 3801then
975e7fd6
FF
3802 SAVE_CFLAGS="$CFLAGS"
3803 SAVE_LDFLAGS="$LDFLAGS"
3804
3805 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
3806 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
3807
3808 AC_CHECK_LIB(statgrab, sg_init,
3809 [with_libstatgrab="yes"],
3810 [with_libstatgrab="no (symbol sg_init not found)"])
3811
3812 CFLAGS="$SAVE_CFLAGS"
3813 LDFLAGS="$SAVE_LDFLAGS"
c1406acc 3814fi
975e7fd6
FF
3815
3816AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
3817if test "x$with_libstatgrab" = "xyes"
c1406acc 3818then
975e7fd6
FF
3819 AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
3820 BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
3821 BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
3822 AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
3823 AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
c1406acc 3824fi
8757c918 3825# }}}
5d99fadf 3826
5395a6d4
FF
3827# --with-libtokyotyrant {{{
3828with_libtokyotyrant_cppflags=""
3829with_libtokyotyrant_ldflags=""
3830with_libtokyotyrant_libs=""
3831AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
3832[
3833 if test "x$withval" = "xno"
3834 then
3835 with_libtokyotyrant="no"
3836 else if test "x$withval" = "xyes"
3837 then
3838 with_libtokyotyrant="yes"
3839 else
3840 with_libtokyotyrant_cppflags="-I$withval/include"
3841 with_libtokyotyrant_ldflags="-L$withval/include"
3842 with_libtokyotyrant_libs="-ltokyotyrant"
3843 with_libtokyotyrant="yes"
3844 fi; fi
3845],
3846[
3847 with_libtokyotyrant="yes"
3848])
3849
3850if test "x$with_libtokyotyrant" = "xyes"
3851then
3852 if $PKG_CONFIG --exists tokyotyrant
3853 then
3854 with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
3855 with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `pkg-config --libs-only-L tokyotyrant`"
3856 with_libtokyotyrant_libs="$with_libtokyotyrant_libs `pkg-config --libs-only-l tokyotyrant`"
3857 fi
3858fi
3859
3860SAVE_CPPFLAGS="$CPPFLAGS"
3861SAVE_LDFLAGS="$LDFLAGS"
3862CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
3863LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
3864
3865if test "x$with_libtokyotyrant" = "xyes"
3866then
3867 AC_CHECK_HEADERS(tcrdb.h,
3868 [
3869 AC_DEFINE(HAVE_TCRDB_H, 1,
3870 [Define to 1 if you have the <tcrdb.h> header file.])
3871 ], [with_libtokyotyrant="no (tcrdb.h not found)"])
3872fi
3873
3874if test "x$with_libtokyotyrant" = "xyes"
3875then
3876 AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
3877 [
3878 AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
3879 [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
3880 ],
3881 [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
3882 [$with_libtokyotyrant_libs])
3883fi
3884
3885CPPFLAGS="$SAVE_CPPFLAGS"
3886LDFLAGS="$SAVE_LDFLAGS"
3887
3888if test "x$with_libtokyotyrant" = "xyes"
3889then
3890 BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
3891 BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
3892 BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
3893 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
3894 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
3895 AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
3896fi
3897AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
3898# }}}
3899
6597f3a6
FF
3900# --with-libupsclient {{{
3901with_libupsclient_config=""
3902with_libupsclient_cflags=""
3903with_libupsclient_libs=""
296384e9 3904AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
a0b4b6b4 3905[
6597f3a6 3906 if test "x$withval" = "xno"
a0b4b6b4 3907 then
6597f3a6
FF
3908 with_libupsclient="no"
3909 else if test "x$withval" = "xyes"
3910 then
3911 with_libupsclient="use_pkgconfig"
3912 else
3913 if test -x "$withval"
a0b4b6b4 3914 then
6597f3a6
FF
3915 with_libupsclient_config="$withval"
3916 with_libupsclient="use_libupsclient_config"
3917 else if test -x "$withval/bin/libupsclient-config"
a0b4b6b4 3918 then
caa17ae8 3919 with_libupsclient_config="$withval/bin/libupsclient-config"
6597f3a6
FF
3920 with_libupsclient="use_libupsclient_config"
3921 else
3922 AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
3923 with_libupsclient_cflags="-I$withval/include"
3924 with_libupsclient_libs="-L$withval/lib -lupsclient"
3925 with_libupsclient="yes"
a0b4b6b4 3926 fi; fi
a0b4b6b4
SH
3927 fi; fi
3928],
6597f3a6 3929[with_libupsclient="use_pkgconfig"])
a0b4b6b4 3930
6597f3a6
FF
3931# configure using libupsclient-config
3932if test "x$with_libupsclient" = "xuse_libupsclient_config"
249d5776 3933then
6597f3a6
FF
3934 AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
3935 with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
3936 if test $? -ne 0
a0b4b6b4 3937 then
6597f3a6 3938 with_libupsclient="no ($with_libupsclient_config failed)"
a0b4b6b4 3939 fi
6597f3a6
FF
3940 with_libupsclient_libs="`$with_libupsclient_config --libs`"
3941 if test $? -ne 0
a0b4b6b4 3942 then
6597f3a6 3943 with_libupsclient="no ($with_libupsclient_config failed)"
a0b4b6b4 3944 fi
a0b4b6b4 3945fi
6597f3a6 3946if test "x$with_libupsclient" = "xuse_libupsclient_config"
c044208a 3947then
6597f3a6 3948 with_libupsclient="yes"
c044208a 3949fi
249d5776 3950
6597f3a6
FF
3951# configure using pkg-config
3952if test "x$with_libupsclient" = "xuse_pkgconfig"
c044208a 3953then
6597f3a6 3954 if test "x$PKG_CONFIG" = "x"
249d5776 3955 then
6597f3a6 3956 with_libupsclient="no (Don't have pkg-config)"
249d5776 3957 fi
c044208a 3958fi
6597f3a6 3959if test "x$with_libupsclient" = "xuse_pkgconfig"
c044208a 3960then
6597f3a6
FF
3961 AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
3962 $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
3963 if test $? -ne 0
c044208a 3964 then
67d4532f 3965 with_libupsclient="no (pkg-config doesn't know libupsclient)"
c044208a 3966 fi
c044208a 3967fi
6597f3a6 3968if test "x$with_libupsclient" = "xuse_pkgconfig"
c044208a 3969then
6597f3a6 3970 with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
975e7fd6 3971 if test $? -ne 0
c044208a 3972 then
6597f3a6 3973 with_libupsclient="no ($PKG_CONFIG failed)"
975e7fd6 3974 fi
6597f3a6 3975 with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
975e7fd6
FF
3976 if test $? -ne 0
3977 then
6597f3a6 3978 with_libupsclient="no ($PKG_CONFIG failed)"
c044208a 3979 fi
c044208a 3980fi
6597f3a6
FF
3981if test "x$with_libupsclient" = "xuse_pkgconfig"
3982then
3983 with_libupsclient="yes"
3984fi
3985
3986# with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
3987# the actual checks.
975e7fd6
FF
3988if test "x$with_libupsclient" = "xyes"
3989then
3990 SAVE_CPPFLAGS="$CPPFLAGS"
3991 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
c044208a 3992
975e7fd6
FF
3993 AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
3994
3995 CPPFLAGS="$SAVE_CPPFLAGS"
3996fi
3997if test "x$with_libupsclient" = "xyes"
c044208a
FF
3998then
3999 SAVE_CPPFLAGS="$CPPFLAGS"
975e7fd6 4000 SAVE_LDFLAGS="$LDFLAGS"
c044208a 4001
975e7fd6
FF
4002 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4003 LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4004
4005 AC_CHECK_LIB(upsclient, upscli_connect,
4006 [with_libupsclient="yes"],
4007 [with_libupsclient="no (symbol upscli_connect not found)"])
c044208a
FF
4008
4009 CPPFLAGS="$SAVE_CPPFLAGS"
975e7fd6 4010 LDFLAGS="$SAVE_LDFLAGS"
c044208a 4011fi
975e7fd6
FF
4012if test "x$with_libupsclient" = "xyes"
4013then
4014 SAVE_CPPFLAGS="$CPPFLAGS"
4015 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
c044208a 4016
975e7fd6
FF
4017 AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4018[#include <stdlib.h>
4019#include <stdio.h>
4020#include <upsclient.h>])
4021
4022 CPPFLAGS="$SAVE_CPPFLAGS"
4023fi
4024if test "x$with_libupsclient" = "xyes"
c044208a 4025then
975e7fd6
FF
4026 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4027 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4028 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4029 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
c044208a
FF
4030fi
4031# }}}
4032
6597f3a6
FF
4033# --with-libxmms {{{
4034with_xmms_config="xmms-config"
4035with_xmms_cflags=""
4036with_xmms_libs=""
4037AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
a0b4b6b4 4038[
6597f3a6
FF
4039 if test "x$withval" != "xno" \
4040 && test "x$withval" != "xyes"
a0b4b6b4 4041 then
a0b4b6b4
SH
4042 if test -f "$withval" && test -x "$withval";
4043 then
6597f3a6
FF
4044 with_xmms_config="$withval"
4045 else if test -x "$withval/bin/xmms-config"
a0b4b6b4 4046 then
6597f3a6 4047 with_xmms_config="$withval/bin/xmms-config"
a0b4b6b4 4048 fi; fi
6597f3a6
FF
4049 with_libxmms="yes"
4050 else if test "x$withval" = "xno"
4051 then
4052 with_libxmms="no"
4053 else
4054 with_libxmms="yes"
a0b4b6b4
SH
4055 fi; fi
4056],
4057[
6597f3a6 4058 with_libxmms="yes"
a0b4b6b4 4059])
6597f3a6 4060if test "x$with_libxmms" = "xyes"
a0b4b6b4 4061then
6597f3a6
FF
4062 with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4063 xmms_config_status=$?
a0b4b6b4 4064
6597f3a6 4065 if test $xmms_config_status -ne 0
a0b4b6b4 4066 then
6597f3a6 4067 with_libxmms="no"
a0b4b6b4 4068 fi
a0b4b6b4 4069fi
6597f3a6 4070if test "x$with_libxmms" = "xyes"
a0b4b6b4 4071then
6597f3a6
FF
4072 with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4073 xmms_config_status=$?
a0b4b6b4 4074
6597f3a6 4075 if test $xmms_config_status -ne 0
a0b4b6b4 4076 then
6597f3a6 4077 with_libxmms="no"
a0b4b6b4 4078 fi
a0b4b6b4 4079fi
6597f3a6 4080if test "x$with_libxmms" = "xyes"
a0b4b6b4 4081then
6597f3a6
FF
4082 AC_CHECK_LIB(xmms, xmms_remote_get_info,
4083 [
4084 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4085 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4086 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4087 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4088 ],
4089 [
4090 with_libxmms="no"
4091 ],
4092 [$with_xmms_libs])
a0b4b6b4 4093fi
6597f3a6
FF
4094with_libxmms_numeric=0
4095if test "x$with_libxmms" = "xyes"
4096then
4097 with_libxmms_numeric=1
4098fi
4099AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4100AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4101# }}}
a0b4b6b4 4102
bc51ef21
DM
4103# --with-libyajl {{{
4104with_libyajl_cppflags=""
4105with_libyajl_ldflags=""
4106AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4107[
4108 if test "x$withval" != "xno" && test "x$withval" != "xyes"
4109 then
4110 with_libyajl_cppflags="-I$withval/include"
4111 with_libyajl_ldflags="-L$withval/lib"
4112 with_libyajl="yes"
4113 else
4114 with_libyajl="$withval"
4115 fi
4116],
4117[
4118 with_libyajl="yes"
4119])
4120if test "x$with_libyajl" = "xyes"
4121then
4122 SAVE_CPPFLAGS="$CPPFLAGS"
4123 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4124
4125 AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
5ec7a37c 4126 AC_CHECK_HEADERS(yajl/yajl_version.h)
bc51ef21
DM
4127
4128 CPPFLAGS="$SAVE_CPPFLAGS"
4129fi
4130if test "x$with_libyajl" = "xyes"
4131then
4132 SAVE_CPPFLAGS="$CPPFLAGS"
4133 SAVE_LDFLAGS="$LDFLAGS"
4134 CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4135 LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4136
4137 AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4138
4139 CPPFLAGS="$SAVE_CPPFLAGS"
4140 LDFLAGS="$SAVE_LDFLAGS"
4141fi
4142if test "x$with_libyajl" = "xyes"
4143then
4144 BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4145 BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4146 BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4147 AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4148 AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4149 AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4150 AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4151fi
4152AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4153# }}}
4154
e9a9482a
JR
4155# --with-libvarnish {{{
4156with_libvarnish_cppflags=""
24da3d76
FF
4157with_libvarnish_cflags=""
4158with_libvarnish_libs=""
e9a9482a
JR
4159AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
4160[
24da3d76
FF
4161 if test "x$withval" = "xno"
4162 then
4163 with_libvarnish="no"
4164 else if test "x$withval" = "xyes"
4165 then
4166 with_libvarnish="use_pkgconfig"
4167 else if test -d "$with_libvarnish/lib"
e9a9482a 4168 then
24da3d76
FF
4169 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
4170 with_libvarnish_cflags="-I$withval/include"
30f927c1 4171 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
e9a9482a 4172 with_libvarnish="yes"
24da3d76 4173 fi; fi; fi
e9a9482a 4174],
24da3d76
FF
4175[with_libvarnish="use_pkgconfig"])
4176
4177# configure using pkg-config
4178if test "x$with_libvarnish" = "xuse_pkgconfig"
4179then
4180 if test "x$PKG_CONFIG" = "x"
4181 then
4182 with_libvarnish="no (Don't have pkg-config)"
4183 fi
4184fi
4185if test "x$with_libvarnish" = "xuse_pkgconfig"
4186then
4187 AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
4188 $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
4189 if test $? -ne 0
4190 then
67d4532f 4191 with_libvarnish="no (pkg-config doesn't know varnishapi)"
24da3d76
FF
4192 fi
4193fi
4194if test "x$with_libvarnish" = "xuse_pkgconfig"
4195then
4196 with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
4197 if test $? -ne 0
4198 then
4199 with_libvarnish="no ($PKG_CONFIG failed)"
4200 fi
4201 with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
4202 if test $? -ne 0
4203 then
4204 with_libvarnish="no ($PKG_CONFIG failed)"
4205 fi
4206fi
4207if test "x$with_libvarnish" = "xuse_pkgconfig"
4208then
e9a9482a 4209 with_libvarnish="yes"
24da3d76
FF
4210fi
4211
4212# with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
4213# the actual checks.
e9a9482a
JR
4214if test "x$with_libvarnish" = "xyes"
4215then
4216 SAVE_CPPFLAGS="$CPPFLAGS"
24da3d76
FF
4217 CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4218 AC_CHECK_HEADERS(varnish/varnishapi.h, [], [with_libvarnish="no (varnish/varnishapi.h not found)"])
e9a9482a
JR
4219
4220 CPPFLAGS="$SAVE_CPPFLAGS"
4221fi
4222if test "x$with_libvarnish" = "xyes"
4223then
4224 SAVE_CPPFLAGS="$CPPFLAGS"
24da3d76
FF
4225 #SAVE_LDFLAGS="$LDFLAGS"
4226
4227 CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4228 #LDFLAGS="$LDFLAGS $with_libvarnish_libs"
e9a9482a 4229
9dcea8c1
JR
4230 AC_CHECK_HEADERS(varnish/vsc.h,
4231 [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
4232 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])])
e9a9482a
JR
4233
4234 CPPFLAGS="$SAVE_CPPFLAGS"
24da3d76 4235 #LDFLAGS="$SAVE_LDFLAGS"
e9a9482a
JR
4236fi
4237if test "x$with_libvarnish" = "xyes"
4238then
24da3d76
FF
4239 BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
4240 BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
4241 AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
e9a9482a 4242 AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
e9a9482a 4243fi
e9a9482a
JR
4244# }}}
4245
8757c918 4246# pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
c6be63a7
FF
4247with_libxml2="no (pkg-config isn't available)"
4248with_libxml2_cflags=""
4249with_libxml2_ldflags=""
4250with_libvirt="no (pkg-config isn't available)"
df26df90
FF
4251with_libvirt_cflags=""
4252with_libvirt_ldflags=""
c6be63a7
FF
4253if test "x$PKG_CONFIG" != "x"
4254then
4255 pkg-config --exists 'libxml-2.0' 2>/dev/null
4256 if test "$?" = "0"
4257 then
4258 with_libxml2="yes"
4259 else
67d4532f 4260 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
c6be63a7
FF
4261 fi
4262
4263 pkg-config --exists libvirt 2>/dev/null
4264 if test "$?" = "0"
4265 then
4266 with_libvirt="yes"
4267 else
67d4532f 4268 with_libvirt="no (pkg-config doesn't know libvirt)"
c6be63a7
FF
4269 fi
4270fi
df26df90
FF
4271if test "x$with_libxml2" = "xyes"
4272then
c6be63a7
FF
4273 with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
4274 if test $? -ne 0
4275 then
4276 with_libxml2="no"
4277 fi
4278 with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
4279 if test $? -ne 0
4280 then
4281 with_libxml2="no"
4282 fi
4283fi
4284if test "x$with_libxml2" = "xyes"
4285then
4286 SAVE_CPPFLAGS="$CPPFLAGS"
4287 CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
4288
4289 AC_CHECK_HEADERS(libxml/parser.h, [],
4290 [with_libxml2="no (libxml/parser.h not found)"])
4291
4292 CPPFLAGS="$SAVE_CPPFLAGS"
4293fi
4294if test "x$with_libxml2" = "xyes"
4295then
4296 SAVE_CFLAGS="$CFLAGS"
ae6f041d 4297 SAVE_LDFLAGS="$LDFLAGS"
c6be63a7
FF
4298
4299 CFLAGS="$CFLAGS $with_libxml2_cflags"
4300 LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
4301
4302 AC_CHECK_LIB(xml2, xmlXPathEval,
4303 [with_libxml2="yes"],
4304 [with_libxml2="no (symbol xmlXPathEval not found)"])
4305
4306 CFLAGS="$SAVE_CFLAGS"
4307 LDFLAGS="$SAVE_LDFLAGS"
4308fi
4309dnl Add the right compiler flags and libraries.
4310if test "x$with_libxml2" = "xyes"; then
4311 BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
4312 BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
4313 AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
4314 AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
4315fi
4316if test "x$with_libvirt" = "xyes"
4317then
df26df90
FF
4318 with_libvirt_cflags="`pkg-config --cflags libvirt`"
4319 if test $? -ne 0
4320 then
4321 with_libvirt="no"
4322 fi
4323 with_libvirt_ldflags="`pkg-config --libs libvirt`"
4324 if test $? -ne 0
4325 then
4326 with_libvirt="no"
4327 fi
4328fi
4329if test "x$with_libvirt" = "xyes"
c6be63a7
FF
4330then
4331 SAVE_CPPFLAGS="$CPPFLAGS"
4332 CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
4333
4334 AC_CHECK_HEADERS(libvirt/libvirt.h, [],
4335 [with_libvirt="no (libvirt/libvirt.h not found)"])
4336
4337 CPPFLAGS="$SAVE_CPPFLAGS"
4338fi
4339if test "x$with_libvirt" = "xyes"
df26df90
FF
4340then
4341 SAVE_CFLAGS="$CFLAGS"
ae6f041d 4342 SAVE_LDFLAGS="$LDFLAGS"
df26df90
FF
4343
4344 CFLAGS="$CFLAGS $with_libvirt_cflags"
4345 LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
4346
c6be63a7 4347 AC_CHECK_LIB(virt, virDomainBlockStats,
df26df90
FF
4348 [with_libvirt="yes"],
4349 [with_libvirt="no (symbol virDomainBlockStats not found)"])
4350
4351 CFLAGS="$SAVE_CFLAGS"
4352 LDFLAGS="$SAVE_LDFLAGS"
f69ce75e
RJ
4353fi
4354dnl Add the right compiler flags and libraries.
4355if test "x$with_libvirt" = "xyes"; then
c6be63a7
FF
4356 BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
4357 BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
4358 AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
4359 AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
f69ce75e 4360fi
8757c918 4361# }}}
f69ce75e 4362
975e7fd6
FF
4363# $PKG_CONFIG --exists OpenIPMIpthread {{{
4364with_libopenipmipthread="yes"
4365with_libopenipmipthread_cflags=""
4366with_libopenipmipthread_libs=""
4367
4368AC_MSG_CHECKING([for pkg-config])
4369temp_result="no"
4370if test "x$PKG_CONFIG" = "x"
4371then
4372 with_libopenipmipthread="no"
4373 temp_result="no"
4374else
4375 temp_result="$PKG_CONFIG"
4376fi
4377AC_MSG_RESULT([$temp_result])
4378
4379if test "x$with_libopenipmipthread" = "xyes"
4380then
4381 AC_MSG_CHECKING([for libOpenIPMIpthread])
4382 $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
4383 if test "$?" != "0"
4384 then
67d4532f 4385 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
975e7fd6
FF
4386 fi
4387 AC_MSG_RESULT([$with_libopenipmipthread])
4388fi
4389
4390if test "x$with_libopenipmipthread" = "xyes"
4391then
4392 AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
4393 temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
4394 if test "$?" = "0"
4395 then
4396 with_libopenipmipthread_cflags="$temp_result"
4397 else
4398 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
4399 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
4400 fi
4401 AC_MSG_RESULT([$temp_result])
4402fi
4403
4404if test "x$with_libopenipmipthread" = "xyes"
4405then
4406 AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
4407 temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
4408 if test "$?" = "0"
4409 then
4410 with_libopenipmipthread_ldflags="$temp_result"
4411 else
4412 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
4413 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
4414 fi
4415 AC_MSG_RESULT([$temp_result])
4416fi
4417
4418if test "x$with_libopenipmipthread" = "xyes"
4419then
4420 SAVE_CPPFLAGS="$CPPFLAGS"
4421 CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
4422
4423 AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
4424 [with_libopenipmipthread="yes"],
4425 [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
4426[#include <OpenIPMI/ipmiif.h>
4427#include <OpenIPMI/ipmi_err.h>
4428#include <OpenIPMI/ipmi_posix.h>
4429#include <OpenIPMI/ipmi_conn.h>
4430])
4431
4432 CPPFLAGS="$SAVE_CPPFLAGS"
4433fi
4434
4435if test "x$with_libopenipmipthread" = "xyes"
4436then
4437 BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
4438 BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
4439 AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
4440 AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
4441fi
4442# }}}
4443
c044208a
FF
4444PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
4445 [with_libnotify="yes"],
67d4532f
FF
4446 [if test "x$LIBNOTIFY_PKG_ERRORS" = "x"; then
4447 with_libnotify="no"
4448 else
4449 with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"
4450 fi])
c044208a 4451
86ca149a
FF
4452# Check for enabled/disabled features
4453#
6e765a02 4454
3c12e8a6
NW
4455# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4456# ------------------------------------------------------------
4457dnl
4458m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
4459dnl
4460AC_DEFUN(
4461 [AC_COLLECTD],
4462 [
4463 m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
4464 m4_if(
4465 [$2],
4466 [enable],
4467 [dnl
4468 m4_define([EnDis],[disabled])dnl
4469 m4_define([YesNo],[no])dnl
4470 ],dnl
4471 [m4_if(
4472 [$2],
4473 [disable],
4474 [dnl
4475 m4_define([EnDis],[enabled])dnl
4476 m4_define([YesNo],[yes])dnl
4477 ],
4478 [dnl
4479 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
4480 ]dnl
4481 )]dnl
4482 )dnl
4483 m4_if([$3], [feature], [],
4484 [m4_if(
4485 [$3], [module], [],
4486 [dnl
4487 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
4488 ]dnl
4489 )]dnl
4490 )dnl
4491 AC_ARG_ENABLE(
4492 [$1],
4493 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
4494 [],
4495 enable_$1='[YesNo]'dnl
4496 )# AC_ARG_ENABLE
4497if test "x$enable_$1" = "xno"
4498then
4499 collectd_$1=0
6e765a02 4500else
3c12e8a6 4501 if test "x$enable_$1" = "xyes"
6e765a02 4502 then
3c12e8a6 4503 collectd_$1=1
6e765a02 4504 else
3c12e8a6
NW
4505 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
4506 collectd_$1=1
4507 enable_$1='yes'
6e765a02
FF
4508 fi
4509fi
3c12e8a6
NW
4510 AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
4511 AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
4512 ]dnl
4513)# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4514
a905d397
FF
4515# AC_PLUGIN(name, default, info)
4516# ------------------------------------------------------------
4517dnl
4518AC_DEFUN(
4519 [AC_PLUGIN],
4520 [
4521 enable_plugin="no"
cb622208 4522 force="no"
a905d397
FF
4523 AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
4524 [
4525 if test "x$enableval" = "xyes"
4526 then
4527 enable_plugin="yes"
cb622208 4528 else if test "x$enableval" = "xforce"
a905d397
FF
4529 then
4530 enable_plugin="yes"
cb622208 4531 force="yes"
a905d397 4532 else
c632c2e5 4533 enable_plugin="no (disabled on command line)"
cb622208 4534 fi; fi
a905d397
FF
4535 ],
4536 [
2fd1f725
SH
4537 if test "x$enable_all_plugins" = "xauto"
4538 then
4539 if test "x$2" = "xyes"
4540 then
4541 enable_plugin="yes"
4542 else
4543 enable_plugin="no"
4544 fi
4545 else
4546 enable_plugin="$enable_all_plugins"
4547 fi
a905d397
FF
4548 ])
4549 if test "x$enable_plugin" = "xyes"
4550 then
cb622208 4551 if test "x$2" = "xyes" || test "x$force" = "xyes"
452db816
FF
4552 then
4553 AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
cb622208
SH
4554 if test "x$2" != "xyes"
4555 then
4556 dependency_warning="yes"
4557 fi
452db816
FF
4558 else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
4559 dependency_error="yes"
4560 enable_plugin="no (dependency error)"
4561 fi
a905d397
FF
4562 fi
4563 AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
4564 enable_$1="$enable_plugin"
4565 ]
4566)# AC_PLUGIN(name, default, info)
4567
3c12e8a6
NW
4568m4_divert_once([HELP_ENABLE], [
4569collectd features:])
a905d397 4570# FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
3c12e8a6
NW
4571AC_COLLECTD([debug], [enable], [feature], [debugging])
4572AC_COLLECTD([daemon], [disable], [feature], [daemon mode])
14740db4 4573AC_COLLECTD([getifaddrs],[enable], [feature], [getifaddrs under Linux])
6e765a02 4574
cb622208 4575dependency_warning="no"
9276a813 4576dependency_error="no"
cb622208 4577
99ef5283 4578plugin_ascent="no"
a905d397 4579plugin_battery="no"
db4f7362 4580plugin_bind="no"
2239c03f 4581plugin_conntrack="no"
11c3445e 4582plugin_contextswitch="no"
a905d397
FF
4583plugin_cpu="no"
4584plugin_cpufreq="no"
a30d7659 4585plugin_curl_json="no"
1d333244 4586plugin_curl_xml="no"
a905d397
FF
4587plugin_df="no"
4588plugin_disk="no"
4589plugin_entropy="no"
8ae25a97 4590plugin_ethstat="no"
d61648a2 4591plugin_fscache="no"
a905d397 4592plugin_interface="no"
249d5776 4593plugin_ipmi="no"
6d431b70 4594plugin_ipvs="no"
a905d397 4595plugin_irq="no"
553376a3 4596plugin_libvirt="no"
a905d397
FF
4597plugin_load="no"
4598plugin_memory="no"
3fc0feb6 4599plugin_multimeter="no"
a905d397 4600plugin_nfs="no"
d61648a2 4601plugin_numa="no"
28785769 4602plugin_perl="no"
a905d397 4603plugin_processes="no"
15f09880 4604plugin_protocols="no"
a905d397
FF
4605plugin_serial="no"
4606plugin_swap="no"
4607plugin_tape="no"
03b7ec00 4608plugin_tcpconns="no"
4e8795c7 4609plugin_ted="no"
2004f542 4610plugin_thermal="no"
a905d397 4611plugin_users="no"
d0da1c4e 4612plugin_uptime="no"
7b6abfd0 4613plugin_vmem="no"
a905d397
FF
4614plugin_vserver="no"
4615plugin_wireless="no"
87a3da3a 4616plugin_zfs_arc="no"
a905d397
FF
4617
4618# Linux
4619if test "x$ac_system" = "xLinux"
4620then
4621 plugin_battery="yes"
2239c03f 4622 plugin_conntrack="yes"
11c3445e 4623 plugin_contextswitch="yes"
a905d397
FF
4624 plugin_cpu="yes"
4625 plugin_cpufreq="yes"
4626 plugin_disk="yes"
4627 plugin_entropy="yes"
d61648a2 4628 plugin_fscache="yes"
a905d397
FF
4629 plugin_interface="yes"
4630 plugin_irq="yes"
4631 plugin_load="yes"
4632 plugin_memory="yes"
4633 plugin_nfs="yes"
d61648a2 4634 plugin_numa="yes"
a905d397 4635 plugin_processes="yes"
15f09880 4636 plugin_protocols="yes"
a905d397
FF
4637 plugin_serial="yes"
4638 plugin_swap="yes"
03b7ec00 4639 plugin_tcpconns="yes"
2004f542 4640 plugin_thermal="yes"
d0da1c4e 4641 plugin_uptime="yes"
7b6abfd0 4642 plugin_vmem="yes"
a905d397
FF
4643 plugin_vserver="yes"
4644 plugin_wireless="yes"
fb3a07dc 4645
d87bf146 4646 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
fb3a07dc
SH
4647 then
4648 plugin_ipvs="yes"
4649 fi
a905d397
FF
4650fi
4651
7132090f
FF
4652if test "x$ac_system" = "xOpenBSD"
4653then
4654 plugin_tcpconns="yes"
4655fi
4656
a905d397
FF
4657# Mac OS X devices
4658if test "x$with_libiokit" = "xyes"
4659then
4660 plugin_battery="yes"
4661 plugin_disk="yes"
4662fi
4663
11b1e65a 4664# AIX
95b08a82
MLSR
4665
4666if test "x$ac_system" = "xAIX"
4667then
4668 plugin_tcpconns="yes"
4669fi
4670
11b1e65a
MS
4671if test "x$with_perfstat" = "xyes"
4672then
4673 plugin_cpu="yes"
d4195dfb 4674 plugin_contextswitch="yes"
11b1e65a
MS
4675 plugin_disk="yes"
4676 plugin_memory="yes"
4677 plugin_swap="yes"
4678 plugin_interface="yes"
4679 plugin_load="yes"
48096d34 4680 plugin_uptime="yes"
11b1e65a
MS
4681fi
4682
4683if test "x$with_procinfo" = "xyes"
4684then
4685 plugin_processes="yes"
4686fi
4687
a905d397 4688# Solaris
d0da1c4e
FF
4689if test "x$with_kstat" = "xyes"
4690then
b08f4f6e 4691 plugin_nfs="yes"
d0da1c4e 4692 plugin_uptime="yes"
87a3da3a 4693 plugin_zfs_arc="yes"
d0da1c4e
FF
4694fi
4695
a905d397
FF
4696if test "x$with_devinfo$with_kstat" = "xyesyes"
4697then
4698 plugin_cpu="yes"
4699 plugin_disk="yes"
4700 plugin_interface="yes"
4701 plugin_memory="yes"
a905d397
FF
4702 plugin_tape="yes"
4703fi
4704
4705# libstatgrab
4706if test "x$with_libstatgrab" = "xyes"
4707then
9ac28385 4708 plugin_cpu="yes"
d5ad8445 4709 plugin_disk="yes"
a905d397
FF
4710 plugin_interface="yes"
4711 plugin_load="yes"
4712 plugin_memory="yes"
4713 plugin_swap="yes"
c87e3fc2 4714 plugin_users="yes"
a905d397
FF
4715fi
4716
99ef5283
FF
4717if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4718then
4719 plugin_ascent="yes"
adee81fe
FF
4720 if test "x$have_strptime" = "xyes"
4721 then
4722 plugin_bind="yes"
4723 fi
99ef5283
FF
4724fi
4725
249d5776
FF
4726if test "x$with_libopenipmipthread" = "xyes"
4727then
4728 plugin_ipmi="yes"
4729fi
4730
bc51ef21
DM
4731if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
4732then
a30d7659 4733 plugin_curl_json="yes"
bc51ef21
DM
4734fi
4735
1d333244
AG
4736if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4737then
4738 plugin_curl_xml="yes"
4739fi
4740
a905d397
FF
4741if test "x$have_processor_info" = "xyes"
4742then
4743 plugin_cpu="yes"
4744fi
22188738
FF
4745if test "x$have_sysctl" = "xyes"
4746then
4747 plugin_cpu="yes"
cfb15b5d 4748 plugin_memory="yes"
d0da1c4e 4749 plugin_uptime="yes"
1411661f
FF
4750 if test "x$ac_system" = "xDarwin"
4751 then
4752 plugin_swap="yes"
4753 fi
22188738 4754fi
a905d397
FF
4755if test "x$have_sysctlbyname" = "xyes"
4756then
1538fa84 4757 plugin_contextswitch="yes"
a905d397
FF
4758 plugin_cpu="yes"
4759 plugin_memory="yes"
1695cd07 4760 plugin_tcpconns="yes"
a905d397
FF
4761fi
4762
eafb8003
FF
4763# Df plugin: Check if we know how to determine mount points first.
4764#if test "x$have_listmntent" = "xyes"; then
4765# plugin_df="yes"
4766#fi
4767if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
a905d397
FF
4768then
4769 plugin_df="yes"
4770fi
eafb8003 4771if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
a905d397
FF
4772then
4773 plugin_df="yes"
4774fi
eafb8003
FF
4775#if test "x$have_getmntent" = "xseq"
4776#then
4777# plugin_df="yes"
4778#fi
4779if test "x$c_cv_have_one_getmntent" = "xyes"
a905d397
FF
4780then
4781 plugin_df="yes"
4782fi
4783
eafb8003
FF
4784# Df plugin: Check if we have either `statfs' or `statvfs' second.
4785if test "x$plugin_df" = "xyes"
4786then
4787 plugin_df="no"
4788 if test "x$have_statfs" = "xyes"
4789 then
4790 plugin_df="yes"
4791 fi
4792 if test "x$have_statvfs" = "xyes"
4793 then
4794 plugin_df="yes"
4795 fi
4796fi
a905d397 4797
8ae25a97
FF
4798if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
4799then
4800 plugin_ethstat="yes"
4801fi
4802
a905d397
FF
4803if test "x$have_getifaddrs" = "xyes"
4804then
4805 plugin_interface="yes"
4806fi
4807
c6be63a7
FF
4808if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
4809then
553376a3 4810 plugin_libvirt="yes"
c6be63a7
FF
4811fi
4812
a905d397
FF
4813if test "x$have_getloadavg" = "xyes"
4814then
4815 plugin_load="yes"
4816fi
4817
5f5da97b 4818if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
28785769
SH
4819then
4820 plugin_perl="yes"
4821fi
4822
a905d397
FF
4823# Mac OS X memory interface
4824if test "x$have_host_statistics" = "xyes"
4825then
4826 plugin_memory="yes"
4827fi
4828
3fc0feb6
FF
4829if test "x$have_termios_h" = "xyes"
4830then
4831 plugin_multimeter="yes"
4e8795c7 4832 plugin_ted="yes"
3fc0feb6
FF
4833fi
4834
a905d397
FF
4835if test "x$have_thread_info" = "xyes"
4836then
4837 plugin_processes="yes"
4838fi
4839
2d3861c5 4840if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
a905d397 4841then
49908d76 4842 plugin_processes="yes"
d4a4b86e
FF
4843fi
4844
4845if test "x$with_kvm_getswapinfo" = "xyes"
4846then
a905d397
FF
4847 plugin_swap="yes"
4848fi
4849
1ff51088 4850if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
b10e5d81
FF
4851then
4852 plugin_swap="yes"
4853fi
4854
37b23384 4855if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
043a6f45
FF
4856then
4857 plugin_tcpconns="yes"
4858fi
4859
a905d397
FF
4860if test "x$have_getutent" = "xyes"
4861then
4862 plugin_users="yes"
4863fi
4864if test "x$have_getutxent" = "xyes"
4865then
4866 plugin_users="yes"
4867fi
4868
f9ee71b2 4869m4_divert_once([HELP_ENABLE], [
a905d397
FF
4870collectd plugins:])
4871
2fd1f725
SH
4872AC_ARG_ENABLE([all-plugins],
4873 AC_HELP_STRING([--enable-all-plugins],
4874 [enable all plugins (auto by def)]),
4875 [
4876 if test "x$enableval" = "xyes"
4877 then
4878 enable_all_plugins="yes"
4879 else if test "x$enableval" = "xauto"
4880 then
4881 enable_all_plugins="auto"
4882 else
4883 enable_all_plugins="no"
4884 fi; fi
4885 ],
4886 [enable_all_plugins="auto"])
4887
4888m4_divert_once([HELP_ENABLE], [])
4889
03ed4b71 4890AC_PLUGIN([aggregation], [yes], [Aggregation plugin])
cd423f6a 4891AC_PLUGIN([amqp], [$with_librabbitmq], [AMQP output plugin])
3fc0feb6
FF
4892AC_PLUGIN([apache], [$with_libcurl], [Apache httpd statistics])
4893AC_PLUGIN([apcups], [yes], [Statistics of UPSes by APC])
4894AC_PLUGIN([apple_sensors], [$with_libiokit], [Apple's hardware sensors])
99ef5283 4895AC_PLUGIN([ascent], [$plugin_ascent], [AscentEmu player statistics])
3fc0feb6 4896AC_PLUGIN([battery], [$plugin_battery], [Battery statistics])
db4f7362 4897AC_PLUGIN([bind], [$plugin_bind], [ISC Bind nameserver statistics])
2239c03f 4898AC_PLUGIN([conntrack], [$plugin_conntrack], [nf_conntrack statistics])
11c3445e 4899AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
3fc0feb6 4900AC_PLUGIN([cpufreq], [$plugin_cpufreq], [CPU frequency statistics])
999f0271 4901AC_PLUGIN([cpu], [$plugin_cpu], [CPU usage statistics])
3fc0feb6 4902AC_PLUGIN([csv], [yes], [CSV output plugin])
a16e9671 4903AC_PLUGIN([curl], [$with_libcurl], [CURL generic web statistics])
a30d7659 4904AC_PLUGIN([curl_json], [$plugin_curl_json], [CouchDB statistics])
1d333244 4905AC_PLUGIN([curl_xml], [$plugin_curl_xml], [CURL generic xml statistics])
3f847b15 4906AC_PLUGIN([dbi], [$with_libdbi], [General database statistics])
3fc0feb6
FF
4907AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics])
4908AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics])
4909AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis])
4910AC_PLUGIN([email], [yes], [EMail statistics])
4911AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics])
8ae25a97 4912AC_PLUGIN([ethstat], [$plugin_ethstat], [Stats from NIC driver])
3fc0feb6 4913AC_PLUGIN([exec], [yes], [Execution of external programs])
6071f979 4914AC_PLUGIN([filecount], [yes], [Count files in directories])
3d4a8f9e 4915AC_PLUGIN([fscache], [$plugin_fscache], [fscache statistics])
2f0bd3ba 4916AC_PLUGIN([gmond], [$with_libganglia], [Ganglia plugin])
3fc0feb6
FF
4917AC_PLUGIN([hddtemp], [yes], [Query hddtempd])
4918AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics])
249d5776 4919AC_PLUGIN([ipmi], [$plugin_ipmi], [IPMI sensor statistics])
999f0271 4920AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
6d431b70 4921AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
3fc0feb6 4922AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
ff1c15a6 4923AC_PLUGIN([java], [$with_java], [Embed the Java Virtual Machine])
553376a3 4924AC_PLUGIN([libvirt], [$plugin_libvirt], [Virtual machine statistics])
3fc0feb6
FF
4925AC_PLUGIN([load], [$plugin_load], [System load])
4926AC_PLUGIN([logfile], [yes], [File logging plugin])
2254a769 4927AC_PLUGIN([lpar], [$with_perfstat], [AIX logical partitions statistics])
72a6ea58 4928AC_PLUGIN([madwifi], [$have_linux_wireless_h], [Madwifi wireless statistics])
95e95817 4929AC_PLUGIN([match_empty_counter], [yes], [The empty counter match])
f2a35cef 4930AC_PLUGIN([match_hashed], [yes], [The hashed match])
266c5c65 4931AC_PLUGIN([match_regex], [yes], [The regex match])
892fbd80 4932AC_PLUGIN([match_timediff], [yes], [The timediff match])
0e4f07d7 4933AC_PLUGIN([match_value], [yes], [The value match])
3fc0feb6 4934AC_PLUGIN([mbmon], [yes], [Query mbmond])
9ce2a30d 4935AC_PLUGIN([md], [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
5e8e1fe1 4936AC_PLUGIN([memcachec], [$with_libmemcached], [memcachec statistics])
0735ed71 4937AC_PLUGIN([memcached], [yes], [memcached statistics])
3fc0feb6 4938AC_PLUGIN([memory], [$plugin_memory], [Memory usage])
505c6b2a 4939AC_PLUGIN([modbus], [$with_libmodbus], [Modbus plugin])
3fc0feb6
FF
4940AC_PLUGIN([multimeter], [$plugin_multimeter], [Read multimeter values])
4941AC_PLUGIN([mysql], [$with_libmysql], [MySQL statistics])
74f755e8 4942AC_PLUGIN([netapp], [$with_libnetapp], [NetApp plugin])
5d99fadf 4943AC_PLUGIN([netlink], [$with_libnetlink], [Enhanced Linux network statistics])
3fc0feb6
FF
4944AC_PLUGIN([network], [yes], [Network communication plugin])
4945AC_PLUGIN([nfs], [$plugin_nfs], [NFS statistics])
62b1cfdd 4946AC_PLUGIN([nginx], [$with_libcurl], [nginx statistics])
999f0271 4947AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
a1dd93a2 4948AC_PLUGIN([notify_email], [$with_libesmtp], [Email notifier])
3fc0feb6 4949AC_PLUGIN([ntpd], [yes], [NTPd statistics])
d61648a2 4950AC_PLUGIN([numa], [$plugin_numa], [NUMA virtual memory statistics])
a905d397 4951AC_PLUGIN([nut], [$with_libupsclient], [Network UPS tools statistics])
7a12fd28 4952AC_PLUGIN([olsrd], [yes], [olsrd statistics])
11ba6e7c 4953AC_PLUGIN([onewire], [$with_libowcapi], [OneWire sensor statistics])
31c1bf4f 4954AC_PLUGIN([openvpn], [yes], [OpenVPN client statistics])
a737ed74 4955AC_PLUGIN([oracle], [$with_oracle], [Oracle plugin])
28785769 4956AC_PLUGIN([perl], [$plugin_perl], [Embed a Perl interpreter])
43bc16aa 4957AC_PLUGIN([pf], [$have_net_pfvar_h], [BSD packet filter (PF) statistics])
23a8901d 4958# FIXME: Check for libevent, too.
418f91fb 4959AC_PLUGIN([pinba], [$have_protobuf_c_h], [Pinba statistics])
3fc0feb6 4960AC_PLUGIN([ping], [$with_liboping], [Network latency statistics])
a0b4b6b4 4961AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics])
bd150991 4962AC_PLUGIN([powerdns], [yes], [PowerDNS statistics])
3fc0feb6 4963AC_PLUGIN([processes], [$plugin_processes], [Process statistics])
15f09880 4964AC_PLUGIN([protocols], [$plugin_protocols], [Protocol (IP, TCP, ...) statistics])
b8c32e9f 4965AC_PLUGIN([python], [$with_python], [Embed a Python interpreter])
799410cb 4966AC_PLUGIN([redis], [$with_libcredis], [Redis plugin])
f51548ec 4967AC_PLUGIN([routeros], [$with_librouteros], [RouterOS plugin])
667bcda9 4968AC_PLUGIN([rrdcached], [$librrd_rrdc_update], [RRDTool output plugin])
999f0271 4969AC_PLUGIN([rrdtool], [$with_librrd], [RRDTool output plugin])
c044208a 4970AC_PLUGIN([sensors], [$with_libsensors], [lm_sensors statistics])
3fc0feb6
FF
4971AC_PLUGIN([serial], [$plugin_serial], [serial port traffic])
4972AC_PLUGIN([snmp], [$with_libnetsnmp], [SNMP querying plugin])
4973AC_PLUGIN([swap], [$plugin_swap], [Swap usage statistics])
4974AC_PLUGIN([syslog], [$have_syslog], [Syslog logging plugin])
eeb86d2d 4975AC_PLUGIN([table], [yes], [Parsing of tabular data])
4aecad69 4976AC_PLUGIN([tail], [yes], [Parsing of logfiles])
88ed4433 4977AC_PLUGIN([tail_csv], [yes], [Parsing of CSV files])
3fc0feb6 4978AC_PLUGIN([tape], [$plugin_tape], [Tape drive statistics])
380be79e 4979AC_PLUGIN([target_notification], [yes], [The notification target])
1aaedbca 4980AC_PLUGIN([target_replace], [yes], [The replace target])
9ae852ac 4981AC_PLUGIN([target_scale],[yes], [The scale target])
92d84092 4982AC_PLUGIN([target_set], [yes], [The set target])
67ce1dd8 4983AC_PLUGIN([target_v5upgrade], [yes], [The v5upgrade target])
03b7ec00 4984AC_PLUGIN([tcpconns], [$plugin_tcpconns], [TCP connection statistics])
fea74b37 4985AC_PLUGIN([teamspeak2], [yes], [TeamSpeak2 server statistics])
4e8795c7 4986AC_PLUGIN([ted], [$plugin_ted], [Read The Energy Detective values])
2004f542 4987AC_PLUGIN([thermal], [$plugin_thermal], [Linux ACPI thermal zone statistics])
171a92c9 4988AC_PLUGIN([threshold], [yes], [Threshold checking plugin])
ced8c219 4989AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant], [TokyoTyrant database statistics])
3fc0feb6 4990AC_PLUGIN([unixsock], [yes], [Unixsock communication plugin])
d0da1c4e 4991AC_PLUGIN([uptime], [$plugin_uptime], [Uptime statistics])
3fc0feb6 4992AC_PLUGIN([users], [$plugin_users], [User statistics])
30f3e7b8 4993AC_PLUGIN([uuid], [yes], [UUID as hostname plugin])
e9a9482a 4994AC_PLUGIN([varnish], [$with_libvarnish], [Varnish cache statistics])
7b6abfd0 4995AC_PLUGIN([vmem], [$plugin_vmem], [Virtual memory statistics])
3fc0feb6
FF
4996AC_PLUGIN([vserver], [$plugin_vserver], [Linux VServer statistics])
4997AC_PLUGIN([wireless], [$plugin_wireless], [Wireless statistics])
afabd3b6 4998AC_PLUGIN([write_graphite], [yes], [Graphite / Carbon output plugin])
64d0aa3f 4999AC_PLUGIN([write_http], [$with_libcurl], [HTTP output plugin])
e853b1ca 5000AC_PLUGIN([write_mongodb], [$with_libmongoc], [MongoDB output plugin])
0a116775 5001AC_PLUGIN([write_redis], [$with_libcredis], [Redis output plugin])
418f91fb 5002AC_PLUGIN([write_riemann], [$have_protobuf_c_h], [Riemann output plugin])
3fc0feb6 5003AC_PLUGIN([xmms], [$with_libxmms], [XMMS statistics])
87a3da3a 5004AC_PLUGIN([zfs_arc], [$plugin_zfs_arc], [ZFS ARC statistics])
55b43947 5005
a32e822b
FF
5006dnl Default configuration file
5007# Load either syslog or logfile
5008LOAD_PLUGIN_SYSLOG=""
5009LOAD_PLUGIN_LOGFILE=""
5010
5011AC_MSG_CHECKING([which default log plugin to load])
5012default_log_plugin="none"
5013if test "x$enable_syslog" = "xyes"
5014then
5015 default_log_plugin="syslog"
5016else
5017 LOAD_PLUGIN_SYSLOG="##"
5018fi
5019
5020if test "x$enable_logfile" = "xyes"
5021then
5022 if test "x$default_log_plugin" = "xnone"
5023 then
5024 default_log_plugin="logfile"
5025 else
5026 LOAD_PLUGIN_LOGFILE="#"
5027 fi
5028else
5029 LOAD_PLUGIN_LOGFILE="##"
5030fi
5031AC_MSG_RESULT([$default_log_plugin])
5032
5033AC_SUBST(LOAD_PLUGIN_SYSLOG)
5034AC_SUBST(LOAD_PLUGIN_LOGFILE)
5035
5036DEFAULT_LOG_LEVEL="info"
5037if test "x$enable_debug" = "xyes"
5038then
5039 DEFAULT_LOG_LEVEL="debug"
5040fi
5041AC_SUBST(DEFAULT_LOG_LEVEL)
5042
5043# Load only one of rrdtool, network, csv in the default config.
5044LOAD_PLUGIN_RRDTOOL=""
5045LOAD_PLUGIN_NETWORK=""
5046LOAD_PLUGIN_CSV=""
5047
5048AC_MSG_CHECKING([which default write plugin to load])
5049default_write_plugin="none"
5050if test "x$enable_rrdtool" = "xyes"
5051then
5052 default_write_plugin="rrdtool"
5053else
5054 LOAD_PLUGIN_RRDTOOL="##"
5055fi
5056
5057if test "x$enable_network" = "xyes"
5058then
5059 if test "x$default_write_plugin" = "xnone"
5060 then
5061 default_write_plugin="network"
5062 else
5063 LOAD_PLUGIN_NETWORK="#"
5064 fi
5065else
5066 LOAD_PLUGIN_NETWORK="##"
5067fi
5068
5069if test "x$enable_csv" = "xyes"
5070then
5071 if test "x$default_write_plugin" = "xnone"
5072 then
5073 default_write_plugin="csv"
5074 else
5075 LOAD_PLUGIN_CSV="#"
5076 fi
5077else
5078 LOAD_PLUGIN_CSV="##"
5079fi
5080AC_MSG_RESULT([$default_write_plugin])
5081
5082AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5083AC_SUBST(LOAD_PLUGIN_NETWORK)
5084AC_SUBST(LOAD_PLUGIN_CSV)
5085
fb3a07dc 5086dnl ip_vs.h
d45c77ca 5087if test "x$ac_system" = "xLinux" \
d87bf146 5088 && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
fb3a07dc
SH
5089then
5090 enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5091fi
5092
d87bf146
SH
5093if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5094then
5095 enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5096fi
5097
a459afe5 5098dnl Perl bindings
6c769cf7 5099PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
a459afe5
SH
5100AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5101[
5102 if test "x$withval" != "xno" && test "x$withval" != "xyes"
5103 then
5104 PERL_BINDINGS_OPTIONS="$withval"
5105 with_perl_bindings="yes"
fb713675 5106 else
fb713675 5107 with_perl_bindings="$withval"
a459afe5
SH
5108 fi
5109],
5110[
f1075c22
SH
5111 if test -n "$perl_interpreter"
5112 then
5113 with_perl_bindings="yes"
5114 else
5115 with_perl_bindings="no (no perl interpreter found)"
5116 fi
a459afe5
SH
5117])
5118if test "x$with_perl_bindings" = "xyes"
5119then
5120 PERL_BINDINGS="perl"
5121else
5122 PERL_BINDINGS=""
5123fi
5124AC_SUBST(PERL_BINDINGS)
5125AC_SUBST(PERL_BINDINGS_OPTIONS)
5126
dc45cf5e
SH
5127dnl libcollectdclient
5128LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5129LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5130LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5131
5132LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5133
5134LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5135
5136AC_SUBST(LCC_VERSION_MAJOR)
5137AC_SUBST(LCC_VERSION_MINOR)
5138AC_SUBST(LCC_VERSION_PATCH)
5139AC_SUBST(LCC_VERSION_EXTRA)
5140AC_SUBST(LCC_VERSION_STRING)
5141
8d84ccac 5142AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
dc45cf5e 5143
698837f2 5144AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile)
86ca149a 5145
c044208a 5146if test "x$with_librrd" = "xyes" \
759c5445 5147 && test "x$librrd_threadsafe" != "xyes"
83aa9c9e 5148then
c044208a 5149 with_librrd="yes (warning: librrd is not thread-safe)"
83aa9c9e
SH
5150fi
5151
7d32c2bc 5152if test "x$with_libperl" = "xyes"
a432a981 5153then
a459afe5 5154 with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
7d32c2bc 5155else
a432a981
FF
5156 enable_perl="no (needs libperl)"
5157fi
5158
7075d42e
FF
5159if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5160then
5161 enable_perl="no (libperl doesn't support ithreads)"
5162fi
5163
d45c77ca
FF
5164if test "x$with_perl_bindings" = "xyes" \
5165 && test "x$PERL_BINDINGS_OPTIONS" != "x"
a459afe5
SH
5166then
5167 with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5168fi
5169
86ca149a
FF
5170cat <<EOF;
5171
5172Configuration:
5173 Libraries:
837ad77e 5174 libcurl . . . . . . . $with_libcurl
3f847b15 5175 libdbi . . . . . . . $with_libdbi
799410cb 5176 libcredis . . . . . . $with_libcredis
05b68469 5177 libesmtp . . . . . . $with_libesmtp
293f5147 5178 libganglia . . . . . $with_libganglia
bcd6151b 5179 libgcrypt . . . . . . $with_libgcrypt
837ad77e
SH
5180 libiokit . . . . . . $with_libiokit
5181 libiptc . . . . . . . $with_libiptc
ff1c15a6 5182 libjvm . . . . . . . $with_java
837ad77e
SH
5183 libkstat . . . . . . $with_kstat
5184 libkvm . . . . . . . $with_libkvm
3a4563d4 5185 libmemcached . . . . $with_libmemcached
367405c9 5186 libmodbus . . . . . . $with_libmodbus
837ad77e 5187 libmysql . . . . . . $with_libmysql
9f8962fb 5188 libnetapp . . . . . . $with_libnetapp
837ad77e
SH
5189 libnetlink . . . . . $with_libnetlink
5190 libnetsnmp . . . . . $with_libnetsnmp
5191 libnotify . . . . . . $with_libnotify
5192 liboconfig . . . . . $with_liboconfig
5193 libopenipmi . . . . . $with_libopenipmipthread
5194 liboping . . . . . . $with_liboping
5195 libpcap . . . . . . . $with_libpcap
8dbb7bc4 5196 libperfstat . . . . . $with_perfstat
837ad77e 5197 libperl . . . . . . . $with_libperl
a0b4b6b4 5198 libpq . . . . . . . . $with_libpq
999f0271 5199 libpthread . . . . . $with_libpthread
cd423f6a 5200 librabbitmq . . . . . $with_librabbitmq
f51548ec 5201 librouteros . . . . . $with_librouteros
c044208a
FF
5202 librrd . . . . . . . $with_librrd
5203 libsensors . . . . . $with_libsensors
837ad77e 5204 libstatgrab . . . . . $with_libstatgrab
ced8c219 5205 libtokyotyrant . . . $with_libtokyotyrant
837ad77e 5206 libupsclient . . . . $with_libupsclient
e9a9482a 5207 libvarnish . . . . . $with_libvarnish
837ad77e
SH
5208 libvirt . . . . . . . $with_libvirt
5209 libxml2 . . . . . . . $with_libxml2
5210 libxmms . . . . . . . $with_libxmms
f154fb21 5211 libyajl . . . . . . . $with_libyajl
97b5f7f8 5212 libevent . . . . . . $with_libevent
5f4c4a17 5213 protobuf-c . . . . . $have_protoc_c
a737ed74 5214 oracle . . . . . . . $with_oracle
b8c32e9f 5215 python . . . . . . . $with_python
86ca149a
FF
5216
5217 Features:
837ad77e
SH
5218 daemon mode . . . . . $enable_daemon
5219 debug . . . . . . . . $enable_debug
6e765a02 5220
a459afe5 5221 Bindings:
837ad77e 5222 perl . . . . . . . . $with_perl_bindings
a459afe5 5223
6e765a02 5224 Modules:
03ed4b71 5225 aggregation . . . . . $enable_aggregation
cd423f6a 5226 amqp . . . . . . . $enable_amqp
837ad77e
SH
5227 apache . . . . . . . $enable_apache
5228 apcups . . . . . . . $enable_apcups
5229 apple_sensors . . . . $enable_apple_sensors
5230 ascent . . . . . . . $enable_ascent
5231 battery . . . . . . . $enable_battery
db4f7362 5232 bind . . . . . . . . $enable_bind
2239c03f 5233 conntrack . . . . . . $enable_conntrack
11c3445e 5234 contextswitch . . . . $enable_contextswitch
837ad77e
SH
5235 cpu . . . . . . . . . $enable_cpu
5236 cpufreq . . . . . . . $enable_cpufreq
5237 csv . . . . . . . . . $enable_csv
a16e9671 5238 curl . . . . . . . . $enable_curl
a30d7659 5239 curl_json . . . . . . $enable_curl_json
1d333244 5240 curl_xml . . . . . . $enable_curl_xml
3f847b15 5241 dbi . . . . . . . . . $enable_dbi
837ad77e
SH
5242 df . . . . . . . . . $enable_df
5243 disk . . . . . . . . $enable_disk
5244 dns . . . . . . . . . $enable_dns
5245 email . . . . . . . . $enable_email
5246 entropy . . . . . . . $enable_entropy
fa0b947c 5247 ethstat . . . . . . . $enable_ethstat
837ad77e 5248 exec . . . . . . . . $enable_exec
fff2b3d4 5249 filecount . . . . . . $enable_filecount
3d4a8f9e 5250 fscache . . . . . . . $enable_fscache
2f0bd3ba 5251 gmond . . . . . . . . $enable_gmond
837ad77e
SH
5252 hddtemp . . . . . . . $enable_hddtemp
5253 interface . . . . . . $enable_interface
837ad77e 5254 ipmi . . . . . . . . $enable_ipmi
999f0271 5255 iptables . . . . . . $enable_iptables
837ad77e
SH
5256 ipvs . . . . . . . . $enable_ipvs
5257 irq . . . . . . . . . $enable_irq
ff1c15a6 5258 java . . . . . . . . $enable_java
837ad77e
SH
5259 libvirt . . . . . . . $enable_libvirt
5260 load . . . . . . . . $enable_load
5261 logfile . . . . . . . $enable_logfile
2254a769 5262 lpar... . . . . . . . $enable_lpar
01c19d8c 5263 madwifi . . . . . . . $enable_madwifi
95e95817 5264 match_empty_counter . $enable_match_empty_counter
f2a35cef 5265 match_hashed . . . . $enable_match_hashed
266c5c65 5266 match_regex . . . . . $enable_match_regex
892fbd80 5267 match_timediff . . . $enable_match_timediff
0e4f07d7 5268 match_value . . . . . $enable_match_value
837ad77e 5269 mbmon . . . . . . . . $enable_mbmon
9ce2a30d 5270 md . . . . . . . . . $enable_md
5e8e1fe1 5271 memcachec . . . . . . $enable_memcachec
837ad77e
SH
5272 memcached . . . . . . $enable_memcached
5273 memory . . . . . . . $enable_memory
505c6b2a 5274 modbus . . . . . . . $enable_modbus
837ad77e
SH
5275 multimeter . . . . . $enable_multimeter
5276 mysql . . . . . . . . $enable_mysql
74f755e8 5277 netapp . . . . . . . $enable_netapp
837ad77e
SH
5278 netlink . . . . . . . $enable_netlink
5279 network . . . . . . . $enable_network
5280 nfs . . . . . . . . . $enable_nfs
5281 nginx . . . . . . . . $enable_nginx
105436ca 5282 notify_desktop . . . $enable_notify_desktop
a1dd93a2 5283 notify_email . . . . $enable_notify_email
837ad77e 5284 ntpd . . . . . . . . $enable_ntpd
d61648a2 5285 numa . . . . . . . . $enable_numa
837ad77e 5286 nut . . . . . . . . . $enable_nut
7a12fd28 5287 olsrd . . . . . . . . $enable_olsrd
11ba6e7c 5288 onewire . . . . . . . $enable_onewire
31c1bf4f 5289 openvpn . . . . . . . $enable_openvpn
a737ed74 5290 oracle . . . . . . . $enable_oracle
837ad77e 5291 perl . . . . . . . . $enable_perl
9ad25378 5292 pf . . . . . . . . . $enable_pf
97b5f7f8 5293 pinba . . . . . . . . $enable_pinba
837ad77e 5294 ping . . . . . . . . $enable_ping
a0b4b6b4 5295 postgresql . . . . . $enable_postgresql
837ad77e
SH
5296 powerdns . . . . . . $enable_powerdns
5297 processes . . . . . . $enable_processes
ef302f97 5298 protocols . . . . . . $enable_protocols
b8c32e9f 5299 python . . . . . . . $enable_python
799410cb 5300 redis . . . . . . . . $enable_redis
f51548ec 5301 routeros . . . . . . $enable_routeros
667bcda9 5302 rrdcached . . . . . . $enable_rrdcached
999f0271 5303 rrdtool . . . . . . . $enable_rrdtool
837ad77e
SH
5304 sensors . . . . . . . $enable_sensors
5305 serial . . . . . . . $enable_serial
5306 snmp . . . . . . . . $enable_snmp
5307 swap . . . . . . . . $enable_swap
5308 syslog . . . . . . . $enable_syslog
eeb86d2d 5309 table . . . . . . . . $enable_table
837ad77e 5310 tail . . . . . . . . $enable_tail
88ed4433 5311 tail_csv . . . . . . $enable_tail_csv
837ad77e 5312 tape . . . . . . . . $enable_tape
380be79e 5313 target_notification . $enable_target_notification
1aaedbca 5314 target_replace . . . $enable_target_replace
9ae852ac 5315 target_scale . . . . $enable_target_scale
92d84092 5316 target_set . . . . . $enable_target_set
67ce1dd8 5317 target_v5upgrade . . $enable_target_v5upgrade
837ad77e
SH
5318 tcpconns . . . . . . $enable_tcpconns
5319 teamspeak2 . . . . . $enable_teamspeak2
4e8795c7 5320 ted . . . . . . . . . $enable_ted
2004f542 5321 thermal . . . . . . . $enable_thermal
171a92c9 5322 threshold . . . . . . $enable_threshold
2c50a9c7 5323 tokyotyrant . . . . . $enable_tokyotyrant
837ad77e 5324 unixsock . . . . . . $enable_unixsock
d0da1c4e 5325 uptime . . . . . . . $enable_uptime
837ad77e
SH
5326 users . . . . . . . . $enable_users
5327 uuid . . . . . . . . $enable_uuid
e9a9482a 5328 varnish . . . . . . . $enable_varnish
837ad77e
SH
5329 vmem . . . . . . . . $enable_vmem
5330 vserver . . . . . . . $enable_vserver
5331 wireless . . . . . . $enable_wireless
2f6cab93 5332 write_graphite . . . $enable_write_graphite
64d0aa3f 5333 write_http . . . . . $enable_write_http
e853b1ca 5334 write_mongodb . . . . $enable_write_mongodb
0a116775
FF
5335 write_redis . . . . . $enable_write_redis
5336 write_riemann . . . . $enable_write_riemann
837ad77e 5337 xmms . . . . . . . . $enable_xmms
87a3da3a 5338 zfs_arc . . . . . . . $enable_zfs_arc
86ca149a
FF
5339
5340EOF
8757c918 5341
9276a813 5342if test "x$dependency_error" = "xyes"; then
cb622208
SH
5343 AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
5344fi
5345
5346if test "x$dependency_warning" = "xyes"; then
5347 AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
9276a813 5348fi
332cf199 5349
8757c918 5350# vim: set fdm=marker :