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