Merge branch 'collectd-5.5'
[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 wireless module
481 have_linux_wireless_h="no"
482 if test "x$ac_system" = "xLinux"
483 then
484   AC_CHECK_HEADERS(linux/wireless.h,
485                    [have_linux_wireless_h="yes"],
486                    [have_linux_wireless_h="no"],
487 [
488 #include <dirent.h>
489 #include <sys/ioctl.h>
490 #include <sys/socket.h>
491 ])
492 fi
493
494 # For the swap module
495 have_sys_swap_h="yes"
496 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
497 [
498 #undef _FILE_OFFSET_BITS
499 #undef _LARGEFILE64_SOURCE
500 #if HAVE_SYS_TYPES_H
501 #  include <sys/types.h>
502 #endif
503 #if HAVE_SYS_PARAM_H
504 # include <sys/param.h>
505 #endif
506 ])
507
508 # For load module
509 # For the processes plugin
510 # For users module
511 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
512
513 # For interface plugin
514 AC_CHECK_HEADERS(ifaddrs.h)
515 AC_CHECK_HEADERS(net/if.h, [], [],
516 [
517 #if HAVE_SYS_TYPES_H
518 #  include <sys/types.h>
519 #endif
520 #if HAVE_SYS_SOCKET_H
521 #  include <sys/socket.h>
522 #endif
523 ])
524 AC_CHECK_HEADERS(linux/if.h, [], [],
525 [
526 #if HAVE_SYS_TYPES_H
527 #  include <sys/types.h>
528 #endif
529 #if HAVE_SYS_SOCKET_H
530 #  include <sys/socket.h>
531 #endif
532 ])
533 AC_CHECK_HEADERS(linux/inet_diag.h, [], [],
534 [
535 #if HAVE_SYS_TYPES_H
536 #  include <sys/types.h>
537 #endif
538 #if HAVE_SYS_SOCKET_H
539 #  include <sys/socket.h>
540 #endif
541 #if HAVE_LINUX_INET_DIAG_H
542 # include <linux/inet_diag.h>
543 #endif
544 ])
545 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
546 [
547 #if HAVE_SYS_TYPES_H
548 #  include <sys/types.h>
549 #endif
550 #if HAVE_SYS_SOCKET_H
551 #  include <sys/socket.h>
552 #endif
553 #if HAVE_LINUX_IF_H
554 # include <linux/if.h>
555 #endif
556 ])
557
558 # For ethstat module
559 AC_CHECK_HEADERS(linux/sockios.h,
560     [have_linux_sockios_h="yes"],
561     [have_linux_sockios_h="no"],
562     [
563 #if HAVE_SYS_IOCTL_H
564 # include <sys/ioctl.h>
565 #endif
566 #if HAVE_NET_IF_H
567 # include <net/if.h>
568 #endif
569     ])
570 AC_CHECK_HEADERS(linux/ethtool.h,
571     [have_linux_ethtool_h="yes"],
572     [have_linux_ethtool_h="no"],
573     [
574 #if HAVE_SYS_IOCTL_H
575 # include <sys/ioctl.h>
576 #endif
577 #if HAVE_NET_IF_H
578 # include <net/if.h>
579 #endif
580 #if HAVE_LINUX_SOCKIOS_H
581 # include <linux/sockios.h>
582 #endif
583     ])
584
585 # For ipvs module
586 have_linux_ip_vs_h="no"
587 have_net_ip_vs_h="no"
588 have_ip_vs_h="no"
589 ip_vs_h_needs_kernel_cflags="no"
590 if test "x$ac_system" = "xLinux"
591 then
592         AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
593         AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
594         AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
595
596         if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
597         then
598                 SAVE_CFLAGS="$CFLAGS"
599                 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
600
601                 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
602
603                 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
604                 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
605                 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
606
607                 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
608                 then
609                         ip_vs_h_needs_kernel_cflags="yes"
610                 fi
611
612                 CFLAGS="$SAVE_CFLAGS"
613         fi
614 fi
615 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
616
617 # For quota module
618 AC_CHECK_HEADERS(sys/ucred.h, [], [],
619 [
620 #if HAVE_SYS_TYPES_H
621 #  include <sys/types.h>
622 #endif
623 #if HAVE_SYS_PARAM_H
624 # include <sys/param.h>
625 #endif
626 ])
627
628 # For mount interface
629 AC_CHECK_HEADERS(sys/mount.h, [], [],
630 [
631 #if HAVE_SYS_TYPES_H
632 #  include <sys/types.h>
633 #endif
634 #if HAVE_SYS_PARAM_H
635 # include <sys/param.h>
636 #endif
637 ])
638
639 # For the email plugin
640 AC_CHECK_HEADERS(linux/un.h, [], [],
641 [
642 #if HAVE_SYS_SOCKET_H
643 #       include <sys/socket.h>
644 #endif
645 ])
646
647 AC_CHECK_HEADERS(pwd.h grp.h sys/un.h ctype.h limits.h 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 AC_CHECK_HEADERS([xfs/xqm.h], [], [],
650 [
651 #define _GNU_SOURCE
652 ])
653
654 # For the dns plugin
655 AC_CHECK_HEADERS(arpa/nameser.h)
656 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
657 [
658 #if HAVE_ARPA_NAMESER_H
659 # include <arpa/nameser.h>
660 #endif
661 ])
662
663 AC_CHECK_HEADERS(net/if_arp.h, [], [],
664 [#if HAVE_SYS_SOCKET_H
665 # include <sys/socket.h>
666 #endif
667 ])
668 AC_CHECK_HEADERS(net/ppp_defs.h)
669 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
670 [#if HAVE_NET_PPP_DEFS_H
671 # include <net/ppp_defs.h>
672 #endif
673 ])
674 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
675 [#if HAVE_STDINT_H
676 # include <stdint.h>
677 #endif
678 #if HAVE_SYS_TYPES_H
679 # include <sys/types.h>
680 #endif
681 #if HAVE_SYS_SOCKET_H
682 # include <sys/socket.h>
683 #endif
684 #if HAVE_NET_IF_H
685 # include <net/if.h>
686 #endif
687 #if HAVE_NETINET_IN_H
688 # include <netinet/in.h>
689 #endif
690 ])
691
692 have_net_pfvar_h="no"
693 AC_CHECK_HEADERS(net/pfvar.h,
694                [have_net_pfvar_h="yes"],
695                [have_net_pfvar_h="no"],
696 [
697 #if HAVE_SYS_IOCTL_H
698 # include <sys/ioctl.h>
699 #endif
700 #if HAVE_SYS_SOCKET_H
701 # include <sys/socket.h>
702 #endif
703 #if HAVE_NET_IF_H
704 # include <net/if.h>
705 #endif
706 #if HAVE_NETINET_IN_H
707 # include <netinet/in.h>
708 #endif
709 ])
710
711 # For the multimeter plugin
712 have_termios_h="no"
713 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
714
715 # For the turbostat plugin
716 have_asm_msrindex_h="no"
717 AC_CHECK_HEADERS(asm/msr-index.h, [have_asm_msrindex_h="yes"])
718
719 if test "x$have_asm_msrindex_h" = "xyes"
720 then
721   AC_CACHE_CHECK([whether asm/msr-index.h has MSR_PKG_C10_RESIDENCY],
722                  [c_cv_have_usable_asm_msrindex_h],
723                  AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
724 [[[
725 #include<asm/msr-index.h>
726 ]]],
727 [[[
728 int y = MSR_PKG_C10_RESIDENCY;
729 return(y);
730 ]]]
731   )],
732                  [c_cv_have_usable_asm_msrindex_h="yes"],
733                  [c_cv_have_usable_asm_msrindex_h="no"],
734                                   )
735                  )
736 fi
737
738 have_cpuid_h="no"
739 AC_CHECK_HEADERS(cpuid.h, [have_cpuid_h="yes"])
740
741 AC_CHECK_HEADERS(sys/capability.h)
742 #
743 # Checks for typedefs, structures, and compiler characteristics.
744 #
745 AC_C_CONST
746 AC_TYPE_PID_T
747 AC_TYPE_SIZE_T
748 AC_TYPE_UID_T
749 AC_HEADER_TIME
750
751 #
752 # Checks for library functions.
753 #
754 AC_PROG_GCC_TRADITIONAL
755 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)
756
757 AC_FUNC_STRERROR_R
758
759 SAVE_CFLAGS="$CFLAGS"
760 # Emulate behavior of src/Makefile.am
761 if test "x$GCC" = "xyes"
762 then
763         CFLAGS="$CFLAGS -Wall -Werror"
764 fi
765
766 AC_CACHE_CHECK([for strtok_r],
767   [c_cv_have_strtok_r_default],
768   AC_LINK_IFELSE(
769     [AC_LANG_PROGRAM(
770 [[[
771 #include <stdlib.h>
772 #include <stdio.h>
773 #include <string.h>
774 ]]],
775 [[[
776       char buffer[] = "foo,bar,baz";
777       char *token;
778       char *dummy;
779       char *saveptr;
780
781       dummy = buffer;
782       saveptr = NULL;
783       while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
784       {
785         dummy = NULL;
786         printf ("token = %s;\n", token);
787       }
788 ]]]
789     )],
790     [c_cv_have_strtok_r_default="yes"],
791     [c_cv_have_strtok_r_default="no"]
792   )
793 )
794
795 if test "x$c_cv_have_strtok_r_default" = "xno"
796 then
797   CFLAGS="$CFLAGS -D_REENTRANT=1"
798
799   AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
800     [c_cv_have_strtok_r_reentrant],
801     AC_LINK_IFELSE(
802       [AC_LANG_PROGRAM(
803 [[[
804 #include <stdlib.h>
805 #include <stdio.h>
806 #include <string.h>
807 ]]],
808 [[[
809         char buffer[] = "foo,bar,baz";
810         char *token;
811         char *dummy;
812         char *saveptr;
813
814         dummy = buffer;
815         saveptr = NULL;
816         while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
817         {
818           dummy = NULL;
819           printf ("token = %s;\n", token);
820         }
821 ]]]
822       )],
823       [c_cv_have_strtok_r_reentrant="yes"],
824       [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
825     )
826   )
827 fi
828
829 CFLAGS="$SAVE_CFLAGS"
830 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
831 then
832         CFLAGS="$CFLAGS -D_REENTRANT=1"
833 fi
834
835 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
836
837 socket_needs_socket="no"
838 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
839 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
840
841 clock_gettime_needs_rt="no"
842 clock_gettime_needs_posix4="no"
843 have_clock_gettime="no"
844 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
845 if test "x$have_clock_gettime" = "xno"
846 then
847         AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
848                                          have_clock_gettime="yes"])
849 fi
850 if test "x$have_clock_gettime" = "xno"
851 then
852         AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
853                                              have_clock_gettime="yes"])
854 fi
855 if test "x$have_clock_gettime" = "xyes"
856 then
857         AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
858 fi
859
860 nanosleep_needs_rt="no"
861 nanosleep_needs_posix4="no"
862 AC_CHECK_FUNCS(nanosleep,
863     [],
864     AC_CHECK_LIB(rt, nanosleep,
865         [nanosleep_needs_rt="yes"],
866         AC_CHECK_LIB(posix4, nanosleep,
867             [nanosleep_needs_posix4="yes"],
868             AC_MSG_ERROR(cannot find nanosleep))))
869
870 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
871 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
872
873 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
874 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
875 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
876 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
877 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
878 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
879 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
880 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
881 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
882 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
883 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
884 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
885
886 # Check for strptime {{{
887 if test "x$GCC" = "xyes"
888 then
889         SAVE_CFLAGS="$CFLAGS"
890         CFLAGS="$CFLAGS -Wall -Wextra -Werror"
891 fi
892
893 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
894 if test "x$have_strptime" = "xyes"
895 then
896         AC_CACHE_CHECK([whether strptime is exported by default],
897                        [c_cv_have_strptime_default],
898                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
899 [[[
900 #include <time.h>
901 ]]],
902 [[[
903  struct tm stm;
904  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
905 ]]]
906                        )],
907                        [c_cv_have_strptime_default="yes"],
908                        [c_cv_have_strptime_default="no"]))
909 fi
910 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
911 then
912         AC_CACHE_CHECK([whether strptime needs standards mode],
913                        [c_cv_have_strptime_standards],
914                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
915 [[[
916 #ifndef _ISOC99_SOURCE
917 # define _ISOC99_SOURCE 1
918 #endif
919 #ifndef _POSIX_C_SOURCE
920 # define _POSIX_C_SOURCE 200112L
921 #endif
922 #ifndef _XOPEN_SOURCE
923 # define _XOPEN_SOURCE 500
924 #endif
925 #include <time.h>
926 ]]],
927 [[[
928  struct tm stm;
929  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
930 ]]]
931                        )],
932                        [c_cv_have_strptime_standards="yes"],
933                        [c_cv_have_strptime_standards="no"]))
934
935         if test "x$c_cv_have_strptime_standards" = "xyes"
936         then
937                 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
938         else
939                 have_strptime="no"
940         fi
941 fi
942
943 if test "x$GCC" = "xyes"
944 then
945         CFLAGS="$SAVE_CFLAGS"
946 fi
947 # }}} Check for strptime
948
949 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
950 if test "x$have_swapctl" = "xyes"; then
951         AC_CACHE_CHECK([whether swapctl takes two arguments],
952                 [c_cv_have_swapctl_two_args],
953                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
954 [[[
955 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
956 #  undef _FILE_OFFSET_BITS
957 #  undef _LARGEFILE64_SOURCE
958 #endif
959 #include <sys/stat.h>
960 #include <sys/param.h>
961 #include <sys/swap.h>
962 #include <unistd.h>
963 ]]],
964 [[[
965 int num = swapctl(0, NULL);
966 ]]]
967                         )],
968                         [c_cv_have_swapctl_two_args="yes"],
969                         [c_cv_have_swapctl_two_args="no"]
970                 )
971         )
972         AC_CACHE_CHECK([whether swapctl takes three arguments],
973                 [c_cv_have_swapctl_three_args],
974                 AC_COMPILE_IFELSE(
975                         [AC_LANG_PROGRAM(
976 [[[
977 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
978 #  undef _FILE_OFFSET_BITS
979 #  undef _LARGEFILE64_SOURCE
980 #endif
981 #include <sys/stat.h>
982 #include <sys/param.h>
983 #include <sys/swap.h>
984 #include <unistd.h>
985 ]]],
986 [[[
987 int num = swapctl(0, NULL, 0);
988 ]]]
989                         )],
990                         [c_cv_have_swapctl_three_args="yes"],
991                         [c_cv_have_swapctl_three_args="no"]
992                 )
993         )
994 fi
995 # Check for different versions of `swapctl' here..
996 if test "x$have_swapctl" = "xyes"; then
997         if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
998                 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
999                           [Define if the function swapctl exists and takes two arguments.])
1000         fi
1001         if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
1002                 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
1003                           [Define if the function swapctl exists and takes three arguments.])
1004         fi
1005 fi
1006
1007 # Check for NAN
1008 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
1009 [
1010  if test "x$withval" = "xno"; then
1011          nan_type="none"
1012  else if test "x$withval" = "xyes"; then
1013          nan_type="zero"
1014  else
1015          nan_type="$withval"
1016  fi; fi
1017 ],
1018 [nan_type="none"])
1019 if test "x$nan_type" = "xnone"; then
1020   AC_CACHE_CHECK([whether NAN is defined by default],
1021     [c_cv_have_nan_default],
1022     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1023 [[[
1024 #include <stdlib.h>
1025 #include <math.h>
1026 static double foo = NAN;
1027 ]]],
1028 [[[
1029        if (isnan (foo))
1030         return 0;
1031        else
1032         return 1;
1033 ]]]
1034       )],
1035       [c_cv_have_nan_default="yes"],
1036       [c_cv_have_nan_default="no"]
1037     )
1038   )
1039   if test "x$c_cv_have_nan_default" = "xyes"
1040   then
1041     nan_type="default"
1042   fi
1043 fi
1044 if test "x$nan_type" = "xnone"; then
1045   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
1046     [c_cv_have_nan_isoc],
1047     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1048 [[[
1049 #include <stdlib.h>
1050 #define __USE_ISOC99 1
1051 #include <math.h>
1052 static double foo = NAN;
1053 ]]],
1054 [[[
1055        if (isnan (foo))
1056         return 0;
1057        else
1058         return 1;
1059 ]]]
1060       )],
1061       [c_cv_have_nan_isoc="yes"],
1062       [c_cv_have_nan_isoc="no"]
1063     )
1064   )
1065   if test "x$c_cv_have_nan_isoc" = "xyes"
1066   then
1067     nan_type="isoc99"
1068   fi
1069 fi
1070 if test "x$nan_type" = "xnone"; then
1071   SAVE_LDFLAGS=$LDFLAGS
1072   LDFLAGS="$LDFLAGS -lm"
1073   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1074     [c_cv_have_nan_zero],
1075     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1076 [[[
1077 #include <stdlib.h>
1078 #include <math.h>
1079 #ifdef NAN
1080 # undef NAN
1081 #endif
1082 #define NAN (0.0 / 0.0)
1083 #ifndef isnan
1084 # define isnan(f) ((f) != (f))
1085 #endif
1086 static double foo = NAN;
1087 ]]],
1088 [[[
1089        if (isnan (foo))
1090         return 0;
1091        else
1092         return 1;
1093 ]]]
1094       )],
1095       [c_cv_have_nan_zero="yes"],
1096       [c_cv_have_nan_zero="no"]
1097     )
1098   )
1099   LDFLAGS=$SAVE_LDFLAGS
1100   if test "x$c_cv_have_nan_zero" = "xyes"
1101   then
1102     nan_type="zero"
1103   fi
1104 fi
1105
1106 if test "x$nan_type" = "xdefault"; then
1107   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
1108     [Define if NAN is defined by default and can initialize static variables.])
1109 else if test "x$nan_type" = "xisoc99"; then
1110   AC_DEFINE(NAN_STATIC_ISOC, 1,
1111     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
1112 else if test "x$nan_type" = "xzero"; then
1113   AC_DEFINE(NAN_ZERO_ZERO, 1,
1114     [Define if NAN can be defined as (0.0 / 0.0)])
1115 else
1116   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1117 fi; fi; fi
1118
1119 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
1120 [
1121  if test "x$withval" = "xnothing"; then
1122         fp_layout_type="nothing"
1123  else if test "x$withval" = "xendianflip"; then
1124         fp_layout_type="endianflip"
1125  else if test "x$withval" = "xintswap"; then
1126         fp_layout_type="intswap"
1127  else
1128         AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1129 fi; fi; fi
1130 ],
1131 [fp_layout_type="unknown"])
1132
1133 if test "x$fp_layout_type" = "xunknown"; then
1134   AC_CACHE_CHECK([if doubles are stored in x86 representation],
1135     [c_cv_fp_layout_need_nothing],
1136     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1137 [[[
1138 #include <stdlib.h>
1139 #include <stdio.h>
1140 #include <string.h>
1141 #if HAVE_STDINT_H
1142 # include <stdint.h>
1143 #endif
1144 #if HAVE_INTTYPES_H
1145 # include <inttypes.h>
1146 #endif
1147 #if HAVE_STDBOOL_H
1148 # include <stdbool.h>
1149 #endif
1150 ]]],
1151 [[[
1152         uint64_t i0;
1153         uint64_t i1;
1154         uint8_t c[8];
1155         double d;
1156
1157         d = 8.642135e130;
1158         memcpy ((void *) &i0, (void *) &d, 8);
1159
1160         i1 = i0;
1161         memcpy ((void *) c, (void *) &i1, 8);
1162
1163         if ((c[0] == 0x2f) && (c[1] == 0x25)
1164                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1165                         && (c[4] == 0x43) && (c[5] == 0x2b)
1166                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1167                 return (0);
1168         else
1169                 return (1);
1170 ]]]
1171       )],
1172       [c_cv_fp_layout_need_nothing="yes"],
1173       [c_cv_fp_layout_need_nothing="no"]
1174     )
1175   )
1176   if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1177     fp_layout_type="nothing"
1178   fi
1179 fi
1180 if test "x$fp_layout_type" = "xunknown"; then
1181   AC_CACHE_CHECK([if endianflip converts to x86 representation],
1182     [c_cv_fp_layout_need_endianflip],
1183     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1184 [[[
1185 #include <stdlib.h>
1186 #include <stdio.h>
1187 #include <string.h>
1188 #if HAVE_STDINT_H
1189 # include <stdint.h>
1190 #endif
1191 #if HAVE_INTTYPES_H
1192 # include <inttypes.h>
1193 #endif
1194 #if HAVE_STDBOOL_H
1195 # include <stdbool.h>
1196 #endif
1197 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1198                        (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1199                        (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1200                        (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
1201                        (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
1202                        (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1203                        (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1204                        (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1205 ]]],
1206 [[[
1207         uint64_t i0;
1208         uint64_t i1;
1209         uint8_t c[8];
1210         double d;
1211
1212         d = 8.642135e130;
1213         memcpy ((void *) &i0, (void *) &d, 8);
1214
1215         i1 = endianflip (i0);
1216         memcpy ((void *) c, (void *) &i1, 8);
1217
1218         if ((c[0] == 0x2f) && (c[1] == 0x25)
1219                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1220                         && (c[4] == 0x43) && (c[5] == 0x2b)
1221                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1222                 return (0);
1223         else
1224                 return (1);
1225 ]]]
1226       )],
1227       [c_cv_fp_layout_need_endianflip="yes"],
1228       [c_cv_fp_layout_need_endianflip="no"]
1229     )
1230   )
1231   if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1232     fp_layout_type="endianflip"
1233   fi
1234 fi
1235 if test "x$fp_layout_type" = "xunknown"; then
1236   AC_CACHE_CHECK([if intswap converts to x86 representation],
1237     [c_cv_fp_layout_need_intswap],
1238     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1239 [[[
1240 #include <stdlib.h>
1241 #include <stdio.h>
1242 #include <string.h>
1243 #if HAVE_STDINT_H
1244 # include <stdint.h>
1245 #endif
1246 #if HAVE_INTTYPES_H
1247 # include <inttypes.h>
1248 #endif
1249 #if HAVE_STDBOOL_H
1250 # include <stdbool.h>
1251 #endif
1252 #define intswap(A)    ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1253                        (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1254 ]]],
1255 [[[
1256         uint64_t i0;
1257         uint64_t i1;
1258         uint8_t c[8];
1259         double d;
1260
1261         d = 8.642135e130;
1262         memcpy ((void *) &i0, (void *) &d, 8);
1263
1264         i1 = intswap (i0);
1265         memcpy ((void *) c, (void *) &i1, 8);
1266
1267         if ((c[0] == 0x2f) && (c[1] == 0x25)
1268                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1269                         && (c[4] == 0x43) && (c[5] == 0x2b)
1270                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1271                 return (0);
1272         else
1273                 return (1);
1274 ]]]
1275       )],
1276       [c_cv_fp_layout_need_intswap="yes"],
1277       [c_cv_fp_layout_need_intswap="no"]
1278     )
1279   )
1280   if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1281     fp_layout_type="intswap"
1282   fi
1283 fi
1284
1285 if test "x$fp_layout_type" = "xnothing"; then
1286   AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1287   [Define if doubles are stored in x86 representation.])
1288 else if test "x$fp_layout_type" = "xendianflip"; then
1289   AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1290   [Define if endianflip is needed to convert to x86 representation.])
1291 else if test "x$fp_layout_type" = "xintswap"; then
1292   AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1293   [Define if intswap is needed to convert to x86 representation.])
1294 else
1295   AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1296 fi; fi; fi
1297
1298 # --with-useragent {{{
1299 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1300 [
1301     if test "x$withval" != "xno" && test "x$withval" != "xyes"
1302     then
1303         AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1304     fi
1305 ])
1306
1307 # }}}
1308
1309 have_getfsstat="no"
1310 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1311 have_getvfsstat="no"
1312 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1313 have_listmntent="no"
1314 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1315 have_getmntent_r="no"
1316 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"])
1317
1318 have_getmntent="no"
1319 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1320 if test "x$have_getmntent" = "xno"; then
1321         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1322 fi
1323 if test "x$have_getmntent" = "xno"; then
1324         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1325 fi
1326 if test "x$have_getmntent" = "xno"; then
1327         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1328 fi
1329
1330 if test "x$have_getmntent" = "xc"; then
1331         AC_CACHE_CHECK([whether getmntent takes one argument],
1332                 [c_cv_have_one_getmntent],
1333                 AC_COMPILE_IFELSE(
1334                         [AC_LANG_PROGRAM(
1335 [[[
1336 #include "$srcdir/src/utils_mount.h"
1337 ]]],
1338 [[[
1339 FILE *fh;
1340 struct mntent *me;
1341 fh = setmntent ("/etc/mtab", "r");
1342 me = getmntent (fh);
1343 return(me->mnt_passno);
1344 ]]]
1345                         )],
1346                         [c_cv_have_one_getmntent="yes"],
1347                         [c_cv_have_one_getmntent="no"]
1348                 )
1349         )
1350         AC_CACHE_CHECK([whether getmntent takes two arguments],
1351                 [c_cv_have_two_getmntent],
1352                 AC_COMPILE_IFELSE(
1353                         [AC_LANG_PROGRAM(
1354 [[[
1355 #include "$srcdir/src/utils_mount.h"
1356 ]]],
1357 [[[
1358                                  FILE *fh;
1359                                  struct mnttab mt;
1360                                  int status;
1361                                  fh = fopen ("/etc/mnttab", "r");
1362                                  status = getmntent (fh, &mt);
1363                                  return(status);
1364 ]]]
1365                         )],
1366                         [c_cv_have_two_getmntent="yes"],
1367                         [c_cv_have_two_getmntent="no"]
1368                 )
1369         )
1370 fi
1371
1372 # Check for different versions of `getmntent' here..
1373
1374 if test "x$have_getmntent" = "xc"; then
1375         if test "x$c_cv_have_one_getmntent" = "xyes"; then
1376                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1377                           [Define if the function getmntent exists and takes one argument.])
1378         fi
1379         if test "x$c_cv_have_two_getmntent" = "xyes"; then
1380                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1381                           [Define if the function getmntent exists and takes two arguments.])
1382         fi
1383 fi
1384 if test "x$have_getmntent" = "xsun"; then
1385         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1386                   [Define if the function getmntent exists. It's the version from libsun.])
1387 fi
1388 if test "x$have_getmntent" = "xseq"; then
1389         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1390                   [Define if the function getmntent exists. It's the version from libseq.])
1391 fi
1392 if test "x$have_getmntent" = "xgen"; then
1393         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1394                   [Define if the function getmntent exists. It's the version from libgen.])
1395 fi
1396
1397 # Check for htonll
1398 AC_CACHE_CHECK([if have htonll defined],
1399                   [c_cv_have_htonll],
1400                   AC_LINK_IFELSE([AC_LANG_PROGRAM(
1401 [[[
1402 #include <sys/types.h>
1403 #include <netinet/in.h>
1404 #if HAVE_INTTYPES_H
1405 # include <inttypes.h>
1406 #endif
1407 ]]],
1408 [[[
1409           return htonll(0);
1410 ]]]
1411     )],
1412     [c_cv_have_htonll="yes"],
1413     [c_cv_have_htonll="no"]
1414   )
1415 )
1416 if test "x$c_cv_have_htonll" = "xyes"
1417 then
1418     AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1419 fi
1420
1421 # Check for structures
1422 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1423         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1424         [],
1425         [
1426         #include <sys/types.h>
1427         #include <sys/socket.h>
1428         #include <net/if.h>
1429         ])
1430 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1431         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1432         [],
1433         [
1434         #include <sys/types.h>
1435         #include <sys/socket.h>
1436         #include <linux/if.h>
1437         #include <linux/netdevice.h>
1438         ])
1439 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1440         [AC_DEFINE(HAVE_STRUCT_LINUX_INET_DIAG_REQ, 1, [Define if struct inet_diag_req exists and is usable.])],
1441         [],
1442         [
1443         #include <linux/inet_diag.h>
1444         ])
1445
1446
1447 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1448         [],
1449         [
1450         #include <netinet/in.h>
1451         #include <net/if.h>
1452         ])
1453
1454 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1455         [
1456                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1457                         [Define if struct kinfo_proc exists in the FreeBSD variant.])
1458                 have_struct_kinfo_proc_freebsd="yes"
1459         ],
1460         [
1461                 have_struct_kinfo_proc_freebsd="no"
1462         ],
1463         [
1464 #include <kvm.h>
1465 #include <sys/param.h>
1466 #include <sys/sysctl.h>
1467 #include <sys/user.h>
1468         ])
1469
1470 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1471         [
1472                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1473                         [Define if struct kinfo_proc exists in the OpenBSD variant.])
1474                 have_struct_kinfo_proc_openbsd="yes"
1475         ],
1476         [
1477                 have_struct_kinfo_proc_openbsd="no"
1478         ],
1479         [
1480 #include <sys/param.h>
1481 #include <sys/sysctl.h>
1482 #include <kvm.h>
1483         ])
1484
1485
1486 AC_CHECK_MEMBERS([struct kinfo_proc2.p_pid, struct kinfo_proc2.p_uru_maxrss],
1487         [
1488                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC2_NETBSD, 1,
1489                         [Define if struct kinfo_proc2 exists in the NetBSD variant.])
1490                 have_struct_kinfo_proc2_netbsd="yes"
1491         ],
1492         [
1493                 have_struct_kinfo_proc2_netbsd="no"
1494         ],
1495         [
1496 #include <sys/param.h>
1497 #include <sys/sysctl.h>
1498 #include <kvm.h>
1499         ])
1500
1501
1502
1503 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1504 [#define _BSD_SOURCE
1505 #define _DEFAULT_SOURCE
1506 #if HAVE_STDINT_H
1507 # include <stdint.h>
1508 #endif
1509 #if HAVE_SYS_TYPES_H
1510 # include <sys/types.h>
1511 #endif
1512 #if HAVE_NETINET_IN_SYSTM_H
1513 # include <netinet/in_systm.h>
1514 #endif
1515 #if HAVE_NETINET_IN_H
1516 # include <netinet/in.h>
1517 #endif
1518 #if HAVE_NETINET_IP_H
1519 # include <netinet/ip.h>
1520 #endif
1521 #if HAVE_NETINET_UDP_H
1522 # include <netinet/udp.h>
1523 #endif
1524 ])
1525 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1526 [#define _BSD_SOURCE
1527 #define _DEFAULT_SOURCE
1528 #if HAVE_STDINT_H
1529 # include <stdint.h>
1530 #endif
1531 #if HAVE_SYS_TYPES_H
1532 # include <sys/types.h>
1533 #endif
1534 #if HAVE_NETINET_IN_SYSTM_H
1535 # include <netinet/in_systm.h>
1536 #endif
1537 #if HAVE_NETINET_IN_H
1538 # include <netinet/in.h>
1539 #endif
1540 #if HAVE_NETINET_IP_H
1541 # include <netinet/ip.h>
1542 #endif
1543 #if HAVE_NETINET_UDP_H
1544 # include <netinet/udp.h>
1545 #endif
1546 ])
1547
1548 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1549         [],
1550         [],
1551         [
1552 #if HAVE_KSTAT_H
1553 # include <kstat.h>
1554 #endif
1555         ])
1556
1557 #
1558 # Checks for libraries begin here
1559 #
1560
1561 with_libresolv="yes"
1562 AC_CHECK_LIB(resolv, res_search,
1563 [
1564         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1565 ],
1566 [with_libresolv="no"])
1567 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1568
1569 dnl Check for HAL (hardware abstraction library)
1570 with_libhal="yes"
1571 AC_CHECK_LIB(hal,libhal_device_property_exists,
1572              [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1573              [with_libhal="no"])
1574 if test "x$with_libhal" = "xyes"; then
1575         if test "x$PKG_CONFIG" != "x"; then
1576                 BUILD_WITH_LIBHAL_CFLAGS="`$PKG_CONFIG --cflags hal`"
1577                 BUILD_WITH_LIBHAL_LIBS="`$PKG_CONFIG --libs hal`"
1578                 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1579                 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1580         fi
1581 fi
1582
1583 # --with-libpthread {{{
1584 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
1585 [       if test "x$withval" != "xno" \
1586                 && test "x$withval" != "xyes"
1587         then
1588                 LDFLAGS="$LDFLAGS -L$withval/lib"
1589                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1590                 with_libpthread="yes"
1591         else
1592                 if test "x$withval" = "xno"
1593                 then
1594                         with_libpthread="no (disabled)"
1595                 fi
1596         fi
1597 ], [with_libpthread="yes"])
1598
1599 AC_SUBST([PTHREAD_LIBS])
1600 if test "x$with_libpthread" = "xyes"
1601 then
1602         SAVE_LIBS="$LIBS"
1603         AC_CHECK_LIB(pthread, pthread_create, [], [with_libpthread="no (Symbol 'pthread_create' not found)"], [])
1604         PTHREAD_LIBS="$LIBS"
1605         LIBS="$SAVE_LIBS"
1606 fi
1607
1608 if test "x$with_libpthread" = "xyes"
1609 then
1610         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
1611 fi
1612 if test "x$with_libpthread" = "xyes"
1613 then
1614         collect_pthread=1
1615 else
1616         collect_pthread=0
1617 fi
1618 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
1619         [Wether or not to use pthread (POSIX threads) library])
1620 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
1621 # }}}
1622
1623 m4_divert_once([HELP_WITH], [
1624 collectd additional packages:])
1625
1626 if test "x$ac_system" = "xAIX"
1627 then
1628         with_perfstat="yes"
1629         with_procinfo="yes"
1630 else
1631         with_perfstat="no (AIX only)"
1632         with_procinfo="no (AIX only)"
1633 fi
1634
1635 if test "x$with_perfstat" = "xyes"
1636 then
1637         AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1638 #       AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1639 fi
1640 if test "x$with_perfstat" = "xyes"
1641 then
1642          AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1643          # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1644          AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1645          if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1646          then
1647                 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1648          fi
1649 fi
1650 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1651
1652 # Processes plugin under AIX.
1653 if test "x$with_procinfo" = "xyes"
1654 then
1655         AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1656 fi
1657 if test "x$with_procinfo" = "xyes"
1658 then
1659          AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1660 fi
1661
1662 if test "x$ac_system" = "xSolaris"
1663 then
1664         with_kstat="yes"
1665         with_devinfo="yes"
1666 else
1667         with_kstat="no (Solaris only)"
1668         with_devinfo="no (Solaris only)"
1669 fi
1670
1671 if test "x$with_kstat" = "xyes"
1672 then
1673         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1674 fi
1675 if test "x$with_kstat" = "xyes"
1676 then
1677         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1678         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1679 fi
1680 if test "x$with_kstat" = "xyes"
1681 then
1682         AC_DEFINE(HAVE_LIBKSTAT, 1,
1683                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1684 fi
1685 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1686 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1687
1688 with_libiokit="no"
1689 if test "x$ac_system" = "xDarwin"
1690 then
1691         with_libiokit="yes"
1692 else
1693         with_libiokit="no"
1694 fi
1695 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1696
1697 with_libkvm="no"
1698 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1699 if test "x$with_kvm_getprocs" = "xyes"
1700 then
1701         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1702                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1703         with_libkvm="yes"
1704 fi
1705 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1706
1707 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1708 if test "x$with_kvm_getswapinfo" = "xyes"
1709 then
1710         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1711                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1712         with_libkvm="yes"
1713 fi
1714 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1715
1716 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1717 if test "x$with_kvm_nlist" = "xyes"
1718 then
1719         AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1720         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1721                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1722         with_libkvm="yes"
1723 fi
1724 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1725
1726 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1727 if test "x$with_kvm_openfiles" = "xyes"
1728 then
1729         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1730                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1731         with_libkvm="yes"
1732 fi
1733 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1734
1735 # --with-libaquaero5 {{{
1736 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1737 [
1738  if test "x$withval" = "xyes"
1739  then
1740          with_libaquaero5="yes"
1741  else if test "x$withval" = "xno"
1742  then
1743          with_libaquaero5="no"
1744  else
1745          with_libaquaero5="yes"
1746          LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1747          LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1748  fi; fi
1749 ],
1750 [with_libaquaero5="yes"])
1751
1752 SAVE_CPPFLAGS="$CPPFLAGS"
1753 SAVE_LDFLAGS="$LDFLAGS"
1754
1755 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1756 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1757
1758 if test "x$with_libaquaero5" = "xyes"
1759 then
1760         if test "x$LIBAQUAERO5_CFLAGS" != "x"
1761         then
1762                 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1763         fi
1764         AC_CHECK_HEADERS(libaquaero5.h,
1765         [with_libaquaero5="yes"],
1766         [with_libaquaero5="no (libaquaero5.h not found)"])
1767 fi
1768 if test "x$with_libaquaero5" = "xyes"
1769 then
1770         if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1771         then
1772                 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1773         fi
1774         AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1775         [with_libaquaero5="yes"],
1776         [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1777 fi
1778
1779 CPPFLAGS="$SAVE_CPPFLAGS"
1780 LDFLAGS="$SAVE_LDFLAGS"
1781
1782 if test "x$with_libaquaero5" = "xyes"
1783 then
1784         BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1785         BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1786         AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1787         AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1788 fi
1789 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1790 # }}}
1791
1792 # --with-libhiredis {{{
1793 AC_ARG_WITH(libhiredis, [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@],
1794       [Path to libhiredis.])],
1795 [
1796  if test "x$withval" = "xyes"
1797  then
1798          with_libhiredis="yes"
1799  else if test "x$withval" = "xno"
1800  then
1801          with_libhiredis="no"
1802  else
1803          with_libhiredis="yes"
1804          LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
1805          LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
1806  fi; fi
1807 ],
1808 [with_libhiredis="yes"])
1809
1810 SAVE_CPPFLAGS="$CPPFLAGS"
1811 SAVE_LDFLAGS="$LDFLAGS"
1812
1813 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
1814 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
1815
1816 if test "x$with_libhiredis" = "xyes"
1817 then
1818         if test "x$LIBHIREDIS_CPPFLAGS" != "x"
1819         then
1820                 AC_MSG_NOTICE([libhiredis CPPFLAGS: $LIBHIREDIS_CPPFLAGS])
1821         fi
1822         AC_CHECK_HEADERS(hiredis/hiredis.h,
1823         [with_libhiredis="yes"],
1824         [with_libhiredis="no (hiredis.h not found)"])
1825 fi
1826 if test "x$with_libhiredis" = "xyes"
1827 then
1828         if test "x$LIBHIREDIS_LDFLAGS" != "x"
1829         then
1830                 AC_MSG_NOTICE([libhiredis LDFLAGS: $LIBHIREDIS_LDFLAGS])
1831         fi
1832         AC_CHECK_LIB(hiredis, redisCommand,
1833         [with_libhiredis="yes"],
1834         [with_libhiredis="no (symbol 'redisCommand' not found)"])
1835
1836 fi
1837
1838 CPPFLAGS="$SAVE_CPPFLAGS"
1839 LDFLAGS="$SAVE_LDFLAGS"
1840
1841 if test "x$with_libhiredis" = "xyes"
1842 then
1843         BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
1844         BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
1845         AC_SUBST(BUILD_WITH_LIBHIREDIS_CPPFLAGS)
1846         AC_SUBST(BUILD_WITH_LIBHIREDIS_LDFLAGS)
1847 fi
1848 AM_CONDITIONAL(BUILD_WITH_LIBHIREDIS, test "x$with_libhiredis" = "xyes")
1849 # }}}
1850
1851 # --with-libcurl {{{
1852 with_curl_config="curl-config"
1853 with_curl_cflags=""
1854 with_curl_libs=""
1855 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1856 [
1857         if test "x$withval" = "xno"
1858         then
1859                 with_libcurl="no"
1860         else if test "x$withval" = "xyes"
1861         then
1862                 with_libcurl="yes"
1863         else
1864                 if test -f "$withval" && test -x "$withval"
1865                 then
1866                         with_curl_config="$withval"
1867                         with_libcurl="yes"
1868                 else if test -x "$withval/bin/curl-config"
1869                 then
1870                         with_curl_config="$withval/bin/curl-config"
1871                         with_libcurl="yes"
1872                 fi; fi
1873                 with_libcurl="yes"
1874         fi; fi
1875 ],
1876 [
1877         with_libcurl="yes"
1878 ])
1879 if test "x$with_libcurl" = "xyes"
1880 then
1881         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1882         curl_config_status=$?
1883
1884         if test $curl_config_status -ne 0
1885         then
1886                 with_libcurl="no ($with_curl_config failed)"
1887         else
1888                 SAVE_CPPFLAGS="$CPPFLAGS"
1889                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1890
1891                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1892
1893                 CPPFLAGS="$SAVE_CPPFLAGS"
1894         fi
1895 fi
1896 if test "x$with_libcurl" = "xyes"
1897 then
1898         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1899         curl_config_status=$?
1900
1901         if test $curl_config_status -ne 0
1902         then
1903                 with_libcurl="no ($with_curl_config failed)"
1904         else
1905                 AC_CHECK_LIB(curl, curl_easy_init,
1906                  [with_libcurl="yes"],
1907                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1908                  [$with_curl_libs])
1909                 AC_CHECK_DECL(CURLOPT_USERNAME,
1910                  [have_curlopt_username="yes"],
1911                  [have_curlopt_username="no"],
1912                  [[#include <curl/curl.h>]])
1913                 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
1914                  [have_curlopt_timeout="yes"],
1915                  [have_curlopt_timeout="no"],
1916                  [[#include <curl/curl.h>]])
1917         fi
1918 fi
1919 if test "x$with_libcurl" = "xyes"
1920 then
1921         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1922         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1923         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1924         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1925
1926         if test "x$have_curlopt_username" = "xyes"
1927         then
1928                 AC_DEFINE(HAVE_CURLOPT_USERNAME, 1, [Define if libcurl supports CURLOPT_USERNAME option.])
1929         fi
1930
1931         if test "x$have_curlopt_timeout" = "xyes"
1932         then
1933                 AC_DEFINE(HAVE_CURLOPT_TIMEOUT_MS, 1, [Define if libcurl supports CURLOPT_TIMEOUT_MS option.])
1934         fi
1935 fi
1936 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1937 # }}}
1938
1939 # --with-libdbi {{{
1940 with_libdbi_cppflags=""
1941 with_libdbi_ldflags=""
1942 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1943 [
1944         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1945         then
1946                 with_libdbi_cppflags="-I$withval/include"
1947                 with_libdbi_ldflags="-L$withval/lib"
1948                 with_libdbi="yes"
1949         else
1950                 with_libdbi="$withval"
1951         fi
1952 ],
1953 [
1954         with_libdbi="yes"
1955 ])
1956 if test "x$with_libdbi" = "xyes"
1957 then
1958         SAVE_CPPFLAGS="$CPPFLAGS"
1959         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1960
1961         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1962
1963         CPPFLAGS="$SAVE_CPPFLAGS"
1964 fi
1965 if test "x$with_libdbi" = "xyes"
1966 then
1967         SAVE_CPPFLAGS="$CPPFLAGS"
1968         SAVE_LDFLAGS="$LDFLAGS"
1969         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1970         LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1971
1972         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1973
1974         CPPFLAGS="$SAVE_CPPFLAGS"
1975         LDFLAGS="$SAVE_LDFLAGS"
1976 fi
1977 if test "x$with_libdbi" = "xyes"
1978 then
1979         BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1980         BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1981         BUILD_WITH_LIBDBI_LIBS="-ldbi"
1982         AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1983         AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1984         AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1985 fi
1986 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1987 # }}}
1988
1989 # --with-libesmtp {{{
1990 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1991 [
1992         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1993         then
1994                 LDFLAGS="$LDFLAGS -L$withval/lib"
1995                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1996                 with_libesmtp="yes"
1997         else
1998                 with_libesmtp="$withval"
1999         fi
2000 ],
2001 [
2002         with_libesmtp="yes"
2003 ])
2004 if test "x$with_libesmtp" = "xyes"
2005 then
2006         AC_CHECK_LIB(esmtp, smtp_create_session,
2007         [
2008                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
2009         ], [with_libesmtp="no (libesmtp not found)"])
2010 fi
2011 if test "x$with_libesmtp" = "xyes"
2012 then
2013         AC_CHECK_HEADERS(libesmtp.h,
2014         [
2015                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
2016         ], [with_libesmtp="no (libesmtp.h not found)"])
2017 fi
2018 if test "x$with_libesmtp" = "xyes"
2019 then
2020         collect_libesmtp=1
2021 else
2022         collect_libesmtp=0
2023 fi
2024 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
2025         [Wether or not to use the esmtp library])
2026 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
2027 # }}}
2028
2029 # --with-libganglia {{{
2030 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
2031 [
2032  if test -f "$withval" && test -x "$withval"
2033  then
2034          with_libganglia_config="$withval"
2035          with_libganglia="yes"
2036  else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
2037  then
2038          with_libganglia_config="$withval/bin/ganglia-config"
2039          with_libganglia="yes"
2040  else if test -d "$withval"
2041  then
2042          GANGLIA_CPPFLAGS="-I$withval/include"
2043          GANGLIA_LDFLAGS="-L$withval/lib"
2044          with_libganglia="yes"
2045  else
2046          with_libganglia="$withval"
2047  fi; fi; fi
2048 ],
2049 [
2050  with_libganglia="yes"
2051 ])
2052
2053 if test "x$with_libganglia" = "xyes"
2054 then
2055         if test "x$with_libganglia_config" != "x"
2056         then
2057                 if test "x$GANGLIA_CPPFLAGS" = "x"
2058                 then
2059                         GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
2060                 fi
2061
2062                 if test "x$GANGLIA_LDFLAGS" = "x"
2063                 then
2064                         GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
2065                 fi
2066
2067                 if test "x$GANGLIA_LIBS" = "x"
2068                 then
2069                         GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
2070                 fi
2071         else
2072                 GANGLIA_LIBS="-lganglia"
2073         fi
2074 fi
2075
2076 SAVE_CPPFLAGS="$CPPFLAGS"
2077 SAVE_LDFLAGS="$LDFLAGS"
2078 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
2079 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
2080
2081 if test "x$with_libganglia" = "xyes"
2082 then
2083         AC_CHECK_HEADERS(gm_protocol.h,
2084         [
2085                 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
2086                           [Define to 1 if you have the <gm_protocol.h> header file.])
2087         ], [with_libganglia="no (gm_protocol.h not found)"])
2088 fi
2089
2090 if test "x$with_libganglia" = "xyes"
2091 then
2092         AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
2093         [
2094                 AC_DEFINE(HAVE_LIBGANGLIA, 1,
2095                           [Define to 1 if you have the ganglia library (-lganglia).])
2096         ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
2097 fi
2098
2099 CPPFLAGS="$SAVE_CPPFLAGS"
2100 LDFLAGS="$SAVE_LDFLAGS"
2101
2102 AC_SUBST(GANGLIA_CPPFLAGS)
2103 AC_SUBST(GANGLIA_LDFLAGS)
2104 AC_SUBST(GANGLIA_LIBS)
2105 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
2106 # }}}
2107
2108 # --with-libgcrypt {{{
2109 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
2110 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2111 GCRYPT_LIBS="$GCRYPT_LIBS"
2112 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2113 [
2114  if test -f "$withval" && test -x "$withval"
2115  then
2116          with_libgcrypt_config="$withval"
2117          with_libgcrypt="yes"
2118  else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
2119  then
2120          with_libgcrypt_config="$withval/bin/gcrypt-config"
2121          with_libgcrypt="yes"
2122  else if test -d "$withval"
2123  then
2124          GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2125          GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2126          with_libgcrypt="yes"
2127  else
2128          with_libgcrypt_config="gcrypt-config"
2129          with_libgcrypt="$withval"
2130  fi; fi; fi
2131 ],
2132 [
2133  with_libgcrypt_config="libgcrypt-config"
2134  with_libgcrypt="yes"
2135 ])
2136
2137 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
2138 then
2139         if test "x$GCRYPT_CPPFLAGS" = "x"
2140         then
2141                 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2142         fi
2143
2144         if test "x$GCRYPT_LIBS" = "x"
2145         then
2146                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2147         fi
2148 fi
2149
2150 SAVE_CPPFLAGS="$CPPFLAGS"
2151 SAVE_LDFLAGS="$LDFLAGS"
2152 SAVE_LIBS="$LIBS"
2153 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2154 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2155 LIBS="$LIBS $GCRYPT_LIBS"
2156
2157 if test "x$with_libgcrypt" = "xyes"
2158 then
2159         if test "x$GCRYPT_CPPFLAGS" != "x"
2160         then
2161                 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
2162         fi
2163         AC_CHECK_HEADERS(gcrypt.h,
2164                 [with_libgcrypt="yes"],
2165                 [with_libgcrypt="no (gcrypt.h not found)"])
2166 fi
2167
2168 if test "x$with_libgcrypt" = "xyes"
2169 then
2170         AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2171                 [with_libgcrypt="yes"],
2172                 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
2173 fi
2174
2175 CPPFLAGS="$SAVE_CPPFLAGS"
2176 LDFLAGS="$SAVE_LDFLAGS"
2177 LIBS="$SAVE_LIBS"
2178
2179 if test "x$with_libgcrypt" = "xyes"
2180 then
2181         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
2182 fi
2183
2184 AC_SUBST(GCRYPT_CPPFLAGS)
2185 AC_SUBST(GCRYPT_LDFLAGS)
2186 AC_SUBST(GCRYPT_LIBS)
2187 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
2188 # }}}
2189
2190 # --with-libiptc {{{
2191 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2192 [
2193         if test "x$withval" = "xyes"
2194         then
2195                 with_libiptc="pkgconfig"
2196         else if test "x$withval" = "xno"
2197         then
2198                 with_libiptc="no"
2199         else
2200                 with_libiptc="yes"
2201                 with_libiptc_cflags="-I$withval/include"
2202                 with_libiptc_libs="-L$withval/lib"
2203         fi; fi
2204 ],
2205 [
2206         if test "x$ac_system" = "xLinux"
2207         then
2208                 with_libiptc="pkgconfig"
2209         else
2210                 with_libiptc="no (Linux only)"
2211         fi
2212 ])
2213
2214 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
2215 then
2216         with_libiptc="no (Don't have pkg-config)"
2217 fi
2218
2219 if test "x$with_libiptc" = "xpkgconfig"
2220 then
2221         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2222         if test $? -ne 0
2223         then
2224                 with_libiptc="no (pkg-config doesn't know libiptc)"
2225         fi
2226 fi
2227 if test "x$with_libiptc" = "xpkgconfig"
2228 then
2229         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2230         if test $? -ne 0
2231         then
2232                 with_libiptc="no ($PKG_CONFIG failed)"
2233         fi
2234         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2235         if test $? -ne 0
2236         then
2237                 with_libiptc="no ($PKG_CONFIG failed)"
2238         fi
2239 fi
2240
2241 SAVE_CPPFLAGS="$CPPFLAGS"
2242 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2243
2244 # check whether the header file for libiptc is available.
2245 if test "x$with_libiptc" = "xpkgconfig"
2246 then
2247         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2248                         [with_libiptc="no (header file missing)"])
2249 fi
2250 # If the header file is available, check for the required type declaractions.
2251 # They may be missing in old versions of libiptc. In that case, they will be
2252 # declared in the iptables plugin.
2253 if test "x$with_libiptc" = "xpkgconfig"
2254 then
2255         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2256 fi
2257 # Check for the iptc_init symbol in the library.
2258 # This could be in iptc or ip4tc
2259 if test "x$with_libiptc" = "xpkgconfig"
2260 then
2261         SAVE_LIBS="$LIBS"
2262         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2263                         [with_libiptc="pkgconfig"],
2264                         [with_libiptc="no"],
2265                         [$with_libiptc_libs])
2266         LIBS="$SAVE_LIBS"
2267 fi
2268 if test "x$with_libiptc" = "xpkgconfig"
2269 then
2270         with_libiptc="yes"
2271 fi
2272
2273 CPPFLAGS="$SAVE_CPPFLAGS"
2274
2275 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2276 if test "x$with_libiptc" = "xyes"
2277 then
2278         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2279         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2280         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2281         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2282 fi
2283 # }}}
2284
2285 # --with-java {{{
2286 with_java_home="$JAVA_HOME"
2287 if test "x$with_java_home" = "x"
2288 then
2289         with_java_home="/usr/lib/jvm"
2290 fi
2291 JAVAC="$JAVAC"
2292 JAR="$JAR"
2293 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2294 [
2295         if test "x$withval" = "xno"
2296         then
2297                 with_java="no"
2298         else if test "x$withval" = "xyes"
2299         then
2300                 with_java="yes"
2301         else
2302                 with_java_home="$withval"
2303                 with_java="yes"
2304         fi; fi
2305 ],
2306 [with_java="yes"])
2307 if test "x$with_java" = "xyes"
2308 then
2309         if test -d "$with_java_home"
2310         then
2311                 AC_MSG_CHECKING([for jni.h])
2312                 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2313                 if test "x$TMPVAR" != "x"
2314                 then
2315                         AC_MSG_RESULT([found in $TMPVAR])
2316                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2317                 else
2318                         AC_MSG_RESULT([not found])
2319                 fi
2320
2321                 AC_MSG_CHECKING([for jni_md.h])
2322                 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2323                 if test "x$TMPVAR" != "x"
2324                 then
2325                         AC_MSG_RESULT([found in $TMPVAR])
2326                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2327                 else
2328                         AC_MSG_RESULT([not found])
2329                 fi
2330
2331                 AC_MSG_CHECKING([for libjvm.so])
2332                 TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2333                 if test "x$TMPVAR" != "x"
2334                 then
2335                         AC_MSG_RESULT([found in $TMPVAR])
2336                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2337                 else
2338                         AC_MSG_RESULT([not found])
2339                 fi
2340
2341                 if test "x$JAVAC" = "x"
2342                 then
2343                         AC_MSG_CHECKING([for javac])
2344                         TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2345                         if test "x$TMPVAR" != "x"
2346                         then
2347                                 JAVAC="$TMPVAR"
2348                                 AC_MSG_RESULT([$JAVAC])
2349                         else
2350                                 AC_MSG_RESULT([not found])
2351                         fi
2352                 fi
2353                 if test "x$JAR" = "x"
2354                 then
2355                         AC_MSG_CHECKING([for jar])
2356                         TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2357                         if test "x$TMPVAR" != "x"
2358                         then
2359                                 JAR="$TMPVAR"
2360                                 AC_MSG_RESULT([$JAR])
2361                         else
2362                                 AC_MSG_RESULT([not found])
2363                         fi
2364                 fi
2365         else if test "x$with_java_home" != "x"
2366         then
2367                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2368         fi; fi
2369 fi
2370
2371 if test "x$JAVA_CPPFLAGS" != "x"
2372 then
2373         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2374 fi
2375 if test "x$JAVA_CFLAGS" != "x"
2376 then
2377         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2378 fi
2379 if test "x$JAVA_LDFLAGS" != "x"
2380 then
2381         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2382 fi
2383 if test "x$JAVA_LIBS" != "x"
2384 then
2385         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2386 fi
2387 if test "x$JAVAC" = "x"
2388 then
2389         with_javac_path="$PATH"
2390         if test "x$with_java_home" != "x"
2391         then
2392                 with_javac_path="$with_java_home:with_javac_path"
2393                 if test -d "$with_java_home/bin"
2394                 then
2395                         with_javac_path="$with_java_home/bin:with_javac_path"
2396                 fi
2397         fi
2398
2399         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2400 fi
2401 if test "x$JAVAC" = "x"
2402 then
2403         with_java="no (javac not found)"
2404 fi
2405 if test "x$JAR" = "x"
2406 then
2407         with_jar_path="$PATH"
2408         if test "x$with_java_home" != "x"
2409         then
2410                 with_jar_path="$with_java_home:$with_jar_path"
2411                 if test -d "$with_java_home/bin"
2412                 then
2413                         with_jar_path="$with_java_home/bin:$with_jar_path"
2414                 fi
2415         fi
2416
2417         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2418 fi
2419 if test "x$JAR" = "x"
2420 then
2421         with_java="no (jar not found)"
2422 fi
2423
2424 SAVE_CPPFLAGS="$CPPFLAGS"
2425 SAVE_CFLAGS="$CFLAGS"
2426 SAVE_LDFLAGS="$LDFLAGS"
2427 SAVE_LIBS="$LIBS"
2428 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2429 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2430 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2431 LIBS="$LIBS $JAVA_LIBS"
2432
2433 if test "x$with_java" = "xyes"
2434 then
2435         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2436 fi
2437 if test "x$with_java" = "xyes"
2438 then
2439         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2440         [with_java="yes"],
2441         [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
2442         [$JAVA_LIBS $PTHREAD_LIBS])
2443 fi
2444 if test "x$with_java" = "xyes"
2445 then
2446         JAVA_LIBS="$JAVA_LIBS -ljvm"
2447         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2448 fi
2449
2450 CPPFLAGS="$SAVE_CPPFLAGS"
2451 CFLAGS="$SAVE_CFLAGS"
2452 LDFLAGS="$SAVE_LDFLAGS"
2453 LIBS="$SAVE_LIBS"
2454
2455 AC_SUBST(JAVA_CPPFLAGS)
2456 AC_SUBST(JAVA_CFLAGS)
2457 AC_SUBST(JAVA_LDFLAGS)
2458 AC_SUBST(JAVA_LIBS)
2459 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2460 # }}}
2461
2462 # --with-libldap {{{
2463 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2464 [
2465  if test "x$withval" = "xyes"
2466  then
2467          with_libldap="yes"
2468  else if test "x$withval" = "xno"
2469  then
2470          with_libldap="no"
2471  else
2472          with_libldap="yes"
2473          LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2474          LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2475  fi; fi
2476 ],
2477 [with_libldap="yes"])
2478
2479 SAVE_CPPFLAGS="$CPPFLAGS"
2480 SAVE_LDFLAGS="$LDFLAGS"
2481
2482 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2483 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2484
2485 if test "x$with_libldap" = "xyes"
2486 then
2487         if test "x$LIBLDAP_CPPFLAGS" != "x"
2488         then
2489                 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2490         fi
2491         AC_CHECK_HEADERS(ldap.h,
2492         [with_libldap="yes"],
2493         [with_libldap="no ('ldap.h' not found)"])
2494 fi
2495 if test "x$with_libldap" = "xyes"
2496 then
2497         if test "x$LIBLDAP_LDFLAGS" != "x"
2498         then
2499                 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2500         fi
2501         AC_CHECK_LIB(ldap, ldap_initialize,
2502         [with_libldap="yes"],
2503         [with_libldap="no (symbol 'ldap_initialize' not found)"])
2504
2505 fi
2506
2507 CPPFLAGS="$SAVE_CPPFLAGS"
2508 LDFLAGS="$SAVE_LDFLAGS"
2509
2510 if test "x$with_libldap" = "xyes"
2511 then
2512         BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2513         BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2514         AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2515         AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2516 fi
2517 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2518 # }}}
2519
2520 # --with-liblvm2app {{{
2521 with_liblvm2app_cppflags=""
2522 with_liblvm2app_ldflags=""
2523 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2524 [
2525         if test "x$withval" = "xno"
2526         then
2527                 with_liblvm2app="no"
2528         else
2529                 with_liblvm2app="yes"
2530                 if test "x$withval" != "xyes"
2531                 then
2532                         with_liblvm2app_cppflags="-I$withval/include"
2533                         with_liblvm2app_ldflags="-L$withval/lib"
2534                 fi
2535         fi
2536 ],
2537 [
2538         if test "x$ac_system" = "xLinux"
2539         then
2540                 with_liblvm2app="yes"
2541         else
2542                 with_liblvm2app="no (Linux only library)"
2543         fi
2544 ])
2545 if test "x$with_liblvm2app" = "xyes"
2546 then
2547         SAVE_CPPFLAGS="$CPPFLAGS"
2548         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2549
2550         AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2551
2552         CPPFLAGS="$SAVE_CPPFLAGS"
2553 fi
2554
2555 if test "x$with_liblvm2app" = "xyes"
2556 then
2557         SAVE_CPPFLAGS="$CPPFLAGS"
2558         SAVE_LDFLAGS="$LDFLAGS"
2559         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2560         LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2561
2562         AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
2563
2564         CPPFLAGS="$SAVE_CPPFLAGS"
2565         LDFLAGS="$SAVE_LDFLAGS"
2566 fi
2567 if test "x$with_liblvm2app" = "xyes"
2568 then
2569         BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2570         BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2571         BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2572         AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2573         AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2574         AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2575         AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2576 fi
2577 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2578 # }}}
2579
2580 # --with-libmemcached {{{
2581 with_libmemcached_cppflags=""
2582 with_libmemcached_ldflags=""
2583 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2584 [
2585         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2586         then
2587                 with_libmemcached_cppflags="-I$withval/include"
2588                 with_libmemcached_ldflags="-L$withval/lib"
2589                 with_libmemcached="yes"
2590         else
2591                 with_libmemcached="$withval"
2592         fi
2593 ],
2594 [
2595         with_libmemcached="yes"
2596 ])
2597 if test "x$with_libmemcached" = "xyes"
2598 then
2599         SAVE_CPPFLAGS="$CPPFLAGS"
2600         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2601
2602         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2603
2604         CPPFLAGS="$SAVE_CPPFLAGS"
2605 fi
2606 if test "x$with_libmemcached" = "xyes"
2607 then
2608         SAVE_CPPFLAGS="$CPPFLAGS"
2609         SAVE_LDFLAGS="$LDFLAGS"
2610         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2611         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2612
2613         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2614
2615         CPPFLAGS="$SAVE_CPPFLAGS"
2616         LDFLAGS="$SAVE_LDFLAGS"
2617 fi
2618 if test "x$with_libmemcached" = "xyes"
2619 then
2620         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2621         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2622         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2623         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2624         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2625         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2626         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2627 fi
2628 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2629 # }}}
2630
2631 # --with-libmodbus {{{
2632 with_libmodbus_config=""
2633 with_libmodbus_cflags=""
2634 with_libmodbus_libs=""
2635 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2636 [
2637         if test "x$withval" = "xno"
2638         then
2639                 with_libmodbus="no"
2640         else if test "x$withval" = "xyes"
2641         then
2642                 with_libmodbus="use_pkgconfig"
2643         else if test -d "$with_libmodbus/lib"
2644         then
2645                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2646                 with_libmodbus_cflags="-I$withval/include"
2647                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2648                 with_libmodbus="yes"
2649         fi; fi; fi
2650 ],
2651 [with_libmodbus="use_pkgconfig"])
2652
2653 # configure using pkg-config
2654 if test "x$with_libmodbus" = "xuse_pkgconfig"
2655 then
2656         if test "x$PKG_CONFIG" = "x"
2657         then
2658                 with_libmodbus="no (Don't have pkg-config)"
2659         fi
2660 fi
2661 if test "x$with_libmodbus" = "xuse_pkgconfig"
2662 then
2663         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2664         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2665         if test $? -ne 0
2666         then
2667                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2668         fi
2669 fi
2670 if test "x$with_libmodbus" = "xuse_pkgconfig"
2671 then
2672         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2673         if test $? -ne 0
2674         then
2675                 with_libmodbus="no ($PKG_CONFIG failed)"
2676         fi
2677         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2678         if test $? -ne 0
2679         then
2680                 with_libmodbus="no ($PKG_CONFIG failed)"
2681         fi
2682 fi
2683 if test "x$with_libmodbus" = "xuse_pkgconfig"
2684 then
2685         with_libmodbus="yes"
2686 fi
2687
2688 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2689 # the actual checks.
2690 if test "x$with_libmodbus" = "xyes"
2691 then
2692         SAVE_CPPFLAGS="$CPPFLAGS"
2693         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2694
2695         AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
2696
2697         CPPFLAGS="$SAVE_CPPFLAGS"
2698 fi
2699 if test "x$with_libmodbus" = "xyes"
2700 then
2701         SAVE_CPPFLAGS="$CPPFLAGS"
2702         SAVE_LDFLAGS="$LDFLAGS"
2703
2704         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2705         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2706
2707         AC_CHECK_LIB(modbus, modbus_connect,
2708                      [with_libmodbus="yes"],
2709                      [with_libmodbus="no (symbol modbus_connect not found)"])
2710
2711         CPPFLAGS="$SAVE_CPPFLAGS"
2712         LDFLAGS="$SAVE_LDFLAGS"
2713 fi
2714 if test "x$with_libmodbus" = "xyes"
2715 then
2716         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2717         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2718         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2719         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2720 fi
2721 # }}}
2722
2723 # --with-libmongoc {{{
2724 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2725 [
2726  if test "x$withval" = "xyes"
2727  then
2728          with_libmongoc="yes"
2729  else if test "x$withval" = "xno"
2730  then
2731          with_libmongoc="no"
2732  else
2733          with_libmongoc="yes"
2734          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2735          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2736  fi; fi
2737 ],
2738 [with_libmongoc="yes"])
2739
2740 SAVE_CPPFLAGS="$CPPFLAGS"
2741 SAVE_LDFLAGS="$LDFLAGS"
2742
2743 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2744 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2745
2746 if test "x$with_libmongoc" = "xyes"
2747 then
2748         if test "x$LIBMONGOC_CPPFLAGS" != "x"
2749         then
2750                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2751         fi
2752         AC_CHECK_HEADERS(mongo.h,
2753         [with_libmongoc="yes"],
2754         [with_libmongoc="no ('mongo.h' not found)"],
2755 [#if HAVE_STDINT_H
2756 # define MONGO_HAVE_STDINT 1
2757 #else
2758 # define MONGO_USE_LONG_LONG_INT 1
2759 #endif
2760 ])
2761 fi
2762 if test "x$with_libmongoc" = "xyes"
2763 then
2764         if test "x$LIBMONGOC_LDFLAGS" != "x"
2765         then
2766                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2767         fi
2768         AC_CHECK_LIB(mongoc, mongo_run_command,
2769         [with_libmongoc="yes"],
2770         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2771 fi
2772
2773 CPPFLAGS="$SAVE_CPPFLAGS"
2774 LDFLAGS="$SAVE_LDFLAGS"
2775
2776 if test "x$with_libmongoc" = "xyes"
2777 then
2778         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2779         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2780         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2781         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2782 fi
2783 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2784 # }}}
2785
2786 # --with-libmosquitto {{{
2787 with_libmosquitto_cppflags=""
2788 with_libmosquitto_ldflags=""
2789 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
2790 [
2791         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2792         then
2793                 with_libmosquitto_cppflags="-I$withval/include"
2794                 with_libmosquitto_ldflags="-L$withval/lib"
2795                 with_libmosquitto="yes"
2796         else
2797                 with_libmosquitto="$withval"
2798         fi
2799 ],
2800 [
2801         with_libmosquitto="yes"
2802 ])
2803 if test "x$with_libmosquitto" = "xyes"
2804 then
2805         SAVE_CPPFLAGS="$CPPFLAGS"
2806         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
2807
2808         AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
2809
2810         CPPFLAGS="$SAVE_CPPFLAGS"
2811 fi
2812 if test "x$with_libmosquitto" = "xyes"
2813 then
2814         SAVE_LDFLAGS="$LDFLAGS"
2815         SAVE_CPPFLAGS="$CPPFLAGS"
2816         LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
2817         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
2818
2819         AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
2820
2821         LDFLAGS="$SAVE_LDFLAGS"
2822         CPPFLAGS="$SAVE_CPPFLAGS"
2823 fi
2824 if test "x$with_libmosquitto" = "xyes"
2825 then
2826         BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
2827         BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
2828         BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
2829         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
2830         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LDFLAGS)
2831         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
2832 fi
2833 # }}}
2834
2835 # --with-libmysql {{{
2836 with_mysql_config="mysql_config"
2837 with_mysql_cflags=""
2838 with_mysql_libs=""
2839 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2840 [
2841         if test "x$withval" = "xno"
2842         then
2843                 with_libmysql="no"
2844         else if test "x$withval" = "xyes"
2845         then
2846                 with_libmysql="yes"
2847         else
2848                 if test -f "$withval" && test -x "$withval";
2849                 then
2850                         with_mysql_config="$withval"
2851                 else if test -x "$withval/bin/mysql_config"
2852                 then
2853                         with_mysql_config="$withval/bin/mysql_config"
2854                 fi; fi
2855                 with_libmysql="yes"
2856         fi; fi
2857 ],
2858 [
2859         with_libmysql="yes"
2860 ])
2861 if test "x$with_libmysql" = "xyes"
2862 then
2863         with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
2864         mysql_config_status=$?
2865
2866         if test $mysql_config_status -ne 0
2867         then
2868                 with_libmysql="no ($with_mysql_config failed)"
2869         else
2870                 SAVE_CPPFLAGS="$CPPFLAGS"
2871                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2872
2873                 have_mysql_h="no"
2874                 have_mysql_mysql_h="no"
2875                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2876
2877                 if test "x$have_mysql_h" = "xno"
2878                 then
2879                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2880                 fi
2881
2882                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2883                 then
2884                         with_libmysql="no (mysql.h not found)"
2885                 fi
2886
2887                 CPPFLAGS="$SAVE_CPPFLAGS"
2888         fi
2889 fi
2890 if test "x$with_libmysql" = "xyes"
2891 then
2892         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2893         mysql_config_status=$?
2894
2895         if test $mysql_config_status -ne 0
2896         then
2897                 with_libmysql="no ($with_mysql_config failed)"
2898         else
2899                 SAVE_CPPFLAGS="$CPPFLAGS"
2900                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2901                 SAVE_LIBS="$LIBS"
2902                 LIBS="$with_mysql_libs"
2903                 AC_SEARCH_LIBS([mysql_get_server_version],
2904                  [],
2905                  [with_libmysql="yes"],
2906                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2907                  [])
2908                 CPPFLAGS="$SAVE_CPPFLAGS"
2909                 LIBS="$SAVE_LIBS"
2910         fi
2911 fi
2912 if test "x$with_libmysql" = "xyes"
2913 then
2914         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2915         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2916         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2917         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
2918 fi
2919 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
2920 # }}}
2921
2922 # --with-libmnl {{{
2923 with_libmnl_cflags=""
2924 with_libmnl_libs=""
2925 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
2926 [
2927  echo "libmnl: withval = $withval"
2928  if test "x$withval" = "xyes"
2929  then
2930          with_libmnl="yes"
2931  else if test "x$withval" = "xno"
2932  then
2933          with_libmnl="no"
2934  else
2935          if test -d "$withval/include"
2936          then
2937                  with_libmnl_cflags="-I$withval/include"
2938                  with_libmnl_libs="-L$withval/lib -lmnl"
2939                  with_libmnl="yes"
2940          else
2941                  AC_MSG_ERROR("no such directory: $withval/include")
2942          fi
2943  fi; fi
2944 ],
2945 [
2946  if test "x$ac_system" = "xLinux"
2947  then
2948          with_libmnl="yes"
2949  else
2950          with_libmnl="no (Linux only library)"
2951  fi
2952 ])
2953 if test "x$PKG_CONFIG" = "x"
2954 then
2955         with_libmnl="no (Don't have pkg-config)"
2956 fi
2957 if test "x$with_libmnl" = "xyes"
2958 then
2959         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
2960           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
2961           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
2962         fi
2963
2964         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
2965         [
2966          with_libmnl="yes"
2967          break
2968         ], [],
2969 [#include <stdio.h>
2970 #include <sys/types.h>
2971 #include <asm/types.h>
2972 #include <sys/socket.h>
2973 #include <linux/netlink.h>
2974 #include <linux/rtnetlink.h>])
2975         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2976 [#include <stdio.h>
2977 #include <sys/types.h>
2978 #include <asm/types.h>
2979 #include <sys/socket.h>])
2980
2981         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2982 [[
2983 #include <stdio.h>
2984 #include <sys/types.h>
2985 #include <asm/types.h>
2986 #include <sys/socket.h>
2987 #include <linux/netlink.h>
2988 #include <linux/rtnetlink.h>
2989 ]],
2990 [[
2991 int retval = TCA_STATS2;
2992 return (retval);
2993 ]]
2994         )],
2995         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2996
2997         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2998 [[
2999 #include <stdio.h>
3000 #include <sys/types.h>
3001 #include <asm/types.h>
3002 #include <sys/socket.h>
3003 #include <linux/netlink.h>
3004 #include <linux/rtnetlink.h>
3005 ]],
3006 [[
3007 int retval = TCA_STATS;
3008 return (retval);
3009 ]]
3010         )],
3011         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
3012 fi
3013 if test "x$with_libmnl" = "xyes"
3014 then
3015         AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3016         [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3017         [],
3018         [
3019         #include <linux/if_link.h>
3020         ])
3021 fi
3022 if test "x$with_libmnl" = "xyes"
3023 then
3024         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
3025                      [with_libmnl="yes"],
3026                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3027                      [$with_libmnl_libs])
3028 fi
3029 if test "x$with_libmnl" = "xyes"
3030 then
3031         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
3032         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3033         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3034         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
3035         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
3036 fi
3037 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
3038 # }}}
3039
3040 # --with-libnetapp {{{
3041 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3042 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
3043 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
3044 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
3045 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
3046 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
3047 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3048 [
3049  if test -d "$withval"
3050  then
3051          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3052          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3053          with_libnetapp="yes"
3054  else
3055          with_libnetapp="$withval"
3056  fi
3057 ],
3058 [
3059  with_libnetapp="yes"
3060 ])
3061
3062 SAVE_CPPFLAGS="$CPPFLAGS"
3063 SAVE_LDFLAGS="$LDFLAGS"
3064 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3065 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3066
3067 if test "x$with_libnetapp" = "xyes"
3068 then
3069         if test "x$LIBNETAPP_CPPFLAGS" != "x"
3070         then
3071                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
3072         fi
3073         AC_CHECK_HEADERS(netapp_api.h,
3074                 [with_libnetapp="yes"],
3075                 [with_libnetapp="no (netapp_api.h not found)"])
3076 fi
3077
3078 if test "x$with_libnetapp" = "xyes"
3079 then
3080         if test "x$LIBNETAPP_LDFLAGS" != "x"
3081         then
3082                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
3083         fi
3084
3085         if test "x$LIBNETAPP_LIBS" = "x"
3086         then
3087                 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3088         fi
3089         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
3090
3091         AC_CHECK_LIB(netapp, na_server_invoke_elem,
3092                 [with_libnetapp="yes"],
3093                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3094                 [$LIBNETAPP_LIBS])
3095         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3096 fi
3097
3098 CPPFLAGS="$SAVE_CPPFLAGS"
3099 LDFLAGS="$SAVE_LDFLAGS"
3100
3101 if test "x$with_libnetapp" = "xyes"
3102 then
3103         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
3104 fi
3105
3106 AC_SUBST(LIBNETAPP_CPPFLAGS)
3107 AC_SUBST(LIBNETAPP_LDFLAGS)
3108 AC_SUBST(LIBNETAPP_LIBS)
3109 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
3110 # }}}
3111
3112 # --with-libnetsnmp {{{
3113 with_snmp_config="net-snmp-config"
3114 with_snmp_cflags=""
3115 with_snmp_libs=""
3116 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3117 [
3118         if test "x$withval" = "xno"
3119         then
3120                 with_libnetsnmp="no"
3121         else if test "x$withval" = "xyes"
3122         then
3123                 with_libnetsnmp="yes"
3124         else
3125                 if test -x "$withval"
3126                 then
3127                         with_snmp_config="$withval"
3128                         with_libnetsnmp="yes"
3129                 else
3130                         with_snmp_config="$withval/bin/net-snmp-config"
3131                         with_libnetsnmp="yes"
3132                 fi
3133         fi; fi
3134 ],
3135 [with_libnetsnmp="yes"])
3136 if test "x$with_libnetsnmp" = "xyes"
3137 then
3138         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
3139         snmp_config_status=$?
3140
3141         if test $snmp_config_status -ne 0
3142         then
3143                 with_libnetsnmp="no ($with_snmp_config failed)"
3144         else
3145                 SAVE_CPPFLAGS="$CPPFLAGS"
3146                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
3147
3148                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3149
3150                 CPPFLAGS="$SAVE_CPPFLAGS"
3151         fi
3152 fi
3153 if test "x$with_libnetsnmp" = "xyes"
3154 then
3155         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
3156         snmp_config_status=$?
3157
3158         if test $snmp_config_status -ne 0
3159         then
3160                 with_libnetsnmp="no ($with_snmp_config failed)"
3161         else
3162                 AC_CHECK_LIB(netsnmp, init_snmp,
3163                 [with_libnetsnmp="yes"],
3164                 [with_libnetsnmp="no (libnetsnmp not found)"],
3165                 [$with_snmp_libs])
3166         fi
3167 fi
3168 if test "x$with_libnetsnmp" = "xyes"
3169 then
3170         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
3171         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
3172         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
3173         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
3174 fi
3175 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
3176 # }}}
3177
3178 # --with-liboconfig {{{
3179 with_own_liboconfig="no"
3180 liboconfig_LDFLAGS="$LDFLAGS"
3181 liboconfig_CPPFLAGS="$CPPFLAGS"
3182 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3183 [
3184         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3185         then
3186                 if test -d "$withval/lib"
3187                 then
3188                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3189                 fi
3190                 if test -d "$withval/include"
3191                 then
3192                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3193                 fi
3194         fi
3195         if test "x$withval" = "xno"
3196         then
3197                 AC_MSG_ERROR("liboconfig is required")
3198         fi
3199 ],
3200 [
3201         with_liboconfig="yes"
3202 ])
3203
3204 save_LDFLAGS="$LDFLAGS"
3205 save_CPPFLAGS="$CPPFLAGS"
3206 LDFLAGS="$liboconfig_LDFLAGS"
3207 CPPFLAGS="$liboconfig_CPPFLAGS"
3208 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
3209 [
3210         with_liboconfig="yes"
3211         with_own_liboconfig="no"
3212 ],
3213 [
3214         with_liboconfig="yes"
3215         with_own_liboconfig="yes"
3216         LDFLAGS="$save_LDFLAGS"
3217         CPPFLAGS="$save_CPPFLAGS"
3218 ])
3219
3220 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3221 if test "x$with_own_liboconfig" = "xyes"
3222 then
3223         with_liboconfig="yes (shipped version)"
3224 fi
3225 # }}}
3226
3227 # --with-liboping {{{
3228 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3229 [
3230  if test "x$withval" = "xyes"
3231  then
3232          with_liboping="yes"
3233  else if test "x$withval" = "xno"
3234  then
3235          with_liboping="no"
3236  else
3237          with_liboping="yes"
3238          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3239          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3240  fi; fi
3241 ],
3242 [with_liboping="yes"])
3243
3244 SAVE_CPPFLAGS="$CPPFLAGS"
3245 SAVE_LDFLAGS="$LDFLAGS"
3246
3247 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3248 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3249
3250 if test "x$with_liboping" = "xyes"
3251 then
3252         if test "x$LIBOPING_CPPFLAGS" != "x"
3253         then
3254                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3255         fi
3256         AC_CHECK_HEADERS(oping.h,
3257         [with_liboping="yes"],
3258         [with_liboping="no (oping.h not found)"])
3259 fi
3260 if test "x$with_liboping" = "xyes"
3261 then
3262         if test "x$LIBOPING_LDFLAGS" != "x"
3263         then
3264                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3265         fi
3266         AC_CHECK_LIB(oping, ping_construct,
3267         [with_liboping="yes"],
3268         [with_liboping="no (symbol 'ping_construct' not found)"])
3269 fi
3270
3271 CPPFLAGS="$SAVE_CPPFLAGS"
3272 LDFLAGS="$SAVE_LDFLAGS"
3273
3274 if test "x$with_liboping" = "xyes"
3275 then
3276         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3277         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3278         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3279         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3280 fi
3281 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3282 # }}}
3283
3284 # --with-oracle {{{
3285 with_oracle_cppflags=""
3286 with_oracle_libs=""
3287 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3288 [
3289         if test "x$withval" = "xyes"
3290         then
3291                 if test "x$ORACLE_HOME" = "x"
3292                 then
3293                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3294                 fi
3295                 with_oracle="yes"
3296         else if test "x$withval" = "xno"
3297         then
3298                 with_oracle="no"
3299         else
3300                 with_oracle="yes"
3301                 ORACLE_HOME="$withval"
3302         fi; fi
3303 ],
3304 [
3305         if test "x$ORACLE_HOME" = "x"
3306         then
3307                 with_oracle="no (ORACLE_HOME is not set)"
3308         else
3309                 with_oracle="yes"
3310         fi
3311 ])
3312 if test "x$ORACLE_HOME" != "x"
3313 then
3314         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3315
3316         if test -e "$ORACLE_HOME/lib/ldflags"
3317         then
3318                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3319         fi
3320         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3321         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3322 fi
3323 if test "x$with_oracle" = "xyes"
3324 then
3325         SAVE_CPPFLAGS="$CPPFLAGS"
3326         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3327
3328         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3329
3330         CPPFLAGS="$SAVE_CPPFLAGS"
3331 fi
3332 if test "x$with_oracle" = "xyes"
3333 then
3334         SAVE_CPPFLAGS="$CPPFLAGS"
3335         SAVE_LIBS="$LIBS"
3336         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3337         LIBS="$LIBS $with_oracle_libs"
3338
3339         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3340
3341         CPPFLAGS="$SAVE_CPPFLAGS"
3342         LIBS="$SAVE_LIBS"
3343 fi
3344 if test "x$with_oracle" = "xyes"
3345 then
3346         BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
3347         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3348         AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
3349         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3350 fi
3351 # }}}
3352
3353 # --with-libowcapi {{{
3354 with_libowcapi_cppflags=""
3355 with_libowcapi_ldflags=""
3356 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3357 [
3358         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3359         then
3360                 with_libowcapi_cppflags="-I$withval/include"
3361                 with_libowcapi_ldflags="-L$withval/lib"
3362                 with_libowcapi="yes"
3363         else
3364                 with_libowcapi="$withval"
3365         fi
3366 ],
3367 [
3368         with_libowcapi="yes"
3369 ])
3370 if test "x$with_libowcapi" = "xyes"
3371 then
3372         SAVE_CPPFLAGS="$CPPFLAGS"
3373         CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
3374
3375         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3376
3377         CPPFLAGS="$SAVE_CPPFLAGS"
3378 fi
3379 if test "x$with_libowcapi" = "xyes"
3380 then
3381         SAVE_LDFLAGS="$LDFLAGS"
3382         SAVE_CPPFLAGS="$CPPFLAGS"
3383         LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
3384         CPPFLAGS="$with_libowcapi_cppflags"
3385
3386         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3387
3388         LDFLAGS="$SAVE_LDFLAGS"
3389         CPPFLAGS="$SAVE_CPPFLAGS"
3390 fi
3391 if test "x$with_libowcapi" = "xyes"
3392 then
3393         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3394         BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
3395         BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
3396         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3397         AC_SUBST(BUILD_WITH_LIBOWCAPI_LDFLAGS)
3398         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3399 fi
3400 # }}}
3401
3402 # --with-libpcap {{{
3403 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3404 [
3405         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3406         then
3407                 LDFLAGS="$LDFLAGS -L$withval/lib"
3408                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3409                 with_libpcap="yes"
3410         else
3411                 with_libpcap="$withval"
3412         fi
3413 ],
3414 [
3415         with_libpcap="yes"
3416 ])
3417 if test "x$with_libpcap" = "xyes"
3418 then
3419         AC_CHECK_LIB(pcap, pcap_open_live,
3420         [
3421                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3422         ], [with_libpcap="no (libpcap not found)"])
3423 fi
3424 if test "x$with_libpcap" = "xyes"
3425 then
3426         AC_CHECK_HEADERS(pcap.h,,
3427                          [with_libpcap="no (pcap.h not found)"])
3428 fi
3429 if test "x$with_libpcap" = "xyes"
3430 then
3431         AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3432                        [c_cv_libpcap_have_pcap_error_iface_not_up],
3433                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3434 [[[
3435 #include <pcap.h>
3436 ]]],
3437 [[[
3438   int val = PCAP_ERROR_IFACE_NOT_UP;
3439   return(val);
3440 ]]]
3441                        )],
3442                        [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3443                        [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3444 fi
3445 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3446 then
3447                 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3448 fi
3449 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3450 # }}}
3451
3452 # --with-libperl {{{
3453 perl_interpreter="perl"
3454 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3455 [
3456         if test -f "$withval" && test -x "$withval"
3457         then
3458                 perl_interpreter="$withval"
3459                 with_libperl="yes"
3460         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3461         then
3462                 LDFLAGS="$LDFLAGS -L$withval/lib"
3463                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3464                 perl_interpreter="$withval/bin/perl"
3465                 with_libperl="yes"
3466         else
3467                 with_libperl="$withval"
3468         fi; fi
3469 ],
3470 [
3471         with_libperl="yes"
3472 ])
3473
3474 AC_MSG_CHECKING([for perl])
3475 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3476 if test -x "$perl_interpreter"
3477 then
3478         AC_MSG_RESULT([yes ($perl_interpreter)])
3479 else
3480         perl_interpreter=""
3481         AC_MSG_RESULT([no])
3482 fi
3483
3484 AC_SUBST(PERL, "$perl_interpreter")
3485
3486 if test "x$with_libperl" = "xyes" \
3487         && test -n "$perl_interpreter"
3488 then
3489   SAVE_CFLAGS="$CFLAGS"
3490   SAVE_LIBS="$LIBS"
3491 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3492   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3493   PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3494   CFLAGS="$CFLAGS $PERL_CFLAGS"
3495   LIBS="$LIBS $PERL_LIBS"
3496
3497   AC_CACHE_CHECK([for libperl],
3498     [c_cv_have_libperl],
3499     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3500 [[[
3501 #define PERL_NO_GET_CONTEXT
3502 #include <EXTERN.h>
3503 #include <perl.h>
3504 #include <XSUB.h>
3505 ]]],
3506 [[[
3507        dTHX;
3508        load_module (PERL_LOADMOD_NOIMPORT,
3509                          newSVpv ("Collectd::Plugin::FooBar", 24),
3510                          Nullsv);
3511 ]]]
3512       )],
3513       [c_cv_have_libperl="yes"],
3514       [c_cv_have_libperl="no"]
3515     )
3516   )
3517
3518   if test "x$c_cv_have_libperl" = "xyes"
3519   then
3520           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3521           AC_SUBST(PERL_CFLAGS)
3522           AC_SUBST(PERL_LIBS)
3523   else
3524           with_libperl="no"
3525   fi
3526
3527   CFLAGS="$SAVE_CFLAGS"
3528   LIBS="$SAVE_LIBS"
3529 else if test -z "$perl_interpreter"; then
3530   with_libperl="no (no perl interpreter found)"
3531   c_cv_have_libperl="no"
3532 fi; fi
3533 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3534
3535 if test "x$with_libperl" = "xyes"
3536 then
3537         SAVE_CFLAGS="$CFLAGS"
3538         SAVE_LIBS="$LIBS"
3539         CFLAGS="$CFLAGS $PERL_CFLAGS"
3540         LIBS="$LIBS $PERL_LIBS"
3541
3542         AC_CACHE_CHECK([if perl supports ithreads],
3543                 [c_cv_have_perl_ithreads],
3544                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3545 [[[
3546 #include <EXTERN.h>
3547 #include <perl.h>
3548 #include <XSUB.h>
3549
3550 #if !defined(USE_ITHREADS)
3551 # error "Perl does not support ithreads!"
3552 #endif /* !defined(USE_ITHREADS) */
3553 ]]],
3554 [[[ ]]]
3555                         )],
3556                         [c_cv_have_perl_ithreads="yes"],
3557                         [c_cv_have_perl_ithreads="no"]
3558                 )
3559         )
3560
3561         if test "x$c_cv_have_perl_ithreads" = "xyes"
3562         then
3563                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3564         fi
3565
3566         CFLAGS="$SAVE_CFLAGS"
3567         LIBS="$SAVE_LIBS"
3568 fi
3569
3570 if test "x$with_libperl" = "xyes"
3571 then
3572         SAVE_CFLAGS="$CFLAGS"
3573         SAVE_LIBS="$LIBS"
3574         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3575         # (see issues #41 and #42)
3576         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3577         LIBS="$LIBS $PERL_LIBS"
3578
3579         AC_CACHE_CHECK([for broken Perl_load_module()],
3580                 [c_cv_have_broken_perl_load_module],
3581                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3582 [[[
3583 #define PERL_NO_GET_CONTEXT
3584 #include <EXTERN.h>
3585 #include <perl.h>
3586 #include <XSUB.h>
3587 ]]],
3588 [[[
3589                          dTHX;
3590                          load_module (PERL_LOADMOD_NOIMPORT,
3591                              newSVpv ("Collectd::Plugin::FooBar", 24),
3592                              Nullsv);
3593 ]]]
3594                         )],
3595                         [c_cv_have_broken_perl_load_module="no"],
3596                         [c_cv_have_broken_perl_load_module="yes"]
3597                 )
3598         )
3599
3600         CFLAGS="$SAVE_CFLAGS"
3601         LIBS="$SAVE_LIBS"
3602 fi
3603 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3604                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3605
3606 if test "x$with_libperl" = "xyes"
3607 then
3608         SAVE_CFLAGS="$CFLAGS"
3609         SAVE_LIBS="$LIBS"
3610         CFLAGS="$CFLAGS $PERL_CFLAGS"
3611         LIBS="$LIBS $PERL_LIBS"
3612
3613         AC_CHECK_MEMBER(
3614                 [struct mgvtbl.svt_local],
3615                 [have_struct_mgvtbl_svt_local="yes"],
3616                 [have_struct_mgvtbl_svt_local="no"],
3617                 [
3618 #include <EXTERN.h>
3619 #include <perl.h>
3620 #include <XSUB.h>
3621                 ])
3622
3623         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3624         then
3625                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3626                                   [Define if Perl's struct mgvtbl has member svt_local.])
3627         fi
3628
3629         CFLAGS="$SAVE_CFLAGS"
3630         LIBS="$SAVE_LIBS"
3631 fi
3632 # }}}
3633
3634 # --with-libpq {{{
3635 with_pg_config="pg_config"
3636 with_libpq_includedir=""
3637 with_libpq_libdir=""
3638 with_libpq_cppflags=""
3639 with_libpq_ldflags=""
3640 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3641         [Path to libpq.])],
3642 [
3643         if test "x$withval" = "xno"
3644         then
3645                 with_libpq="no"
3646         else if test "x$withval" = "xyes"
3647         then
3648                 with_libpq="yes"
3649         else
3650                 if test -f "$withval" && test -x "$withval";
3651                 then
3652                         with_pg_config="$withval"
3653                 else if test -x "$withval/bin/pg_config"
3654                 then
3655                         with_pg_config="$withval/bin/pg_config"
3656                 fi; fi
3657                 with_libpq="yes"
3658         fi; fi
3659 ],
3660 [
3661         with_libpq="yes"
3662 ])
3663 if test "x$with_libpq" = "xyes"
3664 then
3665         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3666         pg_config_status=$?
3667
3668         if test $pg_config_status -eq 0
3669         then
3670                 if test -n "$with_libpq_includedir"; then
3671                         for dir in $with_libpq_includedir; do
3672                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3673                         done
3674                 fi
3675         else
3676                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3677         fi
3678
3679         SAVE_CPPFLAGS="$CPPFLAGS"
3680         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3681
3682         AC_CHECK_HEADERS(libpq-fe.h, [],
3683                 [with_libpq="no (libpq-fe.h not found)"], [])
3684
3685         CPPFLAGS="$SAVE_CPPFLAGS"
3686 fi
3687 if test "x$with_libpq" = "xyes"
3688 then
3689         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3690         pg_config_status=$?
3691
3692         if test $pg_config_status -eq 0
3693         then
3694                 if test -n "$with_libpq_libdir"; then
3695                         for dir in $with_libpq_libdir; do
3696                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3697                         done
3698                 fi
3699         else
3700                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3701         fi
3702
3703         SAVE_LDFLAGS="$LDFLAGS"
3704         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3705
3706         AC_CHECK_LIB(pq, PQconnectdb,
3707                 [with_libpq="yes"],
3708                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3709
3710         AC_CHECK_LIB(pq, PQserverVersion,
3711                 [with_libpq="yes"],
3712                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3713
3714         LDFLAGS="$SAVE_LDFLAGS"
3715 fi
3716 if test "x$with_libpq" = "xyes"
3717 then
3718         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3719         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3720         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3721         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3722 fi
3723 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3724 # }}}
3725
3726 # --with-python {{{
3727 with_python_prog=""
3728 with_python_path="$PATH"
3729 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3730 [
3731  if test "x$withval" = "xyes" || test "x$withval" = "xno"
3732  then
3733          with_python="$withval"
3734  else if test -x "$withval"
3735  then
3736          with_python_prog="$withval"
3737          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3738          with_python="yes"
3739  else if test -d "$withval"
3740  then
3741          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3742          with_python="yes"
3743  else
3744          AC_MSG_WARN([Argument not recognized: $withval])
3745  fi; fi; fi
3746 ], [with_python="yes"])
3747
3748 SAVE_PATH="$PATH"
3749 SAVE_CPPFLAGS="$CPPFLAGS"
3750 SAVE_LDFLAGS="$LDFLAGS"
3751 SAVE_LIBS="$LIBS"
3752
3753 PATH="$with_python_path"
3754
3755 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3756 then
3757         AC_MSG_CHECKING([for python])
3758         with_python_prog="`which python 2>/dev/null`"
3759         if test "x$with_python_prog" = "x"
3760         then
3761                 AC_MSG_RESULT([not found])
3762                 with_python="no (interpreter not found)"
3763         else
3764                 AC_MSG_RESULT([$with_python_prog])
3765         fi
3766 fi
3767
3768 if test "x$with_python" = "xyes"
3769 then
3770         AC_MSG_CHECKING([for Python CPPFLAGS])
3771         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3772         python_config_status=$?
3773
3774         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3775         then
3776                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3777                 with_python="no"
3778         else
3779                 AC_MSG_RESULT([$python_include_path])
3780         fi
3781 fi
3782
3783 if test "x$with_python" = "xyes"
3784 then
3785         CPPFLAGS="-I$python_include_path $CPPFLAGS"
3786         AC_CHECK_HEADERS(Python.h,
3787                          [with_python="yes"],
3788                          [with_python="no ('Python.h' not found)"])
3789 fi
3790
3791 if test "x$with_python" = "xyes"
3792 then
3793         AC_MSG_CHECKING([for Python LDFLAGS])
3794         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`
3795         python_config_status=$?
3796
3797         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3798         then
3799                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3800                 with_python="no"
3801         else
3802                 AC_MSG_RESULT([$python_library_path])
3803         fi
3804 fi
3805
3806 if test "x$with_python" = "xyes"
3807 then
3808         AC_MSG_CHECKING([for Python LIBS])
3809         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`
3810         python_config_status=$?
3811
3812         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3813         then
3814                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3815                 with_python="no"
3816         else
3817                 AC_MSG_RESULT([$python_library_flags])
3818         fi
3819 fi
3820
3821 if test "x$with_python" = "xyes"
3822 then
3823         LDFLAGS="-L$python_library_path $LDFLAGS"
3824         LIBS="$python_library_flags $LIBS"
3825
3826         AC_CHECK_FUNC(PyObject_CallFunction,
3827                       [with_python="yes"],
3828                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3829 fi
3830
3831 PATH="$SAVE_PATH"
3832 CPPFLAGS="$SAVE_CPPFLAGS"
3833 LDFLAGS="$SAVE_LDFLAGS"
3834 LIBS="$SAVE_LIBS"
3835
3836 if test "x$with_python" = "xyes"
3837 then
3838         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3839         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3840         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3841         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3842         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3843         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3844 fi
3845 # }}} --with-python
3846
3847 # --with-librabbitmq {{{
3848 with_librabbitmq_cppflags=""
3849 with_librabbitmq_ldflags=""
3850 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3851 [
3852         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3853         then
3854                 with_librabbitmq_cppflags="-I$withval/include"
3855                 with_librabbitmq_ldflags="-L$withval/lib"
3856                 with_librabbitmq="yes"
3857         else
3858                 with_librabbitmq="$withval"
3859         fi
3860 ],
3861 [
3862         with_librabbitmq="yes"
3863 ])
3864 SAVE_CPPFLAGS="$CPPFLAGS"
3865 SAVE_LDFLAGS="$LDFLAGS"
3866 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3867 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3868 if test "x$with_librabbitmq" = "xyes"
3869 then
3870         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3871 fi
3872 if test "x$with_librabbitmq" = "xyes"
3873 then
3874         # librabbitmq up to version 0.9.1 provides "library_errno", later
3875         # versions use "library_error". The library does not provide a version
3876         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3877         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3878                          [
3879 #if HAVE_STDLIB_H
3880 # include <stdlib.h>
3881 #endif
3882 #if HAVE_STDIO_H
3883 # include <stdio.h>
3884 #endif
3885 #if HAVE_STDINT_H
3886 # include <stdint.h>
3887 #endif
3888 #if HAVE_INTTYPES_H
3889 # include <inttypes.h>
3890 #endif
3891 #include <amqp.h>
3892                          ])
3893 fi
3894 if test "x$with_librabbitmq" = "xyes"
3895 then
3896         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3897 fi
3898 if test "x$with_librabbitmq" = "xyes"
3899 then
3900         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3901         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3902         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3903         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3904         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3905         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3906         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3907 fi
3908 CPPFLAGS="$SAVE_CPPFLAGS"
3909 LDFLAGS="$SAVE_LDFLAGS"
3910 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3911
3912 with_amqp_tcp_socket="no"
3913 if test "x$with_librabbitmq" = "xyes"
3914 then
3915         SAVE_CPPFLAGS="$CPPFLAGS"
3916         SAVE_LDFLAGS="$LDFLAGS"
3917         SAVE_LIBS="$LIBS"
3918         CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3919         LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3920         LIBS="-lrabbitmq"
3921
3922         AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
3923         AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
3924         if test "x$with_amqp_tcp_socket" = "xyes"
3925         then
3926                 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
3927                                 [Define if librabbitmq provides the new TCP socket interface.])
3928         fi
3929
3930         AC_CHECK_DECLS(amqp_socket_close,
3931                                 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
3932                                 [[
3933 #include <amqp.h>
3934 #ifdef HAVE_AMQP_TCP_SOCKET_H
3935 # include <amqp_tcp_socket.h>
3936 #endif
3937 #ifdef HAVE_AMQP_SOCKET_H
3938 # include <amqp_socket.h>
3939 #endif
3940                                 ]])
3941
3942         CPPFLAGS="$SAVE_CPPFLAGS"
3943         LDFLAGS="$SAVE_LDFLAGS"
3944         LIBS="$SAVE_LIBS"
3945 fi
3946 # }}}
3947
3948 # --with-librdkafka {{{
3949 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
3950 [
3951   if test "x$withval" != "xno" && test "x$withval" != "xyes"
3952   then
3953     with_librdkafka_cppflags="-I$withval/include"
3954     with_librdkafka_ldflags="-L$withval/lib"
3955     with_librdkafka_rpath="$withval/lib"
3956     with_librdkafka="yes"
3957   else
3958     with_librdkafka="$withval"
3959   fi
3960 ],
3961 [
3962   with_librdkafka="yes"
3963 ])
3964 SAVE_CPPFLAGS="$CPPFLAGS"
3965 SAVE_LDFLAGS="$LDFLAGS"
3966
3967 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
3968 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
3969
3970 if test "x$with_librdkafka" = "xyes"
3971 then
3972         AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
3973 fi
3974
3975 if test "x$with_librdkafka" = "xyes"
3976 then
3977         AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
3978   AC_CHECK_LIB(rdkafka, rd_kafka_conf_set_log_cb, [with_librdkafka_log_cb="yes"], [with_librdkafka_log_cb="no"])
3979   AC_CHECK_LIB(rdkafka, rd_kafka_set_logger, [with_librdkafka_logger="yes"], [with_librdkafka_logger="no"])
3980 fi
3981 if test "x$with_librdkafka" = "xyes"
3982 then
3983         BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
3984         BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
3985         if test "x$with_librdkafka_rpath" != "x"
3986         then
3987                 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
3988         else
3989                 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
3990         fi
3991         AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
3992         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
3993         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
3994         AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
3995   if test "x$with_librdkafka_log_cb" = "xyes"
3996   then
3997         AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
3998   fi
3999   if test "x$with_librdkafka_logger" = "xyes"
4000   then
4001         AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
4002   fi
4003 fi
4004 CPPFLAGS="$SAVE_CPPFLAGS"
4005 LDFLAGS="$SAVE_LDFLAGS"
4006 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
4007
4008 # }}}
4009
4010 # --with-librouteros {{{
4011 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
4012 [
4013  if test "x$withval" = "xyes"
4014  then
4015          with_librouteros="yes"
4016  else if test "x$withval" = "xno"
4017  then
4018          with_librouteros="no"
4019  else
4020          with_librouteros="yes"
4021          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
4022          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
4023  fi; fi
4024 ],
4025 [with_librouteros="yes"])
4026
4027 SAVE_CPPFLAGS="$CPPFLAGS"
4028 SAVE_LDFLAGS="$LDFLAGS"
4029
4030 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
4031 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
4032
4033 if test "x$with_librouteros" = "xyes"
4034 then
4035         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
4036         then
4037                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
4038         fi
4039         AC_CHECK_HEADERS(routeros_api.h,
4040         [with_librouteros="yes"],
4041         [with_librouteros="no (routeros_api.h not found)"])
4042 fi
4043 if test "x$with_librouteros" = "xyes"
4044 then
4045         if test "x$LIBROUTEROS_LDFLAGS" != "x"
4046         then
4047                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
4048         fi
4049         AC_CHECK_LIB(routeros, ros_interface,
4050         [with_librouteros="yes"],
4051         [with_librouteros="no (symbol 'ros_interface' not found)"])
4052 fi
4053
4054 CPPFLAGS="$SAVE_CPPFLAGS"
4055 LDFLAGS="$SAVE_LDFLAGS"
4056
4057 if test "x$with_librouteros" = "xyes"
4058 then
4059         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
4060         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
4061         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
4062         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
4063 fi
4064 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
4065 # }}}
4066
4067 # --with-librrd {{{
4068 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
4069 librrd_cflags=""
4070 librrd_ldflags=""
4071 librrd_threadsafe="yes"
4072 librrd_rrdc_update="no"
4073 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4074 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
4075         then
4076                 librrd_cflags="-I$withval/include"
4077                 librrd_ldflags="-L$withval/lib"
4078                 with_librrd="yes"
4079         else
4080                 with_librrd="$withval"
4081         fi
4082 ], [with_librrd="yes"])
4083 if test "x$with_librrd" = "xyes"
4084 then
4085         SAVE_CPPFLAGS="$CPPFLAGS"
4086         SAVE_LDFLAGS="$LDFLAGS"
4087
4088         CPPFLAGS="$CPPFLAGS $librrd_cflags"
4089         LDFLAGS="$LDFLAGS $librrd_ldflags"
4090
4091         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
4092
4093         CPPFLAGS="$SAVE_CPPFLAGS"
4094         LDFLAGS="$SAVE_LDFLAGS"
4095 fi
4096 if test "x$with_librrd" = "xyes"
4097 then
4098         SAVE_CPPFLAGS="$CPPFLAGS"
4099         SAVE_LDFLAGS="$LDFLAGS"
4100
4101         CPPFLAGS="$CPPFLAGS $librrd_cflags"
4102         LDFLAGS="$LDFLAGS $librrd_ldflags"
4103
4104         AC_CHECK_LIB(rrd_th, rrd_update_r,
4105         [with_librrd="yes"
4106          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
4107         ],
4108         [librrd_threadsafe="no"
4109          AC_CHECK_LIB(rrd, rrd_update,
4110          [with_librrd="yes"
4111           librrd_ldflags="$librrd_ldflags -lrrd -lm"
4112          ],
4113          [with_librrd="no (symbol 'rrd_update' not found)"],
4114          [-lm])
4115         ],
4116         [-lm])
4117
4118         if test "x$librrd_threadsafe" = "xyes"
4119         then
4120                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
4121         else
4122                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
4123         fi
4124
4125         CPPFLAGS="$SAVE_CPPFLAGS"
4126         LDFLAGS="$SAVE_LDFLAGS"
4127 fi
4128 if test "x$with_librrd" = "xyes"
4129 then
4130         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
4131         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4132         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
4133         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
4134 fi
4135 if test "x$librrd_threadsafe" = "xyes"
4136 then
4137         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
4138 fi
4139 # }}}
4140
4141 # --with-libsensors {{{
4142 with_sensors_cflags=""
4143 with_sensors_ldflags=""
4144 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4145 [
4146         if test "x$withval" = "xno"
4147         then
4148                 with_libsensors="no"
4149         else
4150                 with_libsensors="yes"
4151                 if test "x$withval" != "xyes"
4152                 then
4153                         with_sensors_cflags="-I$withval/include"
4154                         with_sensors_ldflags="-L$withval/lib"
4155                         with_libsensors="yes"
4156                 fi
4157         fi
4158 ],
4159 [
4160         if test "x$ac_system" = "xLinux"
4161         then
4162                 with_libsensors="yes"
4163         else
4164                 with_libsensors="no (Linux only library)"
4165         fi
4166 ])
4167 if test "x$with_libsensors" = "xyes"
4168 then
4169         SAVE_CPPFLAGS="$CPPFLAGS"
4170         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4171
4172         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
4173
4174         CPPFLAGS="$SAVE_CPPFLAGS"
4175 fi
4176 if test "x$with_libsensors" = "xyes"
4177 then
4178         SAVE_CPPFLAGS="$CPPFLAGS"
4179         SAVE_LDFLAGS="$LDFLAGS"
4180         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4181         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4182
4183         AC_CHECK_LIB(sensors, sensors_init,
4184         [
4185                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
4186         ],
4187         [with_libsensors="no (libsensors not found)"])
4188
4189         CPPFLAGS="$SAVE_CPPFLAGS"
4190         LDFLAGS="$SAVE_LDFLAGS"
4191 fi
4192 if test "x$with_libsensors" = "xyes"
4193 then
4194         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
4195         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4196         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
4197         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
4198 fi
4199 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
4200 # }}}
4201
4202 # --with-libsigrok {{{
4203 with_libsigrok_cflags=""
4204 with_libsigrok_ldflags=""
4205 AC_ARG_WITH(libsigrok, [AS_HELP_STRING([--with-libsigrok@<:@=PREFIX@:>@], [Path to libsigrok.])],
4206 [
4207         if test "x$withval" = "xno"
4208         then
4209                 with_libsigrok="no"
4210         else
4211                 with_libsigrok="yes"
4212                 if test "x$withval" != "xyes"
4213                 then
4214                         with_libsigrok_cflags="-I$withval/include"
4215                         with_libsigrok_ldflags="-L$withval/lib"
4216                 fi
4217         fi
4218 ],[with_libsigrok="yes"])
4219
4220 # libsigrok has a glib dependency
4221 if test "x$with_libsigrok" = "xyes"
4222 then
4223 m4_ifdef([AM_PATH_GLIB_2_0],
4224         [
4225          AM_PATH_GLIB_2_0([2.28.0],
4226                 [with_libsigrok_cflags="$with_libsigrok_cflags $GLIB_CFLAGS"; with_libsigrok_ldflags="$with_libsigrok_ldflags $GLIB_LIBS"])
4227         ],
4228         [
4229          with_libsigrok="no (glib not available)"
4230         ]
4231 )
4232 fi
4233
4234 # libsigrok headers
4235 if test "x$with_libsigrok" = "xyes"
4236 then
4237         SAVE_CPPFLAGS="$CPPFLAGS"
4238         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
4239
4240         AC_CHECK_HEADERS(libsigrok/libsigrok.h, [], [with_libsigrok="no (libsigrok/libsigrok.h not found)"])
4241
4242         CPPFLAGS="$SAVE_CPPFLAGS"
4243 fi
4244
4245 # libsigrok library
4246 if test "x$with_libsigrok" = "xyes"
4247 then
4248         SAVE_CPPFLAGS="$CPPFLAGS"
4249         SAVE_LDFLAGS="$LDFLAGS"
4250         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
4251         LDFLAGS="$LDFLAGS $with_libsigrok_ldflags"
4252
4253         AC_CHECK_LIB(sigrok, sr_init,
4254         [
4255                 AC_DEFINE(HAVE_LIBSIGROK, 1, [Define to 1 if you have the sigrok library (-lsigrok).])
4256         ],
4257         [with_libsigrok="no (libsigrok not found)"])
4258
4259         CPPFLAGS="$SAVE_CPPFLAGS"
4260         LDFLAGS="$SAVE_LDFLAGS"
4261 fi
4262 if test "x$with_libsigrok" = "xyes"
4263 then
4264         BUILD_WITH_LIBSIGROK_CFLAGS="$with_libsigrok_cflags"
4265         BUILD_WITH_LIBSIGROK_LDFLAGS="$with_libsigrok_ldflags"
4266         AC_SUBST(BUILD_WITH_LIBSIGROK_CFLAGS)
4267         AC_SUBST(BUILD_WITH_LIBSIGROK_LDFLAGS)
4268 fi
4269 AM_CONDITIONAL(BUILD_WITH_LIBSIGROK, test "x$with_libsigrok" = "xyes")
4270 # }}}
4271
4272 # --with-libstatgrab {{{
4273 with_libstatgrab_cflags=""
4274 with_libstatgrab_ldflags=""
4275 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4276 [
4277  if test "x$withval" != "xno" \
4278    && test "x$withval" != "xyes"
4279  then
4280    with_libstatgrab_cflags="-I$withval/include"
4281    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4282    with_libstatgrab="yes"
4283    with_libstatgrab_pkg_config="no"
4284  else
4285    with_libstatgrab="$withval"
4286    with_libstatgrab_pkg_config="yes"
4287  fi
4288  ],
4289 [
4290  with_libstatgrab="yes"
4291  with_libstatgrab_pkg_config="yes"
4292 ])
4293
4294 if test "x$with_libstatgrab" = "xyes" \
4295   && test "x$with_libstatgrab_pkg_config" = "xyes"
4296 then
4297   if test "x$PKG_CONFIG" != "x"
4298   then
4299     AC_MSG_CHECKING([pkg-config for libstatgrab])
4300     temp_result="found"
4301     $PKG_CONFIG --exists libstatgrab 2>/dev/null
4302     if test "$?" != "0"
4303     then
4304       with_libstatgrab_pkg_config="no"
4305       with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4306       temp_result="not found"
4307     fi
4308     AC_MSG_RESULT([$temp_result])
4309   else
4310     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
4311     with_libstatgrab_pkg_config="no"
4312     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
4313   fi
4314 fi
4315
4316 if test "x$with_libstatgrab" = "xyes" \
4317   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4318   && test "x$with_libstatgrab_cflags" = "x"
4319 then
4320   AC_MSG_CHECKING([for libstatgrab CFLAGS])
4321   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4322   if test "$?" = "0"
4323   then
4324     with_libstatgrab_cflags="$temp_result"
4325   else
4326     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4327     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4328   fi
4329   AC_MSG_RESULT([$temp_result])
4330 fi
4331
4332 if test "x$with_libstatgrab" = "xyes" \
4333   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4334   && test "x$with_libstatgrab_ldflags" = "x"
4335 then
4336   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4337   temp_result="`$PKG_CONFIG --libs libstatgrab`"
4338   if test "$?" = "0"
4339   then
4340     with_libstatgrab_ldflags="$temp_result"
4341   else
4342     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4343     temp_result="$PKG_CONFIG --libs libstatgrab failed"
4344   fi
4345   AC_MSG_RESULT([$temp_result])
4346 fi
4347
4348 if test "x$with_libstatgrab" = "xyes"
4349 then
4350   SAVE_CPPFLAGS="$CPPFLAGS"
4351   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4352
4353   AC_CHECK_HEADERS(statgrab.h,
4354                    [with_libstatgrab="yes"],
4355                    [with_libstatgrab="no (statgrab.h not found)"])
4356
4357   CPPFLAGS="$SAVE_CPPFLAGS"
4358 fi
4359
4360 if test "x$with_libstatgrab" = "xyes"
4361 then
4362   SAVE_CFLAGS="$CFLAGS"
4363   SAVE_LDFLAGS="$LDFLAGS"
4364
4365   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4366   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4367
4368   AC_CHECK_LIB(statgrab, sg_init,
4369                [with_libstatgrab="yes"],
4370                [with_libstatgrab="no (symbol sg_init not found)"])
4371
4372   CFLAGS="$SAVE_CFLAGS"
4373   LDFLAGS="$SAVE_LDFLAGS"
4374 fi
4375
4376 if test "x$with_libstatgrab" = "xyes"
4377 then
4378   SAVE_CFLAGS="$CFLAGS"
4379   SAVE_LDFLAGS="$LDFLAGS"
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 :