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