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