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