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