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