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