ltdl: only compile included libltdl when needed
[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_CHECK_HEADERS(pcap-bpf.h,,
3136                          [with_libpcap="no (pcap-bpf.h not found)"])
3137 fi
3138 if test "x$with_libpcap" = "xyes"
3139 then
3140         AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3141                        [c_cv_libpcap_have_pcap_error_iface_not_up],
3142                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3143 [[[
3144 #include <pcap.h>
3145 ]]],
3146 [[[
3147   int val = PCAP_ERROR_IFACE_NOT_UP;
3148   return(val);
3149 ]]]
3150                        )],
3151                        [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3152                        [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3153 fi
3154 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3155 then
3156                 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3157 fi
3158 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3159 # }}}
3160
3161 # --with-libperl {{{
3162 perl_interpreter="perl"
3163 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3164 [
3165         if test -f "$withval" && test -x "$withval"
3166         then
3167                 perl_interpreter="$withval"
3168                 with_libperl="yes"
3169         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3170         then
3171                 LDFLAGS="$LDFLAGS -L$withval/lib"
3172                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3173                 perl_interpreter="$withval/bin/perl"
3174                 with_libperl="yes"
3175         else
3176                 with_libperl="$withval"
3177         fi; fi
3178 ],
3179 [
3180         with_libperl="yes"
3181 ])
3182
3183 AC_MSG_CHECKING([for perl])
3184 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3185 if test -x "$perl_interpreter"
3186 then
3187         AC_MSG_RESULT([yes ($perl_interpreter)])
3188 else
3189         perl_interpreter=""
3190         AC_MSG_RESULT([no])
3191 fi
3192
3193 AC_SUBST(PERL, "$perl_interpreter")
3194
3195 if test "x$with_libperl" = "xyes" \
3196         && test -n "$perl_interpreter"
3197 then
3198   SAVE_CFLAGS="$CFLAGS"
3199   SAVE_LIBS="$LIBS"
3200 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3201   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3202   PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3203   CFLAGS="$CFLAGS $PERL_CFLAGS"
3204   LIBS="$LIBS $PERL_LIBS"
3205
3206   AC_CACHE_CHECK([for libperl],
3207     [c_cv_have_libperl],
3208     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3209 [[[
3210 #define PERL_NO_GET_CONTEXT
3211 #include <EXTERN.h>
3212 #include <perl.h>
3213 #include <XSUB.h>
3214 ]]],
3215 [[[
3216        dTHX;
3217        load_module (PERL_LOADMOD_NOIMPORT,
3218                          newSVpv ("Collectd::Plugin::FooBar", 24),
3219                          Nullsv);
3220 ]]]
3221       )],
3222       [c_cv_have_libperl="yes"],
3223       [c_cv_have_libperl="no"]
3224     )
3225   )
3226
3227   if test "x$c_cv_have_libperl" = "xyes"
3228   then
3229           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3230           AC_SUBST(PERL_CFLAGS)
3231           AC_SUBST(PERL_LIBS)
3232   else
3233           with_libperl="no"
3234   fi
3235
3236   CFLAGS="$SAVE_CFLAGS"
3237   LIBS="$SAVE_LIBS"
3238 else if test -z "$perl_interpreter"; then
3239   with_libperl="no (no perl interpreter found)"
3240   c_cv_have_libperl="no"
3241 fi; fi
3242 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3243
3244 if test "x$with_libperl" = "xyes"
3245 then
3246         SAVE_CFLAGS="$CFLAGS"
3247         SAVE_LIBS="$LIBS"
3248         CFLAGS="$CFLAGS $PERL_CFLAGS"
3249         LIBS="$LIBS $PERL_LIBS"
3250
3251         AC_CACHE_CHECK([if perl supports ithreads],
3252                 [c_cv_have_perl_ithreads],
3253                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3254 [[[
3255 #include <EXTERN.h>
3256 #include <perl.h>
3257 #include <XSUB.h>
3258
3259 #if !defined(USE_ITHREADS)
3260 # error "Perl does not support ithreads!"
3261 #endif /* !defined(USE_ITHREADS) */
3262 ]]],
3263 [[[ ]]]
3264                         )],
3265                         [c_cv_have_perl_ithreads="yes"],
3266                         [c_cv_have_perl_ithreads="no"]
3267                 )
3268         )
3269
3270         if test "x$c_cv_have_perl_ithreads" = "xyes"
3271         then
3272                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3273         fi
3274
3275         CFLAGS="$SAVE_CFLAGS"
3276         LIBS="$SAVE_LIBS"
3277 fi
3278
3279 if test "x$with_libperl" = "xyes"
3280 then
3281         SAVE_CFLAGS="$CFLAGS"
3282         SAVE_LIBS="$LIBS"
3283         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3284         # (see issues #41 and #42)
3285         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3286         LIBS="$LIBS $PERL_LIBS"
3287
3288         AC_CACHE_CHECK([for broken Perl_load_module()],
3289                 [c_cv_have_broken_perl_load_module],
3290                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3291 [[[
3292 #define PERL_NO_GET_CONTEXT
3293 #include <EXTERN.h>
3294 #include <perl.h>
3295 #include <XSUB.h>
3296 ]]],
3297 [[[
3298                          dTHX;
3299                          load_module (PERL_LOADMOD_NOIMPORT,
3300                              newSVpv ("Collectd::Plugin::FooBar", 24),
3301                              Nullsv);
3302 ]]]
3303                         )],
3304                         [c_cv_have_broken_perl_load_module="no"],
3305                         [c_cv_have_broken_perl_load_module="yes"]
3306                 )
3307         )
3308
3309         CFLAGS="$SAVE_CFLAGS"
3310         LIBS="$SAVE_LIBS"
3311 fi
3312 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3313                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3314
3315 if test "x$with_libperl" = "xyes"
3316 then
3317         SAVE_CFLAGS="$CFLAGS"
3318         SAVE_LIBS="$LIBS"
3319         CFLAGS="$CFLAGS $PERL_CFLAGS"
3320         LIBS="$LIBS $PERL_LIBS"
3321
3322         AC_CHECK_MEMBER(
3323                 [struct mgvtbl.svt_local],
3324                 [have_struct_mgvtbl_svt_local="yes"],
3325                 [have_struct_mgvtbl_svt_local="no"],
3326                 [
3327 #include <EXTERN.h>
3328 #include <perl.h>
3329 #include <XSUB.h>
3330                 ])
3331
3332         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3333         then
3334                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3335                                   [Define if Perl's struct mgvtbl has member svt_local.])
3336         fi
3337
3338         CFLAGS="$SAVE_CFLAGS"
3339         LIBS="$SAVE_LIBS"
3340 fi
3341 # }}}
3342
3343 # --with-libpq {{{
3344 with_pg_config="pg_config"
3345 with_libpq_includedir=""
3346 with_libpq_libdir=""
3347 with_libpq_cppflags=""
3348 with_libpq_ldflags=""
3349 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3350         [Path to libpq.])],
3351 [
3352         if test "x$withval" = "xno"
3353         then
3354                 with_libpq="no"
3355         else if test "x$withval" = "xyes"
3356         then
3357                 with_libpq="yes"
3358         else
3359                 if test -f "$withval" && test -x "$withval";
3360                 then
3361                         with_pg_config="$withval"
3362                 else if test -x "$withval/bin/pg_config"
3363                 then
3364                         with_pg_config="$withval/bin/pg_config"
3365                 fi; fi
3366                 with_libpq="yes"
3367         fi; fi
3368 ],
3369 [
3370         with_libpq="yes"
3371 ])
3372 if test "x$with_libpq" = "xyes"
3373 then
3374         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3375         pg_config_status=$?
3376
3377         if test $pg_config_status -eq 0
3378         then
3379                 if test -n "$with_libpq_includedir"; then
3380                         for dir in $with_libpq_includedir; do
3381                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3382                         done
3383                 fi
3384         else
3385                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3386         fi
3387
3388         SAVE_CPPFLAGS="$CPPFLAGS"
3389         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3390
3391         AC_CHECK_HEADERS(libpq-fe.h, [],
3392                 [with_libpq="no (libpq-fe.h not found)"], [])
3393
3394         CPPFLAGS="$SAVE_CPPFLAGS"
3395 fi
3396 if test "x$with_libpq" = "xyes"
3397 then
3398         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3399         pg_config_status=$?
3400
3401         if test $pg_config_status -eq 0
3402         then
3403                 if test -n "$with_libpq_libdir"; then
3404                         for dir in $with_libpq_libdir; do
3405                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3406                         done
3407                 fi
3408         else
3409                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3410         fi
3411
3412         SAVE_LDFLAGS="$LDFLAGS"
3413         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3414
3415         AC_CHECK_LIB(pq, PQconnectdb,
3416                 [with_libpq="yes"],
3417                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3418
3419         AC_CHECK_LIB(pq, PQserverVersion,
3420                 [with_libpq="yes"],
3421                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3422
3423         LDFLAGS="$SAVE_LDFLAGS"
3424 fi
3425 if test "x$with_libpq" = "xyes"
3426 then
3427         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3428         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3429         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3430         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3431 fi
3432 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3433 # }}}
3434
3435 # --with-libpthread {{{
3436 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3437 [       if test "x$withval" != "xno" \
3438                 && test "x$withval" != "xyes"
3439         then
3440                 LDFLAGS="$LDFLAGS -L$withval/lib"
3441                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3442                 with_libpthread="yes"
3443         else
3444                 if test "x$withval" = "xno"
3445                 then
3446                         with_libpthread="no (disabled)"
3447                 fi
3448         fi
3449 ], [with_libpthread="yes"])
3450 if test "x$with_libpthread" = "xyes"
3451 then
3452         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3453 fi
3454
3455 if test "x$with_libpthread" = "xyes"
3456 then
3457         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
3458 fi
3459 if test "x$with_libpthread" = "xyes"
3460 then
3461         collect_pthread=1
3462 else
3463         collect_pthread=0
3464 fi
3465 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3466         [Wether or not to use pthread (POSIX threads) library])
3467 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
3468 # }}}
3469
3470 # --with-python {{{
3471 with_python_prog=""
3472 with_python_path="$PATH"
3473 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3474 [
3475  if test "x$withval" = "xyes" || test "x$withval" = "xno"
3476  then
3477          with_python="$withval"
3478  else if test -x "$withval"
3479  then
3480          with_python_prog="$withval"
3481          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3482          with_python="yes"
3483  else if test -d "$withval"
3484  then
3485          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3486          with_python="yes"
3487  else
3488          AC_MSG_WARN([Argument not recognized: $withval])
3489  fi; fi; fi
3490 ], [with_python="yes"])
3491
3492 SAVE_PATH="$PATH"
3493 SAVE_CPPFLAGS="$CPPFLAGS"
3494 SAVE_LDFLAGS="$LDFLAGS"
3495 SAVE_LIBS="$LIBS"
3496
3497 PATH="$with_python_path"
3498
3499 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3500 then
3501         AC_MSG_CHECKING([for python])
3502         with_python_prog="`which python 2>/dev/null`"
3503         if test "x$with_python_prog" = "x"
3504         then
3505                 AC_MSG_RESULT([not found])
3506                 with_python="no (interpreter not found)"
3507         else
3508                 AC_MSG_RESULT([$with_python_prog])
3509         fi
3510 fi
3511
3512 if test "x$with_python" = "xyes"
3513 then
3514         AC_MSG_CHECKING([for Python CPPFLAGS])
3515         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3516         python_config_status=$?
3517
3518         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3519         then
3520                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3521                 with_python="no"
3522         else
3523                 AC_MSG_RESULT([$python_include_path])
3524         fi
3525 fi
3526
3527 if test "x$with_python" = "xyes"
3528 then
3529         CPPFLAGS="-I$python_include_path $CPPFLAGS"
3530         AC_CHECK_HEADERS(Python.h,
3531                          [with_python="yes"],
3532                          [with_python="no ('Python.h' not found)"])
3533 fi
3534
3535 if test "x$with_python" = "xyes"
3536 then
3537         AC_MSG_CHECKING([for Python LDFLAGS])
3538         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`
3539         python_config_status=$?
3540
3541         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3542         then
3543                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3544                 with_python="no"
3545         else
3546                 AC_MSG_RESULT([$python_library_path])
3547         fi
3548 fi
3549
3550 if test "x$with_python" = "xyes"
3551 then
3552         AC_MSG_CHECKING([for Python LIBS])
3553         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`
3554         python_config_status=$?
3555
3556         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3557         then
3558                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3559                 with_python="no"
3560         else
3561                 AC_MSG_RESULT([$python_library_flags])
3562         fi
3563 fi
3564
3565 if test "x$with_python" = "xyes"
3566 then
3567         LDFLAGS="-L$python_library_path $LDFLAGS"
3568         LIBS="$python_library_flags $LIBS"
3569
3570         AC_CHECK_FUNC(PyObject_CallFunction,
3571                       [with_python="yes"],
3572                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3573 fi
3574
3575 PATH="$SAVE_PATH"
3576 CPPFLAGS="$SAVE_CPPFLAGS"
3577 LDFLAGS="$SAVE_LDFLAGS"
3578 LIBS="$SAVE_LIBS"
3579
3580 if test "x$with_python" = "xyes"
3581 then
3582         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3583         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3584         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3585         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3586         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3587         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3588 fi
3589 # }}} --with-python
3590
3591 # --with-librabbitmq {{{
3592 with_librabbitmq_cppflags=""
3593 with_librabbitmq_ldflags=""
3594 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3595 [
3596         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3597         then
3598                 with_librabbitmq_cppflags="-I$withval/include"
3599                 with_librabbitmq_ldflags="-L$withval/lib"
3600                 with_librabbitmq="yes"
3601         else
3602                 with_librabbitmq="$withval"
3603         fi
3604 ],
3605 [
3606         with_librabbitmq="yes"
3607 ])
3608 SAVE_CPPFLAGS="$CPPFLAGS"
3609 SAVE_LDFLAGS="$LDFLAGS"
3610 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3611 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3612 if test "x$with_librabbitmq" = "xyes"
3613 then
3614         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3615 fi
3616 if test "x$with_librabbitmq" = "xyes"
3617 then
3618         # librabbitmq up to version 0.9.1 provides "library_errno", later
3619         # versions use "library_error". The library does not provide a version
3620         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3621         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3622                          [
3623 #if HAVE_STDLIB_H
3624 # include <stdlib.h>
3625 #endif
3626 #if HAVE_STDIO_H
3627 # include <stdio.h>
3628 #endif
3629 #if HAVE_STDINT_H
3630 # include <stdint.h>
3631 #endif
3632 #if HAVE_INTTYPES_H
3633 # include <inttypes.h>
3634 #endif
3635 #include <amqp.h>
3636                          ])
3637 fi
3638 if test "x$with_librabbitmq" = "xyes"
3639 then
3640         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3641 fi
3642 if test "x$with_librabbitmq" = "xyes"
3643 then
3644         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3645         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3646         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3647         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3648         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3649         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3650         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3651 fi
3652 CPPFLAGS="$SAVE_CPPFLAGS"
3653 LDFLAGS="$SAVE_LDFLAGS"
3654 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3655
3656 with_amqp_tcp_socket="no"
3657 if test "x$with_librabbitmq" = "xyes"
3658 then
3659         SAVE_CPPFLAGS="$CPPFLAGS"
3660         SAVE_LDFLAGS="$LDFLAGS"
3661         SAVE_LIBS="$LIBS"
3662         CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3663         LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3664         LIBS="-lrabbitmq"
3665
3666         AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
3667         AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
3668         if test "x$with_amqp_tcp_socket" = "xyes"
3669         then
3670                 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
3671                                 [Define if librabbitmq provides the new TCP socket interface.])
3672         fi
3673
3674         AC_CHECK_DECLS(amqp_socket_close,
3675                                 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
3676                                 [[
3677 #include <amqp.h>
3678 #ifdef HAVE_AMQP_TCP_SOCKET_H
3679 # include <amqp_tcp_socket.h>
3680 #endif
3681 #ifdef HAVE_AMQP_SOCKET_H
3682 # include <amqp_socket.h>
3683 #endif
3684                                 ]])
3685
3686         CPPFLAGS="$SAVE_CPPFLAGS"
3687         LDFLAGS="$SAVE_LDFLAGS"
3688         LIBS="$SAVE_LIBS"
3689 fi
3690 # }}}
3691
3692 # --with-librouteros {{{
3693 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3694 [
3695  if test "x$withval" = "xyes"
3696  then
3697          with_librouteros="yes"
3698  else if test "x$withval" = "xno"
3699  then
3700          with_librouteros="no"
3701  else
3702          with_librouteros="yes"
3703          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3704          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3705  fi; fi
3706 ],
3707 [with_librouteros="yes"])
3708
3709 SAVE_CPPFLAGS="$CPPFLAGS"
3710 SAVE_LDFLAGS="$LDFLAGS"
3711
3712 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3713 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3714
3715 if test "x$with_librouteros" = "xyes"
3716 then
3717         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3718         then
3719                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3720         fi
3721         AC_CHECK_HEADERS(routeros_api.h,
3722         [with_librouteros="yes"],
3723         [with_librouteros="no (routeros_api.h not found)"])
3724 fi
3725 if test "x$with_librouteros" = "xyes"
3726 then
3727         if test "x$LIBROUTEROS_LDFLAGS" != "x"
3728         then
3729                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3730         fi
3731         AC_CHECK_LIB(routeros, ros_interface,
3732         [with_librouteros="yes"],
3733         [with_librouteros="no (symbol 'ros_interface' not found)"])
3734 fi
3735
3736 CPPFLAGS="$SAVE_CPPFLAGS"
3737 LDFLAGS="$SAVE_LDFLAGS"
3738
3739 if test "x$with_librouteros" = "xyes"
3740 then
3741         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3742         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3743         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3744         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3745 fi
3746 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3747 # }}}
3748
3749 # --with-librrd {{{
3750 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3751 librrd_cflags=""
3752 librrd_ldflags=""
3753 librrd_threadsafe="yes"
3754 librrd_rrdc_update="no"
3755 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3756 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
3757         then
3758                 librrd_cflags="-I$withval/include"
3759                 librrd_ldflags="-L$withval/lib"
3760                 with_librrd="yes"
3761         else
3762                 with_librrd="$withval"
3763         fi
3764 ], [with_librrd="yes"])
3765 if test "x$with_librrd" = "xyes"
3766 then
3767         SAVE_CPPFLAGS="$CPPFLAGS"
3768         SAVE_LDFLAGS="$LDFLAGS"
3769
3770         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3771         LDFLAGS="$LDFLAGS $librrd_ldflags"
3772
3773         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
3774
3775         CPPFLAGS="$SAVE_CPPFLAGS"
3776         LDFLAGS="$SAVE_LDFLAGS"
3777 fi
3778 if test "x$with_librrd" = "xyes"
3779 then
3780         SAVE_CPPFLAGS="$CPPFLAGS"
3781         SAVE_LDFLAGS="$LDFLAGS"
3782
3783         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3784         LDFLAGS="$LDFLAGS $librrd_ldflags"
3785
3786         AC_CHECK_LIB(rrd_th, rrd_update_r,
3787         [with_librrd="yes"
3788          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3789         ],
3790         [librrd_threadsafe="no"
3791          AC_CHECK_LIB(rrd, rrd_update,
3792          [with_librrd="yes"
3793           librrd_ldflags="$librrd_ldflags -lrrd -lm"
3794          ],
3795          [with_librrd="no (symbol 'rrd_update' not found)"],
3796          [-lm])
3797         ],
3798         [-lm])
3799
3800         if test "x$librrd_threadsafe" = "xyes"
3801         then
3802                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3803         else
3804                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3805         fi
3806
3807         CPPFLAGS="$SAVE_CPPFLAGS"
3808         LDFLAGS="$SAVE_LDFLAGS"
3809 fi
3810 if test "x$with_librrd" = "xyes"
3811 then
3812         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3813         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3814         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3815         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3816 fi
3817 if test "x$librrd_threadsafe" = "xyes"
3818 then
3819         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
3820 fi
3821 # }}}
3822
3823 # --with-libsensors {{{
3824 with_sensors_cflags=""
3825 with_sensors_ldflags=""
3826 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
3827 [
3828         if test "x$withval" = "xno"
3829         then
3830                 with_libsensors="no"
3831         else
3832                 with_libsensors="yes"
3833                 if test "x$withval" != "xyes"
3834                 then
3835                         with_sensors_cflags="-I$withval/include"
3836                         with_sensors_ldflags="-L$withval/lib"
3837                         with_libsensors="yes"
3838                 fi
3839         fi
3840 ],
3841 [
3842         if test "x$ac_system" = "xLinux"
3843         then
3844                 with_libsensors="yes"
3845         else
3846                 with_libsensors="no (Linux only library)"
3847         fi
3848 ])
3849 if test "x$with_libsensors" = "xyes"
3850 then
3851         SAVE_CPPFLAGS="$CPPFLAGS"
3852         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3853
3854 #       AC_CHECK_HEADERS(sensors/sensors.h,
3855 #       [
3856 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3857 #       ],
3858 #       [with_libsensors="no (sensors/sensors.h not found)"])
3859         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3860
3861         CPPFLAGS="$SAVE_CPPFLAGS"
3862 fi
3863 if test "x$with_libsensors" = "xyes"
3864 then
3865         SAVE_CPPFLAGS="$CPPFLAGS"
3866         SAVE_LDFLAGS="$LDFLAGS"
3867         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3868         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3869
3870         AC_CHECK_LIB(sensors, sensors_init,
3871         [
3872                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
3873         ],
3874         [with_libsensors="no (libsensors not found)"])
3875
3876         CPPFLAGS="$SAVE_CPPFLAGS"
3877         LDFLAGS="$SAVE_LDFLAGS"
3878 fi
3879 if test "x$with_libsensors" = "xyes"
3880 then
3881         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3882         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3883         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3884         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
3885 fi
3886 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
3887 # }}}
3888
3889 # --with-libsigrok {{{
3890 with_libsigrok_cflags=""
3891 with_libsigrok_ldflags=""
3892 AC_ARG_WITH(libsigrok, [AS_HELP_STRING([--with-libsigrok@<:@=PREFIX@:>@], [Path to libsigrok.])],
3893 [
3894         if test "x$withval" = "xno"
3895         then
3896                 with_libsigrok="no"
3897         else
3898                 with_libsigrok="yes"
3899                 if test "x$withval" != "xyes"
3900                 then
3901                         with_libsigrok_cflags="-I$withval/include"
3902                         with_libsigrok_ldflags="-L$withval/lib"
3903                 fi
3904         fi
3905 ],[with_libsigrok="yes"])
3906
3907 # libsigrok has a glib dependency
3908 if test "x$with_libsigrok" = "xyes"
3909 then
3910 m4_ifdef([AM_PATH_GLIB_2_0],
3911         [
3912          AM_PATH_GLIB_2_0([2.28.0],
3913                 [with_libsigrok_cflags="$with_libsigrok_cflags $GLIB_CFLAGS"; with_libsigrok_ldflags="$with_libsigrok_ldflags $GLIB_LIBS"])
3914         ],
3915         [
3916          with_libsigrok="no (glib not available)"
3917         ]
3918 )
3919 fi
3920
3921 # libsigrok headers
3922 if test "x$with_libsigrok" = "xyes"
3923 then
3924         SAVE_CPPFLAGS="$CPPFLAGS"
3925         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
3926
3927         AC_CHECK_HEADERS(libsigrok/libsigrok.h, [], [with_libsigrok="no (libsigrok/libsigrok.h not found)"])
3928
3929         CPPFLAGS="$SAVE_CPPFLAGS"
3930 fi
3931
3932 # libsigrok library
3933 if test "x$with_libsigrok" = "xyes"
3934 then
3935         SAVE_CPPFLAGS="$CPPFLAGS"
3936         SAVE_LDFLAGS="$LDFLAGS"
3937         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
3938         LDFLAGS="$LDFLAGS $with_libsigrok_ldflags"
3939
3940         AC_CHECK_LIB(sigrok, sr_init,
3941         [
3942                 AC_DEFINE(HAVE_LIBSIGROK, 1, [Define to 1 if you have the sigrok library (-lsigrok).])
3943         ],
3944         [with_libsigrok="no (libsigrok not found)"])
3945
3946         CPPFLAGS="$SAVE_CPPFLAGS"
3947         LDFLAGS="$SAVE_LDFLAGS"
3948 fi
3949 if test "x$with_libsigrok" = "xyes"
3950 then
3951         BUILD_WITH_LIBSIGROK_CFLAGS="$with_libsigrok_cflags"
3952         BUILD_WITH_LIBSIGROK_LDFLAGS="$with_libsigrok_ldflags"
3953         AC_SUBST(BUILD_WITH_LIBSIGROK_CFLAGS)
3954         AC_SUBST(BUILD_WITH_LIBSIGROK_LDFLAGS)
3955 fi
3956 AM_CONDITIONAL(BUILD_WITH_LIBSIGROK, test "x$with_libsigrok" = "xyes")
3957 # }}}
3958
3959 # --with-libstatgrab {{{
3960 with_libstatgrab_cflags=""
3961 with_libstatgrab_ldflags=""
3962 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
3963 [
3964  if test "x$withval" != "xno" \
3965    && test "x$withval" != "xyes"
3966  then
3967    with_libstatgrab_cflags="-I$withval/include"
3968    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3969    with_libstatgrab="yes"
3970    with_libstatgrab_pkg_config="no"
3971  else
3972    with_libstatgrab="$withval"
3973    with_libstatgrab_pkg_config="yes"
3974  fi
3975  ],
3976 [
3977  with_libstatgrab="yes"
3978  with_libstatgrab_pkg_config="yes"
3979 ])
3980
3981 if test "x$with_libstatgrab" = "xyes" \
3982   && test "x$with_libstatgrab_pkg_config" = "xyes"
3983 then
3984   if test "x$PKG_CONFIG" != "x"
3985   then
3986     AC_MSG_CHECKING([pkg-config for libstatgrab])
3987     temp_result="found"
3988     $PKG_CONFIG --exists libstatgrab 2>/dev/null
3989     if test "$?" != "0"
3990     then
3991       with_libstatgrab_pkg_config="no"
3992       with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
3993       temp_result="not found"
3994     fi
3995     AC_MSG_RESULT([$temp_result])
3996   else
3997     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
3998     with_libstatgrab_pkg_config="no"
3999     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
4000   fi
4001 fi
4002
4003 if test "x$with_libstatgrab" = "xyes" \
4004   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4005   && test "x$with_libstatgrab_cflags" = "x"
4006 then
4007   AC_MSG_CHECKING([for libstatgrab CFLAGS])
4008   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4009   if test "$?" = "0"
4010   then
4011     with_libstatgrab_cflags="$temp_result"
4012   else
4013     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4014     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4015   fi
4016   AC_MSG_RESULT([$temp_result])
4017 fi
4018
4019 if test "x$with_libstatgrab" = "xyes" \
4020   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4021   && test "x$with_libstatgrab_ldflags" = "x"
4022 then
4023   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4024   temp_result="`$PKG_CONFIG --libs libstatgrab`"
4025   if test "$?" = "0"
4026   then
4027     with_libstatgrab_ldflags="$temp_result"
4028   else
4029     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4030     temp_result="$PKG_CONFIG --libs libstatgrab failed"
4031   fi
4032   AC_MSG_RESULT([$temp_result])
4033 fi
4034
4035 if test "x$with_libstatgrab" = "xyes"
4036 then
4037   SAVE_CPPFLAGS="$CPPFLAGS"
4038   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4039
4040   AC_CHECK_HEADERS(statgrab.h,
4041                    [with_libstatgrab="yes"],
4042                    [with_libstatgrab="no (statgrab.h not found)"])
4043
4044   CPPFLAGS="$SAVE_CPPFLAGS"
4045 fi
4046
4047 if test "x$with_libstatgrab" = "xyes"
4048 then
4049   SAVE_CFLAGS="$CFLAGS"
4050   SAVE_LDFLAGS="$LDFLAGS"
4051
4052   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4053   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4054
4055   AC_CHECK_LIB(statgrab, sg_init,
4056                [with_libstatgrab="yes"],
4057                [with_libstatgrab="no (symbol sg_init not found)"])
4058
4059   CFLAGS="$SAVE_CFLAGS"
4060   LDFLAGS="$SAVE_LDFLAGS"
4061 fi
4062
4063 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
4064 if test "x$with_libstatgrab" = "xyes"
4065 then
4066   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
4067   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4068   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
4069   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
4070   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
4071 fi
4072 # }}}
4073
4074 # --with-libtokyotyrant {{{
4075 with_libtokyotyrant_cppflags=""
4076 with_libtokyotyrant_ldflags=""
4077 with_libtokyotyrant_libs=""
4078 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4079 [
4080   if test "x$withval" = "xno"
4081   then
4082     with_libtokyotyrant="no"
4083   else if test "x$withval" = "xyes"
4084   then
4085     with_libtokyotyrant="yes"
4086   else
4087     with_libtokyotyrant_cppflags="-I$withval/include"
4088     with_libtokyotyrant_ldflags="-L$withval/include"
4089     with_libtokyotyrant_libs="-ltokyotyrant"
4090     with_libtokyotyrant="yes"
4091   fi; fi
4092 ],
4093 [
4094   with_libtokyotyrant="yes"
4095 ])
4096
4097 if test "x$with_libtokyotyrant" = "xyes"
4098 then
4099   if $PKG_CONFIG --exists tokyotyrant
4100   then
4101     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
4102     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
4103     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
4104   fi
4105 fi
4106
4107 SAVE_CPPFLAGS="$CPPFLAGS"
4108 SAVE_LDFLAGS="$LDFLAGS"
4109 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
4110 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
4111
4112 if test "x$with_libtokyotyrant" = "xyes"
4113 then
4114   AC_CHECK_HEADERS(tcrdb.h,
4115   [
4116           AC_DEFINE(HAVE_TCRDB_H, 1,
4117                     [Define to 1 if you have the <tcrdb.h> header file.])
4118   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
4119 fi
4120
4121 if test "x$with_libtokyotyrant" = "xyes"
4122 then
4123   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4124   [
4125           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4126                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4127   ],
4128   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4129   [$with_libtokyotyrant_libs])
4130 fi
4131
4132 CPPFLAGS="$SAVE_CPPFLAGS"
4133 LDFLAGS="$SAVE_LDFLAGS"
4134
4135 if test "x$with_libtokyotyrant" = "xyes"
4136 then 
4137   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4138   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4139   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4140   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4141   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4142   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4143 fi
4144 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4145 # }}}
4146
4147 # --with-libupsclient {{{
4148 with_libupsclient_config=""
4149 with_libupsclient_cflags=""
4150 with_libupsclient_libs=""
4151 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4152 [
4153         if test "x$withval" = "xno"
4154         then
4155                 with_libupsclient="no"
4156         else if test "x$withval" = "xyes"
4157         then
4158                 with_libupsclient="use_pkgconfig"
4159         else
4160                 if test -x "$withval"
4161                 then
4162                         with_libupsclient_config="$withval"
4163                         with_libupsclient="use_libupsclient_config"
4164                 else if test -x "$withval/bin/libupsclient-config"
4165                 then
4166                         with_libupsclient_config="$withval/bin/libupsclient-config"
4167                         with_libupsclient="use_libupsclient_config"
4168                 else
4169                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4170                         with_libupsclient_cflags="-I$withval/include"
4171                         with_libupsclient_libs="-L$withval/lib -lupsclient"
4172                         with_libupsclient="yes"
4173                 fi; fi
4174         fi; fi
4175 ],
4176 [with_libupsclient="use_pkgconfig"])
4177
4178 # configure using libupsclient-config
4179 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4180 then
4181         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4182         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4183         if test $? -ne 0
4184         then
4185                 with_libupsclient="no ($with_libupsclient_config failed)"
4186         fi
4187         with_libupsclient_libs="`$with_libupsclient_config --libs`"
4188         if test $? -ne 0
4189         then
4190                 with_libupsclient="no ($with_libupsclient_config failed)"
4191         fi
4192 fi
4193 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4194 then
4195         with_libupsclient="yes"
4196 fi
4197
4198 # configure using pkg-config
4199 if test "x$with_libupsclient" = "xuse_pkgconfig"
4200 then
4201         if test "x$PKG_CONFIG" = "x"
4202         then
4203                 with_libupsclient="no (Don't have pkg-config)"
4204         fi
4205 fi
4206 if test "x$with_libupsclient" = "xuse_pkgconfig"
4207 then
4208         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4209         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4210         if test $? -ne 0
4211         then
4212                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4213         fi
4214 fi
4215 if test "x$with_libupsclient" = "xuse_pkgconfig"
4216 then
4217         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4218         if test $? -ne 0
4219         then
4220                 with_libupsclient="no ($PKG_CONFIG failed)"
4221         fi
4222         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4223         if test $? -ne 0
4224         then
4225                 with_libupsclient="no ($PKG_CONFIG failed)"
4226         fi
4227 fi
4228 if test "x$with_libupsclient" = "xuse_pkgconfig"
4229 then
4230         with_libupsclient="yes"
4231 fi
4232
4233 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4234 # the actual checks.
4235 if test "x$with_libupsclient" = "xyes"
4236 then
4237         SAVE_CPPFLAGS="$CPPFLAGS"
4238         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4239
4240         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4241
4242         CPPFLAGS="$SAVE_CPPFLAGS"
4243 fi
4244 if test "x$with_libupsclient" = "xyes"
4245 then
4246         SAVE_CPPFLAGS="$CPPFLAGS"
4247         SAVE_LDFLAGS="$LDFLAGS"
4248
4249         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4250         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4251
4252         AC_CHECK_LIB(upsclient, upscli_connect,
4253                      [with_libupsclient="yes"],
4254                      [with_libupsclient="no (symbol upscli_connect not found)"])
4255
4256         CPPFLAGS="$SAVE_CPPFLAGS"
4257         LDFLAGS="$SAVE_LDFLAGS"
4258 fi
4259 if test "x$with_libupsclient" = "xyes"
4260 then
4261         SAVE_CPPFLAGS="$CPPFLAGS"
4262         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4263
4264         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4265 [#include <stdlib.h>
4266 #include <stdio.h>
4267 #include <upsclient.h>])
4268
4269         CPPFLAGS="$SAVE_CPPFLAGS"
4270 fi
4271 if test "x$with_libupsclient" = "xyes"
4272 then
4273         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4274         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4275         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4276         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4277 fi
4278 # }}}
4279
4280 # --with-libxmms {{{
4281 with_xmms_config="xmms-config"
4282 with_xmms_cflags=""
4283 with_xmms_libs=""
4284 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4285 [
4286         if test "x$withval" != "xno" \
4287                 && test "x$withval" != "xyes"
4288         then
4289                 if test -f "$withval" && test -x "$withval";
4290                 then
4291                         with_xmms_config="$withval"
4292                 else if test -x "$withval/bin/xmms-config"
4293                 then
4294                         with_xmms_config="$withval/bin/xmms-config"
4295                 fi; fi
4296                 with_libxmms="yes"
4297         else if test "x$withval" = "xno"
4298         then
4299                 with_libxmms="no"
4300         else
4301                 with_libxmms="yes"
4302         fi; fi
4303 ],
4304 [
4305         with_libxmms="yes"
4306 ])
4307 if test "x$with_libxmms" = "xyes"
4308 then
4309         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4310         xmms_config_status=$?
4311
4312         if test $xmms_config_status -ne 0
4313         then
4314                 with_libxmms="no"
4315         fi
4316 fi
4317 if test "x$with_libxmms" = "xyes"
4318 then
4319         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4320         xmms_config_status=$?
4321
4322         if test $xmms_config_status -ne 0
4323         then
4324                 with_libxmms="no"
4325         fi
4326 fi
4327 if test "x$with_libxmms" = "xyes"
4328 then
4329         AC_CHECK_LIB(xmms, xmms_remote_get_info,
4330         [
4331                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4332                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4333                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4334                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4335         ],
4336         [
4337                 with_libxmms="no"
4338         ],
4339         [$with_xmms_libs])
4340 fi
4341 with_libxmms_numeric=0
4342 if test "x$with_libxmms" = "xyes"
4343 then
4344         with_libxmms_numeric=1
4345 fi
4346 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4347 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4348 # }}}
4349
4350 # --with-libyajl {{{
4351 with_libyajl_cppflags=""
4352 with_libyajl_ldflags=""
4353 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4354 [
4355         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4356         then
4357                 with_libyajl_cppflags="-I$withval/include"
4358                 with_libyajl_ldflags="-L$withval/lib"
4359                 with_libyajl="yes"
4360         else
4361                 with_libyajl="$withval"
4362         fi
4363 ],
4364 [
4365         with_libyajl="yes"
4366 ])
4367 if test "x$with_libyajl" = "xyes"
4368 then
4369         SAVE_CPPFLAGS="$CPPFLAGS"
4370         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4371
4372         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
4373         AC_CHECK_HEADERS(yajl/yajl_version.h)
4374
4375         CPPFLAGS="$SAVE_CPPFLAGS"
4376 fi
4377 if test "x$with_libyajl" = "xyes"
4378 then
4379         SAVE_CPPFLAGS="$CPPFLAGS"
4380         SAVE_LDFLAGS="$LDFLAGS"
4381         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4382         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4383
4384         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4385
4386         CPPFLAGS="$SAVE_CPPFLAGS"
4387         LDFLAGS="$SAVE_LDFLAGS"
4388 fi
4389 if test "x$with_libyajl" = "xyes"
4390 then
4391         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4392         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4393         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4394         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4395         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4396         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4397         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4398 fi
4399 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4400 # }}}
4401
4402 # --with-mic {{{
4403 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
4404 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
4405 with_mic_libs=""
4406 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
4407 [
4408         if test "x$withval" = "xno"
4409         then
4410                 with_mic="no"
4411         else if test "x$withval" = "xyes"
4412         then
4413                 with_mic="yes"
4414         else if test -d "$with_mic/lib"
4415         then
4416                 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
4417                 with_mic_cflags="-I$withval/include"
4418                 with_mic_ldpath="-L$withval/lib/Linux"
4419                 with_mic_libs="-lMicAccessSDK -lscif -lpthread"
4420                 with_mic="yes"
4421         fi; fi; fi
4422 ],
4423 [with_mic="yes"])
4424 if test "x$with_mic" = "xyes"
4425 then
4426         SAVE_CPPFLAGS="$CPPFLAGS"
4427         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4428         AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
4429         CPPFLAGS="$SAVE_CPPFLAGS"
4430 fi
4431 if test "x$with_mic" = "xyes"
4432 then
4433         SAVE_CPPFLAGS="$CPPFLAGS"
4434         SAVE_LDFLAGS="$LDFLAGS"
4435
4436         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4437         LDFLAGS="$LDFLAGS $with_mic_ldpath"
4438
4439         AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
4440                         [with_mic_ldpath="$with_mic_ldpath"
4441                         with_mic_libs="-lMicAccessSDK -lscif -lpthread"],
4442                         [with_mic="no (symbol MicInitAPI not found)"],[-lscif -lpthread])
4443
4444         CPPFLAGS="$SAVE_CPPFLAGS"
4445         LDFLAGS="$SAVE_LDFLAGS"
4446 fi
4447
4448 if test "x$with_mic" = "xyes"
4449 then
4450         BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
4451         BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
4452         BUILD_WITH_MIC_LDADD="$with_mic_libs"
4453         AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
4454         AC_SUBST(BUILD_WITH_MIC_LIBPATH)
4455         AC_SUBST(BUILD_WITH_MIC_LDADD)
4456 fi
4457 #}}}
4458
4459 # --with-libvarnish {{{
4460 with_libvarnish_cppflags=""
4461 with_libvarnish_cflags=""
4462 with_libvarnish_libs=""
4463 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
4464 [
4465         if test "x$withval" = "xno"
4466         then
4467                 with_libvarnish="no"
4468         else if test "x$withval" = "xyes"
4469         then
4470                 with_libvarnish="use_pkgconfig"
4471         else if test -d "$with_libvarnish/lib"
4472         then
4473                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
4474                 with_libvarnish_cflags="-I$withval/include"
4475                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
4476                 with_libvarnish="yes"
4477         fi; fi; fi
4478 ],
4479 [with_libvarnish="use_pkgconfig"])
4480
4481 # configure using pkg-config
4482 if test "x$with_libvarnish" = "xuse_pkgconfig"
4483 then
4484         if test "x$PKG_CONFIG" = "x"
4485         then
4486                 with_libvarnish="no (Don't have pkg-config)"
4487         fi
4488 fi
4489 if test "x$with_libvarnish" = "xuse_pkgconfig"
4490 then
4491         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
4492         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
4493         if test $? -ne 0
4494         then
4495                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
4496         fi
4497 fi
4498 if test "x$with_libvarnish" = "xuse_pkgconfig"
4499 then
4500         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
4501         if test $? -ne 0
4502         then
4503                 with_libvarnish="no ($PKG_CONFIG failed)"
4504         fi
4505         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
4506         if test $? -ne 0
4507         then
4508                 with_libvarnish="no ($PKG_CONFIG failed)"
4509         fi
4510 fi
4511 if test "x$with_libvarnish" = "xuse_pkgconfig"
4512 then
4513         with_libvarnish="yes"
4514 fi
4515
4516 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
4517 # the actual checks.
4518 if test "x$with_libvarnish" = "xyes"
4519 then
4520         SAVE_CPPFLAGS="$CPPFLAGS"
4521         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4522         AC_CHECK_HEADERS(varnish/varnishapi.h, [], [with_libvarnish="no (varnish/varnishapi.h not found)"])
4523
4524         CPPFLAGS="$SAVE_CPPFLAGS"
4525 fi
4526 if test "x$with_libvarnish" = "xyes"
4527 then
4528         SAVE_CPPFLAGS="$CPPFLAGS"
4529         #SAVE_LDFLAGS="$LDFLAGS"
4530
4531         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4532         #LDFLAGS="$LDFLAGS $with_libvarnish_libs"
4533
4534     AC_CHECK_HEADERS(varnish/vsc.h,
4535         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
4536         [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])])
4537
4538         CPPFLAGS="$SAVE_CPPFLAGS"
4539         #LDFLAGS="$SAVE_LDFLAGS"
4540 fi
4541 if test "x$with_libvarnish" = "xyes"
4542 then
4543         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
4544         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
4545         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
4546         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
4547 fi
4548 # }}}
4549
4550 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
4551 with_libxml2="no (pkg-config isn't available)"
4552 with_libxml2_cflags=""
4553 with_libxml2_ldflags=""
4554 with_libvirt="no (pkg-config isn't available)"
4555 with_libvirt_cflags=""
4556 with_libvirt_ldflags=""
4557 if test "x$PKG_CONFIG" != "x"
4558 then
4559         $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
4560         if test "$?" = "0"
4561         then
4562                 with_libxml2="yes"
4563         else
4564                 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
4565         fi
4566
4567         $PKG_CONFIG --exists libvirt 2>/dev/null
4568         if test "$?" = "0"
4569         then
4570                 with_libvirt="yes"
4571         else
4572                 with_libvirt="no (pkg-config doesn't know libvirt)"
4573         fi
4574 fi
4575 if test "x$with_libxml2" = "xyes"
4576 then
4577         with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
4578         if test $? -ne 0
4579         then
4580                 with_libxml2="no"
4581         fi
4582         with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
4583         if test $? -ne 0
4584         then
4585                 with_libxml2="no"
4586         fi
4587 fi
4588 if test "x$with_libxml2" = "xyes"
4589 then
4590         SAVE_CPPFLAGS="$CPPFLAGS"
4591         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
4592
4593         AC_CHECK_HEADERS(libxml/parser.h, [],
4594                       [with_libxml2="no (libxml/parser.h not found)"])
4595
4596         CPPFLAGS="$SAVE_CPPFLAGS"
4597 fi
4598 if test "x$with_libxml2" = "xyes"
4599 then
4600         SAVE_CFLAGS="$CFLAGS"
4601         SAVE_LDFLAGS="$LDFLAGS"
4602
4603         CFLAGS="$CFLAGS $with_libxml2_cflags"
4604         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
4605
4606         AC_CHECK_LIB(xml2, xmlXPathEval,
4607                      [with_libxml2="yes"],
4608                      [with_libxml2="no (symbol xmlXPathEval not found)"])
4609
4610         CFLAGS="$SAVE_CFLAGS"
4611         LDFLAGS="$SAVE_LDFLAGS"
4612 fi
4613 dnl Add the right compiler flags and libraries.
4614 if test "x$with_libxml2" = "xyes"; then
4615         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
4616         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
4617         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
4618         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
4619 fi
4620 if test "x$with_libvirt" = "xyes"
4621 then
4622         with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
4623         if test $? -ne 0
4624         then
4625                 with_libvirt="no"
4626         fi
4627         with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
4628         if test $? -ne 0
4629         then
4630                 with_libvirt="no"
4631         fi
4632 fi
4633 if test "x$with_libvirt" = "xyes"
4634 then
4635         SAVE_CPPFLAGS="$CPPFLAGS"
4636         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
4637
4638         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
4639                       [with_libvirt="no (libvirt/libvirt.h not found)"])
4640
4641         CPPFLAGS="$SAVE_CPPFLAGS"
4642 fi
4643 if test "x$with_libvirt" = "xyes"
4644 then
4645         SAVE_CFLAGS="$CFLAGS"
4646         SAVE_LDFLAGS="$LDFLAGS"
4647
4648         CFLAGS="$CFLAGS $with_libvirt_cflags"
4649         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
4650
4651         AC_CHECK_LIB(virt, virDomainBlockStats,
4652                      [with_libvirt="yes"],
4653                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
4654
4655         CFLAGS="$SAVE_CFLAGS"
4656         LDFLAGS="$SAVE_LDFLAGS"
4657 fi
4658 dnl Add the right compiler flags and libraries.
4659 if test "x$with_libvirt" = "xyes"; then
4660         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
4661         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
4662         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
4663         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
4664 fi
4665 # }}}
4666
4667 # $PKG_CONFIG --exists OpenIPMIpthread {{{
4668 with_libopenipmipthread="yes"
4669 with_libopenipmipthread_cflags=""
4670 with_libopenipmipthread_libs=""
4671
4672 AC_MSG_CHECKING([for pkg-config])
4673 temp_result="no"
4674 if test "x$PKG_CONFIG" = "x"
4675 then
4676         with_libopenipmipthread="no"
4677         temp_result="no"
4678 else
4679         temp_result="$PKG_CONFIG"
4680 fi
4681 AC_MSG_RESULT([$temp_result])
4682
4683 if test "x$with_libopenipmipthread" = "xyes"
4684 then
4685         AC_MSG_CHECKING([for libOpenIPMIpthread])
4686         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
4687         if test "$?" != "0"
4688         then
4689                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
4690         fi
4691         AC_MSG_RESULT([$with_libopenipmipthread])
4692 fi
4693
4694 if test "x$with_libopenipmipthread" = "xyes"
4695 then
4696         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
4697         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
4698         if test "$?" = "0"
4699         then
4700                 with_libopenipmipthread_cflags="$temp_result"
4701         else
4702                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
4703                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
4704         fi
4705         AC_MSG_RESULT([$temp_result])
4706 fi
4707
4708 if test "x$with_libopenipmipthread" = "xyes"
4709 then
4710         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
4711         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
4712         if test "$?" = "0"
4713         then
4714                 with_libopenipmipthread_ldflags="$temp_result"
4715         else
4716                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
4717                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
4718         fi
4719         AC_MSG_RESULT([$temp_result])
4720 fi
4721
4722 if test "x$with_libopenipmipthread" = "xyes"
4723 then
4724         SAVE_CPPFLAGS="$CPPFLAGS"
4725         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
4726
4727         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
4728                          [with_libopenipmipthread="yes"],
4729                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
4730 [#include <OpenIPMI/ipmiif.h>
4731 #include <OpenIPMI/ipmi_err.h>
4732 #include <OpenIPMI/ipmi_posix.h>
4733 #include <OpenIPMI/ipmi_conn.h>
4734 ])
4735
4736         CPPFLAGS="$SAVE_CPPFLAGS"
4737 fi
4738
4739 if test "x$with_libopenipmipthread" = "xyes"
4740 then
4741         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
4742         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
4743         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
4744         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
4745 fi
4746 # }}}
4747
4748 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
4749                 [with_libnotify="yes"],
4750                 [if test "x$LIBNOTIFY_PKG_ERRORS" = "x"; then
4751                          with_libnotify="no"
4752                  else
4753                          with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"
4754                  fi])
4755
4756 # Check for enabled/disabled features
4757 #
4758
4759 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
4760 # ------------------------------------------------------------
4761 dnl
4762 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
4763 dnl
4764 AC_DEFUN(
4765         [AC_COLLECTD],
4766         [
4767         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
4768         m4_if(
4769                 [$2],
4770                 [enable],
4771                 [dnl
4772                 m4_define([EnDis],[disabled])dnl
4773                 m4_define([YesNo],[no])dnl
4774                 ],dnl
4775                 [m4_if(
4776                         [$2],
4777                         [disable],
4778                         [dnl
4779                         m4_define([EnDis],[enabled])dnl
4780                         m4_define([YesNo],[yes])dnl
4781                         ],
4782                         [dnl
4783                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
4784                         ]dnl
4785                 )]dnl
4786         )dnl
4787         m4_if([$3], [feature], [],
4788                 [m4_if(
4789                         [$3], [module], [],
4790                         [dnl
4791                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
4792                         ]dnl
4793                 )]dnl
4794         )dnl
4795         AC_ARG_ENABLE(
4796                 [$1],
4797                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
4798                 [],
4799                 enable_$1='[YesNo]'dnl
4800         )# AC_ARG_ENABLE
4801 if test "x$enable_$1" = "xno"
4802 then
4803         collectd_$1=0
4804 else
4805         if test "x$enable_$1" = "xyes"
4806         then
4807                 collectd_$1=1
4808         else
4809                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
4810                 collectd_$1=1
4811                 enable_$1='yes'
4812         fi
4813 fi
4814         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
4815         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
4816         ]dnl
4817 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4818
4819 # AC_PLUGIN(name, default, info)
4820 # ------------------------------------------------------------
4821 dnl
4822 AC_DEFUN(
4823   [AC_PLUGIN],
4824   [
4825     enable_plugin="no"
4826     force="no"
4827     AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
4828     [
4829      if test "x$enableval" = "xyes"
4830      then
4831              enable_plugin="yes"
4832      else if test "x$enableval" = "xforce"
4833      then
4834              enable_plugin="yes"
4835              force="yes"
4836      else
4837              enable_plugin="no (disabled on command line)"
4838      fi; fi
4839     ],
4840     [
4841          if test "x$enable_all_plugins" = "xauto"
4842          then
4843              if test "x$2" = "xyes"
4844              then
4845                      enable_plugin="yes"
4846              else
4847                      enable_plugin="no"
4848              fi
4849          else
4850              enable_plugin="$enable_all_plugins"
4851          fi
4852     ])
4853     if test "x$enable_plugin" = "xyes"
4854     then
4855             if test "x$2" = "xyes" || test "x$force" = "xyes"
4856             then
4857                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
4858                     if test "x$2" != "xyes"
4859                     then
4860                             dependency_warning="yes"
4861                     fi
4862             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
4863                     dependency_error="yes"
4864                     enable_plugin="no (dependency error)"
4865             fi
4866     fi
4867     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
4868     enable_$1="$enable_plugin"
4869   ]
4870 )# AC_PLUGIN(name, default, info)
4871
4872 m4_divert_once([HELP_ENABLE], [
4873 collectd features:])
4874 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
4875 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
4876 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
4877 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
4878
4879 dependency_warning="no"
4880 dependency_error="no"
4881
4882 plugin_ascent="no"
4883 plugin_battery="no"
4884 plugin_bind="no"
4885 plugin_cgroups="no"
4886 plugin_conntrack="no"
4887 plugin_contextswitch="no"
4888 plugin_cpu="no"
4889 plugin_cpufreq="no"
4890 plugin_curl_json="no"
4891 plugin_curl_xml="no"
4892 plugin_df="no"
4893 plugin_disk="no"
4894 plugin_entropy="no"
4895 plugin_ethstat="no"
4896 plugin_fscache="no"
4897 plugin_interface="no"
4898 plugin_ipmi="no"
4899 plugin_ipvs="no"
4900 plugin_irq="no"
4901 plugin_libvirt="no"
4902 plugin_load="no"
4903 plugin_memory="no"
4904 plugin_multimeter="no"
4905 plugin_nfs="no"
4906 plugin_numa="no"
4907 plugin_perl="no"
4908 plugin_processes="no"
4909 plugin_protocols="no"
4910 plugin_serial="no"
4911 plugin_swap="no"
4912 plugin_tape="no"
4913 plugin_tcpconns="no"
4914 plugin_ted="no"
4915 plugin_thermal="no"
4916 plugin_users="no"
4917 plugin_uptime="no"
4918 plugin_vmem="no"
4919 plugin_vserver="no"
4920 plugin_wireless="no"
4921 plugin_zfs_arc="no"
4922
4923 # Linux
4924 if test "x$ac_system" = "xLinux"
4925 then
4926         plugin_battery="yes"
4927         plugin_conntrack="yes"
4928         plugin_contextswitch="yes"
4929         plugin_cgroups="yes"
4930         plugin_cpu="yes"
4931         plugin_cpufreq="yes"
4932         plugin_disk="yes"
4933         plugin_entropy="yes"
4934         plugin_fscache="yes"
4935         plugin_interface="yes"
4936         plugin_irq="yes"
4937         plugin_load="yes"
4938         plugin_lvm="yes"
4939         plugin_memory="yes"
4940         plugin_nfs="yes"
4941         plugin_numa="yes"
4942         plugin_processes="yes"
4943         plugin_protocols="yes"
4944         plugin_serial="yes"
4945         plugin_swap="yes"
4946         plugin_tcpconns="yes"
4947         plugin_thermal="yes"
4948         plugin_uptime="yes"
4949         plugin_vmem="yes"
4950         plugin_vserver="yes"
4951         plugin_wireless="yes"
4952
4953         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
4954         then
4955                 plugin_ipvs="yes"
4956         fi
4957 fi
4958
4959 if test "x$ac_system" = "xOpenBSD"
4960 then
4961         plugin_tcpconns="yes"
4962 fi
4963
4964 # Mac OS X devices
4965 if test "x$with_libiokit" = "xyes"
4966 then
4967         plugin_battery="yes"
4968         plugin_disk="yes"
4969 fi
4970
4971 # AIX
4972
4973 if test "x$ac_system" = "xAIX"
4974 then
4975         plugin_tcpconns="yes"
4976 fi
4977
4978 # FreeBSD
4979
4980 if test "x$ac_system" = "xFreeBSD"
4981 then
4982         plugin_zfs_arc="yes"
4983 fi
4984
4985
4986 if test "x$with_perfstat" = "xyes"
4987 then
4988         plugin_cpu="yes"
4989         plugin_contextswitch="yes"
4990         plugin_disk="yes"
4991         plugin_memory="yes"
4992         plugin_swap="yes"
4993         plugin_interface="yes"
4994         plugin_load="yes"
4995         plugin_uptime="yes"
4996 fi
4997
4998 if test "x$with_procinfo" = "xyes"
4999 then
5000         plugin_processes="yes"
5001 fi
5002
5003 # Solaris
5004 if test "x$with_kstat" = "xyes"
5005 then
5006         plugin_nfs="yes"
5007         plugin_processes="yes"
5008         plugin_uptime="yes"
5009         plugin_zfs_arc="yes"
5010 fi
5011
5012 if test "x$with_devinfo$with_kstat" = "xyesyes"
5013 then
5014         plugin_cpu="yes"
5015         plugin_disk="yes"
5016         plugin_interface="yes"
5017         plugin_memory="yes"
5018         plugin_tape="yes"
5019 fi
5020
5021 # libstatgrab
5022 if test "x$with_libstatgrab" = "xyes"
5023 then
5024         plugin_cpu="yes"
5025         plugin_disk="yes"
5026         plugin_interface="yes"
5027         plugin_load="yes"
5028         plugin_memory="yes"
5029         plugin_swap="yes"
5030         plugin_users="yes"
5031 fi
5032
5033 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5034 then
5035         plugin_ascent="yes"
5036         if test "x$have_strptime" = "xyes"
5037         then
5038                 plugin_bind="yes"
5039         fi
5040 fi
5041
5042 if test "x$with_libopenipmipthread" = "xyes"
5043 then
5044         plugin_ipmi="yes"
5045 fi
5046
5047 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
5048 then
5049         plugin_curl_json="yes"
5050 fi
5051
5052 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5053 then
5054         plugin_curl_xml="yes"
5055 fi
5056
5057 if test "x$have_processor_info" = "xyes"
5058 then
5059         plugin_cpu="yes"
5060 fi
5061 if test "x$have_sysctl" = "xyes"
5062 then
5063         plugin_cpu="yes"
5064         plugin_memory="yes"
5065         plugin_uptime="yes"
5066         if test "x$ac_system" = "xDarwin"
5067         then
5068                 plugin_swap="yes"
5069         fi
5070 fi
5071 if test "x$have_sysctlbyname" = "xyes"
5072 then
5073         plugin_contextswitch="yes"
5074         plugin_cpu="yes"
5075         plugin_memory="yes"
5076         plugin_tcpconns="yes"
5077 fi
5078
5079 # Df plugin: Check if we know how to determine mount points first.
5080 #if test "x$have_listmntent" = "xyes"; then
5081 #       plugin_df="yes"
5082 #fi
5083 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
5084 then
5085         plugin_df="yes"
5086 fi
5087 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
5088 then
5089         plugin_df="yes"
5090 fi
5091 #if test "x$have_getmntent" = "xseq"
5092 #then
5093 #       plugin_df="yes"
5094 #fi
5095 if test "x$c_cv_have_one_getmntent" = "xyes"
5096 then
5097         plugin_df="yes"
5098 fi
5099
5100 # Df plugin: Check if we have either `statfs' or `statvfs' second.
5101 if test "x$plugin_df" = "xyes"
5102 then
5103         plugin_df="no"
5104         if test "x$have_statfs" = "xyes"
5105         then
5106                 plugin_df="yes"
5107         fi
5108         if test "x$have_statvfs" = "xyes"
5109         then
5110                 plugin_df="yes"
5111         fi
5112 fi
5113
5114 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
5115 then
5116         plugin_ethstat="yes"
5117 fi
5118
5119 if test "x$have_getifaddrs" = "xyes"
5120 then
5121         plugin_interface="yes"
5122 fi
5123
5124 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
5125 then
5126         plugin_libvirt="yes"
5127 fi
5128
5129 if test "x$have_getloadavg" = "xyes"
5130 then
5131         plugin_load="yes"
5132 fi
5133
5134 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
5135 then
5136         plugin_perl="yes"
5137 fi
5138
5139 # Mac OS X memory interface
5140 if test "x$have_host_statistics" = "xyes"
5141 then
5142         plugin_memory="yes"
5143 fi
5144
5145 if test "x$have_termios_h" = "xyes"
5146 then
5147         plugin_multimeter="yes"
5148         plugin_ted="yes"
5149 fi
5150
5151 if test "x$have_thread_info" = "xyes"
5152 then
5153         plugin_processes="yes"
5154 fi
5155
5156 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
5157 then
5158         plugin_processes="yes"
5159 fi
5160
5161 if test "x$with_kvm_getswapinfo" = "xyes"
5162 then
5163         plugin_swap="yes"
5164 fi
5165
5166 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
5167 then
5168         plugin_swap="yes"
5169 fi
5170
5171 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
5172 then
5173         plugin_tcpconns="yes"
5174 fi
5175
5176 if test "x$have_getutent" = "xyes"
5177 then
5178         plugin_users="yes"
5179 fi
5180 if test "x$have_getutxent" = "xyes"
5181 then
5182         plugin_users="yes"
5183 fi
5184
5185 m4_divert_once([HELP_ENABLE], [
5186 collectd plugins:])
5187
5188 AC_ARG_ENABLE([all-plugins],
5189                 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
5190                 [
5191                  if test "x$enableval" = "xyes"
5192                  then
5193                          enable_all_plugins="yes"
5194                  else if test "x$enableval" = "xauto"
5195                  then
5196                          enable_all_plugins="auto"
5197                  else
5198                          enable_all_plugins="no"
5199                  fi; fi
5200                 ],
5201                 [enable_all_plugins="auto"])
5202
5203 m4_divert_once([HELP_ENABLE], [])
5204
5205 AC_PLUGIN([aggregation], [yes],                [Aggregation plugin])
5206 AC_PLUGIN([amqp],        [$with_librabbitmq],  [AMQP output plugin])
5207 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
5208 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
5209 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
5210 AC_PLUGIN([aquaero],     [$with_libaquaero5],  [Aquaero's hardware sensors])
5211 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
5212 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
5213 AC_PLUGIN([bind],        [$plugin_bind],       [ISC Bind nameserver statistics])
5214 AC_PLUGIN([conntrack],   [$plugin_conntrack],  [nf_conntrack statistics])
5215 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
5216 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
5217 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
5218 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
5219 AC_PLUGIN([curl],        [$with_libcurl],      [CURL generic web statistics])
5220 AC_PLUGIN([curl_json],   [$plugin_curl_json],    [CouchDB statistics])
5221 AC_PLUGIN([curl_xml],   [$plugin_curl_xml],    [CURL generic xml statistics])
5222 AC_PLUGIN([cgroups],     [$plugin_cgroups],    [CGroups CPU usage accounting])
5223 AC_PLUGIN([dbi],         [$with_libdbi],       [General database statistics])
5224 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
5225 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
5226 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
5227 AC_PLUGIN([email],       [yes],                [EMail statistics])
5228 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
5229 AC_PLUGIN([ethstat],     [$plugin_ethstat],    [Stats from NIC driver])
5230 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
5231 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
5232 AC_PLUGIN([fscache],     [$plugin_fscache],    [fscache statistics])
5233 AC_PLUGIN([gmond],       [$with_libganglia],   [Ganglia plugin])
5234 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
5235 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
5236 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
5237 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
5238 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
5239 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
5240 AC_PLUGIN([java],        [$with_java],         [Embed the Java Virtual Machine])
5241 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
5242 AC_PLUGIN([load],        [$plugin_load],       [System load])
5243 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
5244 AC_PLUGIN([lpar],        [$with_perfstat],     [AIX logical partitions statistics])
5245 AC_PLUGIN([lvm],         [$with_liblvm2app],   [LVM statistics])
5246 AC_PLUGIN([madwifi],     [$have_linux_wireless_h], [Madwifi wireless statistics])
5247 AC_PLUGIN([match_empty_counter], [yes],        [The empty counter match])
5248 AC_PLUGIN([match_hashed], [yes],               [The hashed match])
5249 AC_PLUGIN([match_regex], [yes],                [The regex match])
5250 AC_PLUGIN([match_timediff], [yes],             [The timediff match])
5251 AC_PLUGIN([match_value], [yes],                [The value match])
5252 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
5253 AC_PLUGIN([md],          [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
5254 AC_PLUGIN([memcachec],   [$with_libmemcached], [memcachec statistics])
5255 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
5256 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
5257 AC_PLUGIN([mic],         [$with_mic],          [Intel Many Integrated Core stats])
5258 AC_PLUGIN([modbus],      [$with_libmodbus],    [Modbus plugin])
5259 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
5260 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
5261 AC_PLUGIN([netapp],      [$with_libnetapp],    [NetApp plugin])
5262 AC_PLUGIN([netlink],     [$with_libmnl],       [Enhanced Linux network statistics])
5263 AC_PLUGIN([network],     [yes],                [Network communication plugin])
5264 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
5265 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
5266 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
5267 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
5268 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
5269 AC_PLUGIN([numa],        [$plugin_numa],       [NUMA virtual memory statistics])
5270 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
5271 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
5272 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
5273 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
5274 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
5275 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
5276 AC_PLUGIN([pf],          [$have_net_pfvar_h],  [BSD packet filter (PF) statistics])
5277 # FIXME: Check for libevent, too.
5278 AC_PLUGIN([pinba],       [$have_protoc_c],     [Pinba statistics])
5279 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
5280 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
5281 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
5282 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
5283 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
5284 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
5285 AC_PLUGIN([redis],       [$with_libcredis],    [Redis plugin])
5286 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
5287 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
5288 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
5289 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
5290 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
5291 AC_PLUGIN([sigrok],      [$with_libsigrok],    [sigrok acquisition sources])
5292 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
5293 AC_PLUGIN([statsd],      [yes],                [StatsD plugin])
5294 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
5295 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
5296 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
5297 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
5298 AC_PLUGIN([tail_csv],    [yes],                [Parsing of CSV files])
5299 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
5300 AC_PLUGIN([target_notification], [yes],        [The notification target])
5301 AC_PLUGIN([target_replace], [yes],             [The replace target])
5302 AC_PLUGIN([target_scale],[yes],                [The scale target])
5303 AC_PLUGIN([target_set],  [yes],                [The set target])
5304 AC_PLUGIN([target_v5upgrade], [yes],           [The v5upgrade target])
5305 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
5306 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
5307 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
5308 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
5309 AC_PLUGIN([threshold],   [yes],                [Threshold checking plugin])
5310 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
5311 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
5312 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
5313 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
5314 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
5315 AC_PLUGIN([varnish],     [$with_libvarnish],   [Varnish cache statistics])
5316 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
5317 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
5318 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
5319 AC_PLUGIN([write_graphite], [yes],             [Graphite / Carbon output plugin])
5320 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
5321 AC_PLUGIN([write_mongodb], [$with_libmongoc],  [MongoDB output plugin])
5322 AC_PLUGIN([write_redis], [$with_libcredis],    [Redis output plugin])
5323 AC_PLUGIN([write_riemann], [$have_protoc_c],   [Riemann output plugin])
5324 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
5325 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
5326
5327 dnl Default configuration file
5328 # Load either syslog or logfile
5329 LOAD_PLUGIN_SYSLOG=""
5330 LOAD_PLUGIN_LOGFILE=""
5331
5332 AC_MSG_CHECKING([which default log plugin to load])
5333 default_log_plugin="none"
5334 if test "x$enable_syslog" = "xyes"
5335 then
5336         default_log_plugin="syslog"
5337 else
5338         LOAD_PLUGIN_SYSLOG="##"
5339 fi
5340
5341 if test "x$enable_logfile" = "xyes"
5342 then
5343         if test "x$default_log_plugin" = "xnone"
5344         then
5345                 default_log_plugin="logfile"
5346         else
5347                 LOAD_PLUGIN_LOGFILE="#"
5348         fi
5349 else
5350         LOAD_PLUGIN_LOGFILE="##"
5351 fi
5352 AC_MSG_RESULT([$default_log_plugin])
5353
5354 AC_SUBST(LOAD_PLUGIN_SYSLOG)
5355 AC_SUBST(LOAD_PLUGIN_LOGFILE)
5356
5357 DEFAULT_LOG_LEVEL="info"
5358 if test "x$enable_debug" = "xyes"
5359 then
5360         DEFAULT_LOG_LEVEL="debug"
5361 fi
5362 AC_SUBST(DEFAULT_LOG_LEVEL)
5363
5364 # Load only one of rrdtool, network, csv in the default config.
5365 LOAD_PLUGIN_RRDTOOL=""
5366 LOAD_PLUGIN_NETWORK=""
5367 LOAD_PLUGIN_CSV=""
5368
5369 AC_MSG_CHECKING([which default write plugin to load])
5370 default_write_plugin="none"
5371 if test "x$enable_rrdtool" = "xyes"
5372 then
5373         default_write_plugin="rrdtool"
5374 else
5375         LOAD_PLUGIN_RRDTOOL="##"
5376 fi
5377
5378 if test "x$enable_network" = "xyes"
5379 then
5380         if test "x$default_write_plugin" = "xnone"
5381         then
5382                 default_write_plugin="network"
5383         else
5384                 LOAD_PLUGIN_NETWORK="#"
5385         fi
5386 else
5387         LOAD_PLUGIN_NETWORK="##"
5388 fi
5389
5390 if test "x$enable_csv" = "xyes"
5391 then
5392         if test "x$default_write_plugin" = "xnone"
5393         then
5394                 default_write_plugin="csv"
5395         else
5396                 LOAD_PLUGIN_CSV="#"
5397         fi
5398 else
5399         LOAD_PLUGIN_CSV="##"
5400 fi
5401 AC_MSG_RESULT([$default_write_plugin])
5402
5403 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5404 AC_SUBST(LOAD_PLUGIN_NETWORK)
5405 AC_SUBST(LOAD_PLUGIN_CSV)
5406
5407 dnl ip_vs.h
5408 if test "x$ac_system" = "xLinux" \
5409         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
5410 then
5411         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5412 fi
5413
5414 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5415 then
5416         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5417 fi
5418
5419 dnl Perl bindings
5420 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
5421 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5422 [
5423         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5424         then
5425                 PERL_BINDINGS_OPTIONS="$withval"
5426                 with_perl_bindings="yes"
5427         else
5428                 with_perl_bindings="$withval"
5429         fi
5430 ],
5431 [
5432         if test -n "$perl_interpreter"
5433         then
5434                 with_perl_bindings="yes"
5435         else
5436                 with_perl_bindings="no (no perl interpreter found)"
5437         fi
5438 ])
5439 if test "x$with_perl_bindings" = "xyes"
5440 then
5441         PERL_BINDINGS="perl"
5442 else
5443         PERL_BINDINGS=""
5444 fi
5445 AC_SUBST(PERL_BINDINGS)
5446 AC_SUBST(PERL_BINDINGS_OPTIONS)
5447
5448 dnl libcollectdclient
5449 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5450 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5451 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5452
5453 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5454
5455 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5456
5457 AC_SUBST(LCC_VERSION_MAJOR)
5458 AC_SUBST(LCC_VERSION_MINOR)
5459 AC_SUBST(LCC_VERSION_PATCH)
5460 AC_SUBST(LCC_VERSION_EXTRA)
5461 AC_SUBST(LCC_VERSION_STRING)
5462
5463 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
5464
5465 AC_CONFIG_FILES([Makefile src/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile])
5466 AC_OUTPUT
5467
5468 if test "x$with_librrd" = "xyes" \
5469         && test "x$librrd_threadsafe" != "xyes"
5470 then
5471         with_librrd="yes (warning: librrd is not thread-safe)"
5472 fi
5473
5474 if test "x$with_libperl" = "xyes"
5475 then
5476         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
5477 else
5478         enable_perl="no (needs libperl)"
5479 fi
5480
5481 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5482 then
5483         enable_perl="no (libperl doesn't support ithreads)"
5484 fi
5485
5486 if test "x$with_perl_bindings" = "xyes" \
5487         && test "x$PERL_BINDINGS_OPTIONS" != "x"
5488 then
5489         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5490 fi
5491
5492 cat <<EOF;
5493
5494 Configuration:
5495   Libraries:
5496     intel mic . . . . . . $with_mic
5497     libaquaero5 . . . . . $with_libaquaero5
5498     libcredis . . . . . . $with_libcredis
5499     libcurl . . . . . . . $with_libcurl
5500     libdbi  . . . . . . . $with_libdbi
5501     libesmtp  . . . . . . $with_libesmtp
5502     libganglia  . . . . . $with_libganglia
5503     libgcrypt . . . . . . $with_libgcrypt
5504     libhal  . . . . . . . $with_libhal
5505     libiokit  . . . . . . $with_libiokit
5506     libiptc . . . . . . . $with_libiptc
5507     libjvm  . . . . . . . $with_java
5508     libkstat  . . . . . . $with_kstat
5509     libkvm  . . . . . . . $with_libkvm
5510     liblvm2app  . . . . . $with_liblvm2app
5511     libmemcached  . . . . $with_libmemcached
5512     libmnl  . . . . . . . $with_libmnl
5513     libmodbus . . . . . . $with_libmodbus
5514     libmongoc . . . . . . $with_libmongoc
5515     libmysql  . . . . . . $with_libmysql
5516     libnetapp . . . . . . $with_libnetapp
5517     libnetsnmp  . . . . . $with_libnetsnmp
5518     libnotify . . . . . . $with_libnotify
5519     liboconfig  . . . . . $with_liboconfig
5520     libopenipmi . . . . . $with_libopenipmipthread
5521     liboping  . . . . . . $with_liboping
5522     libowcapi . . . . . . $with_libowcapi
5523     libpcap . . . . . . . $with_libpcap
5524     libperfstat . . . . . $with_perfstat
5525     libperl . . . . . . . $with_libperl
5526     libpq . . . . . . . . $with_libpq
5527     libpthread  . . . . . $with_libpthread
5528     librabbitmq . . . . . $with_librabbitmq
5529     librouteros . . . . . $with_librouteros
5530     librrd  . . . . . . . $with_librrd
5531     libsensors  . . . . . $with_libsensors
5532     libsigrok   . . . . . $with_libsigrok
5533     libstatgrab . . . . . $with_libstatgrab
5534     libtokyotyrant  . . . $with_libtokyotyrant
5535     libupsclient  . . . . $with_libupsclient
5536     libvarnish  . . . . . $with_libvarnish
5537     libvirt . . . . . . . $with_libvirt
5538     libxml2 . . . . . . . $with_libxml2
5539     libxmms . . . . . . . $with_libxmms
5540     libyajl . . . . . . . $with_libyajl
5541     oracle  . . . . . . . $with_oracle
5542     protobuf-c  . . . . . $have_protoc_c
5543     python  . . . . . . . $with_python
5544
5545   Features:
5546     daemon mode . . . . . $enable_daemon
5547     debug . . . . . . . . $enable_debug
5548
5549   Bindings:
5550     perl  . . . . . . . . $with_perl_bindings
5551
5552   Modules:
5553     aggregation . . . . . $enable_aggregation
5554     amqp    . . . . . . . $enable_amqp
5555     apache  . . . . . . . $enable_apache
5556     apcups  . . . . . . . $enable_apcups
5557     aquaero . . . . . . . $enable_aquaero
5558     apple_sensors . . . . $enable_apple_sensors
5559     ascent  . . . . . . . $enable_ascent
5560     battery . . . . . . . $enable_battery
5561     bind  . . . . . . . . $enable_bind
5562     conntrack . . . . . . $enable_conntrack
5563     contextswitch . . . . $enable_contextswitch
5564     cgroups . . . . . . . $enable_cgroups
5565     cpu . . . . . . . . . $enable_cpu
5566     cpufreq . . . . . . . $enable_cpufreq
5567     csv . . . . . . . . . $enable_csv
5568     curl  . . . . . . . . $enable_curl
5569     curl_json . . . . . . $enable_curl_json
5570     curl_xml  . . . . . . $enable_curl_xml
5571     dbi . . . . . . . . . $enable_dbi
5572     df  . . . . . . . . . $enable_df
5573     disk  . . . . . . . . $enable_disk
5574     dns . . . . . . . . . $enable_dns
5575     email . . . . . . . . $enable_email
5576     entropy . . . . . . . $enable_entropy
5577     ethstat . . . . . . . $enable_ethstat
5578     exec  . . . . . . . . $enable_exec
5579     filecount . . . . . . $enable_filecount
5580     fscache . . . . . . . $enable_fscache
5581     gmond . . . . . . . . $enable_gmond
5582     hddtemp . . . . . . . $enable_hddtemp
5583     interface . . . . . . $enable_interface
5584     ipmi  . . . . . . . . $enable_ipmi
5585     iptables  . . . . . . $enable_iptables
5586     ipvs  . . . . . . . . $enable_ipvs
5587     irq . . . . . . . . . $enable_irq
5588     java  . . . . . . . . $enable_java
5589     libvirt . . . . . . . $enable_libvirt
5590     load  . . . . . . . . $enable_load
5591     logfile . . . . . . . $enable_logfile
5592     lpar  . . . . . . . . $enable_lpar
5593     lvm . . . . . . . . . $enable_lvm
5594     madwifi . . . . . . . $enable_madwifi
5595     match_empty_counter . $enable_match_empty_counter
5596     match_hashed  . . . . $enable_match_hashed
5597     match_regex . . . . . $enable_match_regex
5598     match_timediff  . . . $enable_match_timediff
5599     match_value . . . . . $enable_match_value
5600     mbmon . . . . . . . . $enable_mbmon
5601     md  . . . . . . . . . $enable_md
5602     memcachec . . . . . . $enable_memcachec
5603     memcached . . . . . . $enable_memcached
5604     memory  . . . . . . . $enable_memory
5605     mic . . . . . . . . . $enable_mic
5606     modbus  . . . . . . . $enable_modbus
5607     multimeter  . . . . . $enable_multimeter
5608     mysql . . . . . . . . $enable_mysql
5609     netapp  . . . . . . . $enable_netapp
5610     netlink . . . . . . . $enable_netlink
5611     network . . . . . . . $enable_network
5612     nfs . . . . . . . . . $enable_nfs
5613     nginx . . . . . . . . $enable_nginx
5614     notify_desktop  . . . $enable_notify_desktop
5615     notify_email  . . . . $enable_notify_email
5616     ntpd  . . . . . . . . $enable_ntpd
5617     numa  . . . . . . . . $enable_numa
5618     nut . . . . . . . . . $enable_nut
5619     olsrd . . . . . . . . $enable_olsrd
5620     onewire . . . . . . . $enable_onewire
5621     openvpn . . . . . . . $enable_openvpn
5622     oracle  . . . . . . . $enable_oracle
5623     perl  . . . . . . . . $enable_perl
5624     pf  . . . . . . . . . $enable_pf
5625     pinba . . . . . . . . $enable_pinba
5626     ping  . . . . . . . . $enable_ping
5627     postgresql  . . . . . $enable_postgresql
5628     powerdns  . . . . . . $enable_powerdns
5629     processes . . . . . . $enable_processes
5630     protocols . . . . . . $enable_protocols
5631     python  . . . . . . . $enable_python
5632     redis . . . . . . . . $enable_redis
5633     routeros  . . . . . . $enable_routeros
5634     rrdcached . . . . . . $enable_rrdcached
5635     rrdtool . . . . . . . $enable_rrdtool
5636     sensors . . . . . . . $enable_sensors
5637     serial  . . . . . . . $enable_serial
5638     sigrok  . . . . . . . $enable_sigrok
5639     snmp  . . . . . . . . $enable_snmp
5640     statsd  . . . . . . . $enable_statsd
5641     swap  . . . . . . . . $enable_swap
5642     syslog  . . . . . . . $enable_syslog
5643     table . . . . . . . . $enable_table
5644     tail  . . . . . . . . $enable_tail
5645     tail_csv  . . . . . . $enable_tail_csv
5646     tape  . . . . . . . . $enable_tape
5647     target_notification . $enable_target_notification
5648     target_replace  . . . $enable_target_replace
5649     target_scale  . . . . $enable_target_scale
5650     target_set  . . . . . $enable_target_set
5651     target_v5upgrade  . . $enable_target_v5upgrade
5652     tcpconns  . . . . . . $enable_tcpconns
5653     teamspeak2  . . . . . $enable_teamspeak2
5654     ted . . . . . . . . . $enable_ted
5655     thermal . . . . . . . $enable_thermal
5656     threshold . . . . . . $enable_threshold
5657     tokyotyrant . . . . . $enable_tokyotyrant
5658     unixsock  . . . . . . $enable_unixsock
5659     uptime  . . . . . . . $enable_uptime
5660     users . . . . . . . . $enable_users
5661     uuid  . . . . . . . . $enable_uuid
5662     varnish . . . . . . . $enable_varnish
5663     vmem  . . . . . . . . $enable_vmem
5664     vserver . . . . . . . $enable_vserver
5665     wireless  . . . . . . $enable_wireless
5666     write_graphite  . . . $enable_write_graphite
5667     write_http  . . . . . $enable_write_http
5668     write_mongodb . . . . $enable_write_mongodb
5669     write_redis . . . . . $enable_write_redis
5670     write_riemann . . . . $enable_write_riemann
5671     xmms  . . . . . . . . $enable_xmms
5672     zfs_arc . . . . . . . $enable_zfs_arc
5673
5674 EOF
5675
5676 if test "x$dependency_error" = "xyes"; then
5677         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
5678 fi
5679
5680 if test "x$dependency_warning" = "xyes"; then
5681         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
5682 fi
5683
5684 # vim: set fdm=marker :