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