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