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