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