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