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