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