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