Code

ceph plugin: Rewrite the BUFFER_ADD() macro.
[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])
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}"])
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 )
33 AM_CONDITIONAL([BUILD_INCLUDED_LTDL], [test "x$LTDLDEPS" != "x"])
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)
39 AC_PREFIX_DEFAULT("/opt/collectd")
41 AC_SYS_LARGEFILE
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")
58 AC_DISABLE_STATIC
59 AC_PROG_LIBTOOL
60 AC_PROG_LEX
61 AC_PROG_YACC
63 AC_PATH_PROG([VALGRIND], [valgrind])
65 # Warn when pkg.m4 is missing
66 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
68 PKG_PROG_PKG_CONFIG
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 )
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
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")
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")
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
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])
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"])
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
160         KERNEL_CFLAGS="-I$KERNEL_DIR/include"
161         AC_SUBST(KERNEL_CFLAGS)
162 fi
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.])
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
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
187 # Where to install .pc files.
188 pkgconfigdir="${libdir}/pkgconfig"
189 AC_SUBST(pkgconfigdir)
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")
210 # Checks for header files.
212 AC_HEADER_STDC
213 AC_HEADER_SYS_WAIT
214 AC_HEADER_DIRENT
215 AC_HEADER_STDBOOL
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)
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 ])
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 ])
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 ])
385 if test "x$have_ip6_ext" = "xno"; then
386         SAVE_CFLAGS="$CFLAGS"
387         CFLAGS="$CFLAGS -DSOLARIS2=8"
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 ])
409         if test "x$have_ip6_ext" = "xno"; then
410                 CFLAGS="$SAVE_CFLAGS"
411         fi
412 fi
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, [], [],
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 ])
431 fi
433 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
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 ])
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
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
475 # For hddtemp module
476 AC_CHECK_HEADERS(linux/major.h)
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"],
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
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"],
502 #include <dirent.h>
503 #include <sys/ioctl.h>
504 #include <sys/socket.h>
505 ])
506 fi
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"],
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 ])
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)
527 # For interface plugin
528 AC_CHECK_HEADERS(ifaddrs.h)
529 AC_CHECK_HEADERS(net/if.h, [], [],
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, [], [],
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, [], [],
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, [], [],
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 ])
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     ])
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"])
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"
615                 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
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"])
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
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")
631 # For quota module
632 AC_CHECK_HEADERS(sys/ucred.h, [], [],
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 ])
642 # For mount interface
643 AC_CHECK_HEADERS(sys/mount.h, [], [],
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 ])
653 # For the email plugin
654 AC_CHECK_HEADERS(linux/un.h, [], [],
656 #if HAVE_SYS_SOCKET_H
657 #       include <sys/socket.h>
658 #endif
659 ])
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 ])
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"]
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
705 # }}}
707 # For the dns plugin
708 AC_CHECK_HEADERS(arpa/nameser.h)
709 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
711 #if HAVE_ARPA_NAMESER_H
712 # include <arpa/nameser.h>
713 #endif
714 ])
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 ])
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"],
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 ])
764 # For the multimeter plugin
765 have_termios_h="no"
766 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
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"]))
785 # For the turbostat plugin
786 have_asm_msrindex_h="no"
787 AC_CHECK_HEADERS(asm/msr-index.h, [have_asm_msrindex_h="yes"])
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
808 have_cpuid_h="no"
809 AC_CHECK_HEADERS(cpuid.h, [have_cpuid_h="yes"])
811 AC_CHECK_HEADERS(sys/capability.h)
813 # Checks for typedefs, structures, and compiler characteristics.
815 AC_C_CONST
816 AC_TYPE_PID_T
817 AC_TYPE_SIZE_T
818 AC_TYPE_UID_T
819 AC_HEADER_TIME
822 # Checks for library functions.
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)
826 AC_FUNC_STRERROR_R
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
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
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;
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   )
876 if test "x$c_cv_have_strtok_r_default" = "xno"
877 then
878   CFLAGS="$CFLAGS -D_REENTRANT=1"
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;
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
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
916 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
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")
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
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))))
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")
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"])
967 # Check for strptime {{{
968 if test "x$GCC" = "xyes"
969 then
970         SAVE_CFLAGS="$CFLAGS"
971         CFLAGS="$CFLAGS -Wall -Wextra -Werror"
972 fi
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"]))
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
1024 if test "x$GCC" = "xyes"
1025 then
1026         CFLAGS="$SAVE_CFLAGS"
1027 fi
1028 # }}} Check for strptime
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
1088 # Check for NAN
1089 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
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
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
1200 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
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"])
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;
1238         d = 8.642135e130;
1239         memcpy ((void *) &i0, (void *) &d, 8);
1241         i1 = i0;
1242         memcpy ((void *) c, (void *) &i1, 8);
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;
1293         d = 8.642135e130;
1294         memcpy ((void *) &i0, (void *) &d, 8);
1296         i1 = endianflip (i0);
1297         memcpy ((void *) c, (void *) &i1, 8);
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;
1342         d = 8.642135e130;
1343         memcpy ((void *) &i0, (void *) &d, 8);
1345         i1 = intswap (i0);
1346         memcpy ((void *) c, (void *) &i1, 8);
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
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
1379 # --with-useragent {{{
1380 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
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 ])
1388 # }}}
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])],
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])]
1402 # }}}
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"])
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
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
1467 # Check for different versions of `getmntent' here..
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
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   )
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
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         ])
1542 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1543         [],
1544         [
1545         #include <netinet/in.h>
1546         #include <net/if.h>
1547         ])
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         ])
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         ])
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         ])
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 ])
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         ])
1653 # Checks for libraries begin here
1656 with_libresolv="yes"
1657 AC_CHECK_LIB(resolv, res_search,
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")
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   [ : ]
1688 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1689 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
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   []
1699 PTHREAD_LIBS="$LIBS"
1700 LIBS="$SAVE_LIBS"
1702 AC_CHECK_HEADERS([pthread.h],
1703   [],
1704   [AC_MSG_ERROR([pthread.h not found])]
1706 AC_SUBST([PTHREAD_LIBS])
1708 m4_divert_once([HELP_WITH], [
1709 collectd additional packages:])
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
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")
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
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
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")
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")
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")
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")
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")
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")
1820 # --with-libaquaero5 {{{
1821 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
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"])
1837 SAVE_CPPFLAGS="$CPPFLAGS"
1838 SAVE_LDFLAGS="$LDFLAGS"
1840 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1841 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
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
1864 CPPFLAGS="$SAVE_CPPFLAGS"
1865 LDFLAGS="$SAVE_LDFLAGS"
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 # }}}
1877 # --with-libhiredis {{{
1878 AC_ARG_WITH(libhiredis, [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@],
1879       [Path to libhiredis.])],
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"])
1895 SAVE_CPPFLAGS="$CPPFLAGS"
1896 SAVE_LDFLAGS="$LDFLAGS"
1898 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
1899 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
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)"])
1921 fi
1923 CPPFLAGS="$SAVE_CPPFLAGS"
1924 LDFLAGS="$SAVE_LDFLAGS"
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 # }}}
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.])],
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 ],
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=$?
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"
1976                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
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=$?
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
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)
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
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 # }}}
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.])],
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 ],
2068         with_libdbi="yes"
2069 ])
2070 if test "x$with_libdbi" = "xyes"
2071 then
2072         SAVE_CPPFLAGS="$CPPFLAGS"
2073         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
2075         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
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"
2086         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
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 # }}}
2103 # --with-libesmtp {{{
2104 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
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 ],
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 # }}}
2143 # --with-libganglia {{{
2144 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
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 ],
2164  with_libganglia="yes"
2165 ])
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
2176                 if test "x$GANGLIA_LDFLAGS" = "x"
2177                 then
2178                         GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
2179                 fi
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
2190 SAVE_CPPFLAGS="$CPPFLAGS"
2191 SAVE_LDFLAGS="$LDFLAGS"
2192 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
2193 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
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
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
2213 CPPFLAGS="$SAVE_CPPFLAGS"
2214 LDFLAGS="$SAVE_LDFLAGS"
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 # }}}
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.])],
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 ],
2247  with_libgcrypt_config="libgcrypt-config"
2248  with_libgcrypt="yes"
2249 ])
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
2258         if test "x$GCRYPT_LIBS" = "x"
2259         then
2260                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2261         fi
2262 fi
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"
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
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
2289 CPPFLAGS="$SAVE_CPPFLAGS"
2290 LDFLAGS="$SAVE_LDFLAGS"
2291 LIBS="$SAVE_LIBS"
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
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 # }}}
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.])],
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 ],
2319         with_libgps="yes"
2320 ])
2321 if test "x$with_libgps" = "xyes"
2322 then
2323         SAVE_CFLAGS="$CFLAGS"
2324         CFLAGS="$CFLAGS $with_libgps_cflags"
2326         AC_CHECK_HEADERS(gps.h, [with_libgps="yes"], [with_libgps="no (gps.h not found)"])
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"
2337         AC_CHECK_LIB(gps, gps_open, [with_libgps="yes"], [with_libgps="no (symbol gps_open not found)"])
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 # }}}
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"]
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++)"]
2379 fi
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
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 # }}}
2444 # --with-libiptc {{{
2445 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
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 ],
2460         if test "x$ac_system" = "xLinux"
2461         then
2462                 with_libiptc="pkgconfig"
2463         else
2464                 with_libiptc="no (Linux only)"
2465         fi
2466 ])
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
2490 SAVE_CPPFLAGS="$CPPFLAGS"
2491 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
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
2522 CPPFLAGS="$SAVE_CPPFLAGS"
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 # }}}
2534 # --with-java {{{
2535 with_java_home="$JAVA_HOME"
2536 if test "x$with_java_home" = "x"
2537 then
2538         with_java_home="/usr/lib/jvm"
2539 fi
2540 JAVAC="$JAVAC"
2541 JAR="$JAR"
2542 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2544         if test "x$withval" = "xno"
2545         then
2546                 with_java="no"
2547         else if test "x$withval" = "xyes"
2548         then
2549                 with_java="yes"
2550         else
2551                 with_java_home="$withval"
2552                 with_java="yes"
2553         fi; fi
2554 ],
2555 [with_java="yes"])
2556 if test "x$with_java" = "xyes"
2557 then
2558         if test -d "$with_java_home"
2559         then
2560                 AC_MSG_CHECKING([for jni.h])
2561                 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2562                 if test "x$TMPVAR" != "x"
2563                 then
2564                         AC_MSG_RESULT([found in $TMPVAR])
2565                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2566                 else
2567                         AC_MSG_RESULT([not found])
2568                 fi
2570                 AC_MSG_CHECKING([for jni_md.h])
2571                 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2572                 if test "x$TMPVAR" != "x"
2573                 then
2574                         AC_MSG_RESULT([found in $TMPVAR])
2575                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2576                 else
2577                         AC_MSG_RESULT([not found])
2578                 fi
2580                 AC_MSG_CHECKING([for libjvm.so])
2581                 TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2582                 if test "x$TMPVAR" != "x"
2583                 then
2584                         AC_MSG_RESULT([found in $TMPVAR])
2585                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2586                 else
2587                         AC_MSG_RESULT([not found])
2588                 fi
2590                 if test "x$JAVAC" = "x"
2591                 then
2592                         AC_MSG_CHECKING([for javac])
2593                         TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2594                         if test "x$TMPVAR" != "x"
2595                         then
2596                                 JAVAC="$TMPVAR"
2597                                 AC_MSG_RESULT([$JAVAC])
2598                         else
2599                                 AC_MSG_RESULT([not found])
2600                         fi
2601                 fi
2602                 if test "x$JAR" = "x"
2603                 then
2604                         AC_MSG_CHECKING([for jar])
2605                         TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2606                         if test "x$TMPVAR" != "x"
2607                         then
2608                                 JAR="$TMPVAR"
2609                                 AC_MSG_RESULT([$JAR])
2610                         else
2611                                 AC_MSG_RESULT([not found])
2612                         fi
2613                 fi
2614         else if test "x$with_java_home" != "x"
2615         then
2616                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2617         fi; fi
2618 fi
2620 if test "x$JAVA_CPPFLAGS" != "x"
2621 then
2622         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2623 fi
2624 if test "x$JAVA_CFLAGS" != "x"
2625 then
2626         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2627 fi
2628 if test "x$JAVA_LDFLAGS" != "x"
2629 then
2630         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2631 fi
2632 if test "x$JAVA_LIBS" != "x"
2633 then
2634         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2635 fi
2636 if test "x$JAVAC" = "x"
2637 then
2638         with_javac_path="$PATH"
2639         if test "x$with_java_home" != "x"
2640         then
2641                 with_javac_path="$with_java_home:with_javac_path"
2642                 if test -d "$with_java_home/bin"
2643                 then
2644                         with_javac_path="$with_java_home/bin:with_javac_path"
2645                 fi
2646         fi
2648         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2649 fi
2650 if test "x$JAVAC" = "x"
2651 then
2652         with_java="no (javac not found)"
2653 fi
2654 if test "x$JAR" = "x"
2655 then
2656         with_jar_path="$PATH"
2657         if test "x$with_java_home" != "x"
2658         then
2659                 with_jar_path="$with_java_home:$with_jar_path"
2660                 if test -d "$with_java_home/bin"
2661                 then
2662                         with_jar_path="$with_java_home/bin:$with_jar_path"
2663                 fi
2664         fi
2666         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2667 fi
2668 if test "x$JAR" = "x"
2669 then
2670         with_java="no (jar not found)"
2671 fi
2673 SAVE_CPPFLAGS="$CPPFLAGS"
2674 SAVE_CFLAGS="$CFLAGS"
2675 SAVE_LDFLAGS="$LDFLAGS"
2676 SAVE_LIBS="$LIBS"
2677 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2678 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2679 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2680 LIBS="$LIBS $JAVA_LIBS"
2682 if test "x$with_java" = "xyes"
2683 then
2684         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2685 fi
2686 if test "x$with_java" = "xyes"
2687 then
2688         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2689         [with_java="yes"],
2690         [with_java="no (Symbol 'JNI_CreateJavaVM' not found)"],
2691         [$JAVA_LIBS $PTHREAD_LIBS])
2692 fi
2693 if test "x$with_java" = "xyes"
2694 then
2695         JAVA_LIBS="$JAVA_LIBS -ljvm"
2696         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2697 fi
2699 CPPFLAGS="$SAVE_CPPFLAGS"
2700 CFLAGS="$SAVE_CFLAGS"
2701 LDFLAGS="$SAVE_LDFLAGS"
2702 LIBS="$SAVE_LIBS"
2704 AC_SUBST(JAVA_CPPFLAGS)
2705 AC_SUBST(JAVA_CFLAGS)
2706 AC_SUBST(JAVA_LDFLAGS)
2707 AC_SUBST(JAVA_LIBS)
2708 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2709 # }}}
2711 # --with-libldap {{{
2712 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2714  if test "x$withval" = "xyes"
2715  then
2716          with_libldap="yes"
2717  else if test "x$withval" = "xno"
2718  then
2719          with_libldap="no"
2720  else
2721          with_libldap="yes"
2722          LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2723          LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2724  fi; fi
2725 ],
2726 [with_libldap="yes"])
2728 SAVE_CPPFLAGS="$CPPFLAGS"
2729 SAVE_LDFLAGS="$LDFLAGS"
2731 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2732 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2734 if test "x$with_libldap" = "xyes"
2735 then
2736         if test "x$LIBLDAP_CPPFLAGS" != "x"
2737         then
2738                 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2739         fi
2740         AC_CHECK_HEADERS(ldap.h,
2741         [with_libldap="yes"],
2742         [with_libldap="no ('ldap.h' not found)"])
2743 fi
2744 if test "x$with_libldap" = "xyes"
2745 then
2746         if test "x$LIBLDAP_LDFLAGS" != "x"
2747         then
2748                 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2749         fi
2750         AC_CHECK_LIB(ldap, ldap_initialize,
2751         [with_libldap="yes"],
2752         [with_libldap="no (symbol 'ldap_initialize' not found)"])
2754 fi
2756 CPPFLAGS="$SAVE_CPPFLAGS"
2757 LDFLAGS="$SAVE_LDFLAGS"
2759 if test "x$with_libldap" = "xyes"
2760 then
2761         BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2762         BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2763         AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2764         AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2765 fi
2766 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2767 # }}}
2769 # --with-liblua {{{
2770 with_liblua_cppflags=""
2771 with_liblua_ldflags=""
2772 with_liblua_libs=""
2773 with_liblua="yes"
2775 AC_ARG_VAR([LIBLUA_PKG_CONFIG_NAME], [Name of liblua used by pkg-config])
2776 if test "x$LIBLUA_PKG_CONFIG_NAME" = "x"
2777 then
2778        LIBLUA_PKG_CONFIG_NAME="lua"
2779 fi
2781 if test "x$with_liblua" = "xyes"
2782 then
2783         $PKG_CONFIG --exists $LIBLUA_PKG_CONFIG_NAME 2>/dev/null
2784         lua_config_status=$?
2786         if test 0 -ne $lua_config_status
2787         then
2788                 with_liblua="no"
2789         fi
2790 fi
2792 if test "x$with_liblua" = "xyes"
2793 then
2794         with_liblua_cppflags=`$PKG_CONFIG --cflags-only-I $LIBLUA_PKG_CONFIG_NAME` || with_liblua="no"
2795         with_liblua_ldflags=`$PKG_CONFIG --libs-only-L $LIBLUA_PKG_CONFIG_NAME` || with_liblua="no"
2796         with_liblua_libs=`$PKG_CONFIG --libs-only-l $LIBLUA_PKG_CONFIG_NAME` || with_liblua="no"
2797 fi
2798 if test "x$with_liblua" = "xyes"
2799 then
2800         SAVE_CPPFLAGS="$CPPFLAGS"
2801         CPPFLAGS="$CPPFLAGS $with_liblua_cppflags"
2803         AC_CHECK_HEADERS(lua.h lauxlib.h lualib.h, [], [with_liblua="no (header not found)"], [])
2805         CPPFLAGS="$SAVE_CPPFLAGS"
2806 fi
2807 if test "x$with_liblua" = "xyes"
2808 then
2809         SAVE_LDFLAGS="$LDFLAGS"
2810         SAVE_LIBS="$LIBS"
2811         LDFLAGS="$SAVE_LDFLAGS $with_liblua_ldflags"
2812         LIBS="$LIBS $with_liblua_libs"
2814         AC_CHECK_FUNC(lua_settop, [with_liblua="yes"], [with_liblua="no (symbol 'lua_settop' not found)"])
2816         LDFLAGS="$SAVE_LDFLAGS"
2817         LIBS="$SAVE_LIBS"
2818 fi
2819 if test "x$with_liblua" = "xyes"
2820 then
2821     BUILD_WITH_LIBLUA_CPPFLAGS="$with_liblua_cppflags"
2822     BUILD_WITH_LIBLUA_LDFLAGS="$with_liblua_ldflags"
2823     BUILD_WITH_LIBLUA_LIBS="$with_liblua_libs"
2824 fi
2825 AC_SUBST(BUILD_WITH_LIBLUA_CPPFLAGS)
2826 AC_SUBST(BUILD_WITH_LIBLUA_LDFLAGS)
2827 AC_SUBST(BUILD_WITH_LIBLUA_LIBS)
2828 # }}}
2830 # --with-liblvm2app {{{
2831 with_liblvm2app_cppflags=""
2832 with_liblvm2app_ldflags=""
2833 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2835         if test "x$withval" = "xno"
2836         then
2837                 with_liblvm2app="no"
2838         else
2839                 with_liblvm2app="yes"
2840                 if test "x$withval" != "xyes"
2841                 then
2842                         with_liblvm2app_cppflags="-I$withval/include"
2843                         with_liblvm2app_ldflags="-L$withval/lib"
2844                 fi
2845         fi
2846 ],
2848         if test "x$ac_system" = "xLinux"
2849         then
2850                 with_liblvm2app="yes"
2851         else
2852                 with_liblvm2app="no (Linux only library)"
2853         fi
2854 ])
2855 if test "x$with_liblvm2app" = "xyes"
2856 then
2857         SAVE_CPPFLAGS="$CPPFLAGS"
2858         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2860         AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2862         CPPFLAGS="$SAVE_CPPFLAGS"
2863 fi
2865 if test "x$with_liblvm2app" = "xyes"
2866 then
2867         SAVE_CPPFLAGS="$CPPFLAGS"
2868         SAVE_LDFLAGS="$LDFLAGS"
2869         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2870         LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2872         AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
2874         CPPFLAGS="$SAVE_CPPFLAGS"
2875         LDFLAGS="$SAVE_LDFLAGS"
2876 fi
2877 if test "x$with_liblvm2app" = "xyes"
2878 then
2879         BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2880         BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2881         BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2882         AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2883         AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2884         AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2885         AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2886 fi
2887 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2888 # }}}
2890 # --with-libmemcached {{{
2891 with_libmemcached_cppflags=""
2892 with_libmemcached_ldflags=""
2893 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2895         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2896         then
2897                 with_libmemcached_cppflags="-I$withval/include"
2898                 with_libmemcached_ldflags="-L$withval/lib"
2899                 with_libmemcached="yes"
2900         else
2901                 with_libmemcached="$withval"
2902         fi
2903 ],
2905         with_libmemcached="yes"
2906 ])
2907 if test "x$with_libmemcached" = "xyes"
2908 then
2909         SAVE_CPPFLAGS="$CPPFLAGS"
2910         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2912         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2914         CPPFLAGS="$SAVE_CPPFLAGS"
2915 fi
2916 if test "x$with_libmemcached" = "xyes"
2917 then
2918         SAVE_CPPFLAGS="$CPPFLAGS"
2919         SAVE_LDFLAGS="$LDFLAGS"
2920         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2921         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2923         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2925         CPPFLAGS="$SAVE_CPPFLAGS"
2926         LDFLAGS="$SAVE_LDFLAGS"
2927 fi
2928 if test "x$with_libmemcached" = "xyes"
2929 then
2930         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2931         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2932         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2933         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2934         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2935         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2936         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2937 fi
2938 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2939 # }}}
2941 # --with-libmodbus {{{
2942 with_libmodbus_config=""
2943 with_libmodbus_cflags=""
2944 with_libmodbus_libs=""
2945 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2947         if test "x$withval" = "xno"
2948         then
2949                 with_libmodbus="no"
2950         else if test "x$withval" = "xyes"
2951         then
2952                 with_libmodbus="use_pkgconfig"
2953         else if test -d "$with_libmodbus/lib"
2954         then
2955                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2956                 with_libmodbus_cflags="-I$withval/include"
2957                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2958                 with_libmodbus="yes"
2959         fi; fi; fi
2960 ],
2961 [with_libmodbus="use_pkgconfig"])
2963 # configure using pkg-config
2964 if test "x$with_libmodbus" = "xuse_pkgconfig"
2965 then
2966         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2967         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2968         if test $? -ne 0
2969         then
2970                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2971         fi
2972 fi
2973 if test "x$with_libmodbus" = "xuse_pkgconfig"
2974 then
2975         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2976         if test $? -ne 0
2977         then
2978                 with_libmodbus="no ($PKG_CONFIG failed)"
2979         fi
2980         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2981         if test $? -ne 0
2982         then
2983                 with_libmodbus="no ($PKG_CONFIG failed)"
2984         fi
2985 fi
2986 if test "x$with_libmodbus" = "xuse_pkgconfig"
2987 then
2988         with_libmodbus="yes"
2989 fi
2991 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2992 # the actual checks.
2993 if test "x$with_libmodbus" = "xyes"
2994 then
2995         SAVE_CPPFLAGS="$CPPFLAGS"
2996         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2998         AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
3000         CPPFLAGS="$SAVE_CPPFLAGS"
3001 fi
3002 if test "x$with_libmodbus" = "xyes"
3003 then
3004         SAVE_CPPFLAGS="$CPPFLAGS"
3005         SAVE_LDFLAGS="$LDFLAGS"
3007         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
3008         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
3010         AC_CHECK_LIB(modbus, modbus_connect,
3011                      [with_libmodbus="yes"],
3012                      [with_libmodbus="no (symbol modbus_connect not found)"])
3014         CPPFLAGS="$SAVE_CPPFLAGS"
3015         LDFLAGS="$SAVE_LDFLAGS"
3016 fi
3017 if test "x$with_libmodbus" = "xyes"
3018 then
3019         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
3020         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
3021         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
3022         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
3023 fi
3024 # }}}
3026 # --with-libmongoc {{{
3027 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
3029  if test "x$withval" = "xyes"
3030  then
3031          with_libmongoc="yes"
3032  else if test "x$withval" = "xno"
3033  then
3034          with_libmongoc="no"
3035  else
3036          with_libmongoc="yes"
3037          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
3038          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
3039  fi; fi
3040 ],
3041 [with_libmongoc="yes"])
3043 SAVE_CPPFLAGS="$CPPFLAGS"
3044 SAVE_LDFLAGS="$LDFLAGS"
3046 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
3047 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
3049 if test "x$with_libmongoc" = "xyes"
3050 then
3051         if test "x$LIBMONGOC_CPPFLAGS" != "x"
3052         then
3053                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
3054         fi
3055         AC_CHECK_HEADERS(mongo.h,
3056         [with_libmongoc="yes"],
3057         [with_libmongoc="no ('mongo.h' not found)"],
3058 [#if HAVE_STDINT_H
3059 # define MONGO_HAVE_STDINT 1
3060 #else
3061 # define MONGO_USE_LONG_LONG_INT 1
3062 #endif
3063 ])
3064 fi
3065 if test "x$with_libmongoc" = "xyes"
3066 then
3067         if test "x$LIBMONGOC_LDFLAGS" != "x"
3068         then
3069                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
3070         fi
3071         AC_CHECK_LIB(mongoc, mongo_run_command,
3072         [with_libmongoc="yes"],
3073         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
3074 fi
3076 CPPFLAGS="$SAVE_CPPFLAGS"
3077 LDFLAGS="$SAVE_LDFLAGS"
3079 if test "x$with_libmongoc" = "xyes"
3080 then
3081         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
3082         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
3083         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
3084         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
3085 fi
3086 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
3087 # }}}
3089 # --with-libmosquitto {{{
3090 with_libmosquitto_cppflags=""
3091 with_libmosquitto_ldflags=""
3092 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
3094         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3095         then
3096                 with_libmosquitto_cppflags="-I$withval/include"
3097                 with_libmosquitto_ldflags="-L$withval/lib"
3098                 with_libmosquitto="yes"
3099         else
3100                 with_libmosquitto="$withval"
3101         fi
3102 ],
3104         with_libmosquitto="yes"
3105 ])
3106 if test "x$with_libmosquitto" = "xyes"
3107 then
3108         SAVE_CPPFLAGS="$CPPFLAGS"
3109         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3111         AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
3113         CPPFLAGS="$SAVE_CPPFLAGS"
3114 fi
3115 if test "x$with_libmosquitto" = "xyes"
3116 then
3117         SAVE_LDFLAGS="$LDFLAGS"
3118         SAVE_CPPFLAGS="$CPPFLAGS"
3119         LDFLAGS="$LDFLAGS $with_libmosquitto_ldflags"
3120         CPPFLAGS="$CPPFLAGS $with_libmosquitto_cppflags"
3122         AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
3124         LDFLAGS="$SAVE_LDFLAGS"
3125         CPPFLAGS="$SAVE_CPPFLAGS"
3126 fi
3127 if test "x$with_libmosquitto" = "xyes"
3128 then
3129         BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
3130         BUILD_WITH_LIBMOSQUITTO_LDFLAGS="$with_libmosquitto_ldflags"
3131         BUILD_WITH_LIBMOSQUITTO_LIBS="-lmosquitto"
3132         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
3133         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LDFLAGS)
3134         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
3135 fi
3136 # }}}
3138 # --with-libmysql {{{
3139 with_mysql_config="mysql_config"
3140 with_mysql_cflags=""
3141 with_mysql_libs=""
3142 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
3144         if test "x$withval" = "xno"
3145         then
3146                 with_libmysql="no"
3147         else if test "x$withval" = "xyes"
3148         then
3149                 with_libmysql="yes"
3150         else
3151                 if test -f "$withval" && test -x "$withval";
3152                 then
3153                         with_mysql_config="$withval"
3154                 else if test -x "$withval/bin/mysql_config"
3155                 then
3156                         with_mysql_config="$withval/bin/mysql_config"
3157                 fi; fi
3158                 with_libmysql="yes"
3159         fi; fi
3160 ],
3162         with_libmysql="yes"
3163 ])
3164 if test "x$with_libmysql" = "xyes"
3165 then
3166         with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
3167         mysql_config_status=$?
3169         if test $mysql_config_status -ne 0
3170         then
3171                 with_libmysql="no ($with_mysql_config failed)"
3172         else
3173                 SAVE_CPPFLAGS="$CPPFLAGS"
3174                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3176                 have_mysql_h="no"
3177                 have_mysql_mysql_h="no"
3178                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
3180                 if test "x$have_mysql_h" = "xno"
3181                 then
3182                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
3183                 fi
3185                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
3186                 then
3187                         with_libmysql="no (mysql.h not found)"
3188                 fi
3190                 CPPFLAGS="$SAVE_CPPFLAGS"
3191         fi
3192 fi
3193 if test "x$with_libmysql" = "xyes"
3194 then
3195         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
3196         mysql_config_status=$?
3198         if test $mysql_config_status -ne 0
3199         then
3200                 with_libmysql="no ($with_mysql_config failed)"
3201         else
3202                 SAVE_CPPFLAGS="$CPPFLAGS"
3203                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
3204                 SAVE_LIBS="$LIBS"
3205                 LIBS="$with_mysql_libs"
3206                 AC_SEARCH_LIBS([mysql_get_server_version],
3207                  [],
3208                  [with_libmysql="yes"],
3209                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
3210                  [])
3211                 CPPFLAGS="$SAVE_CPPFLAGS"
3212                 LIBS="$SAVE_LIBS"
3213         fi
3214 fi
3215 if test "x$with_libmysql" = "xyes"
3216 then
3217         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
3218         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
3219         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
3220         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
3221 fi
3222 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
3223 # }}}
3225 # --with-libmnl {{{
3226 with_libmnl_cflags=""
3227 with_libmnl_libs=""
3228 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
3230  echo "libmnl: withval = $withval"
3231  if test "x$withval" = "xyes"
3232  then
3233          with_libmnl="yes"
3234  else if test "x$withval" = "xno"
3235  then
3236          with_libmnl="no"
3237  else
3238          if test -d "$withval/include"
3239          then
3240                  with_libmnl_cflags="-I$withval/include"
3241                  with_libmnl_libs="-L$withval/lib -lmnl"
3242                  with_libmnl="yes"
3243          else
3244                  AC_MSG_ERROR("no such directory: $withval/include")
3245          fi
3246  fi; fi
3247 ],
3249  if test "x$ac_system" = "xLinux"
3250  then
3251          with_libmnl="yes"
3252  else
3253          with_libmnl="no (Linux only library)"
3254  fi
3255 ])
3256 if test "x$with_libmnl" = "xyes"
3257 then
3258         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
3259           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
3260           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
3261         fi
3263         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
3264         [
3265          with_libmnl="yes"
3266          break
3267         ], [],
3268 [#include <stdio.h>
3269 #include <sys/types.h>
3270 #include <asm/types.h>
3271 #include <sys/socket.h>
3272 #include <linux/netlink.h>
3273 #include <linux/rtnetlink.h>])
3274         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
3275 [#include <stdio.h>
3276 #include <sys/types.h>
3277 #include <asm/types.h>
3278 #include <sys/socket.h>])
3280         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3281 [[
3282 #include <stdio.h>
3283 #include <sys/types.h>
3284 #include <asm/types.h>
3285 #include <sys/socket.h>
3286 #include <linux/netlink.h>
3287 #include <linux/rtnetlink.h>
3288 ]],
3289 [[
3290 int retval = TCA_STATS2;
3291 return (retval);
3292 ]]
3293         )],
3294         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
3296         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3297 [[
3298 #include <stdio.h>
3299 #include <sys/types.h>
3300 #include <asm/types.h>
3301 #include <sys/socket.h>
3302 #include <linux/netlink.h>
3303 #include <linux/rtnetlink.h>
3304 ]],
3305 [[
3306 int retval = TCA_STATS;
3307 return (retval);
3308 ]]
3309         )],
3310         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
3311 fi
3312 if test "x$with_libmnl" = "xyes"
3313 then
3314         AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
3315         [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
3316         [],
3317         [
3318         #include <linux/if_link.h>
3319         ])
3320 fi
3321 if test "x$with_libmnl" = "xyes"
3322 then
3323         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
3324                      [with_libmnl="yes"],
3325                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
3326                      [$with_libmnl_libs])
3327 fi
3328 if test "x$with_libmnl" = "xyes"
3329 then
3330         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
3331         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
3332         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
3333         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
3334         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
3335 fi
3336 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
3337 # }}}
3339 # --with-libnetapp {{{
3340 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
3341 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
3342 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
3343 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
3344 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
3345 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
3346 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
3348  if test -d "$withval"
3349  then
3350          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
3351          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
3352          with_libnetapp="yes"
3353  else
3354          with_libnetapp="$withval"
3355  fi
3356 ],
3358  with_libnetapp="yes"
3359 ])
3361 SAVE_CPPFLAGS="$CPPFLAGS"
3362 SAVE_LDFLAGS="$LDFLAGS"
3363 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
3364 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
3366 if test "x$with_libnetapp" = "xyes"
3367 then
3368         if test "x$LIBNETAPP_CPPFLAGS" != "x"
3369         then
3370                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
3371         fi
3372         AC_CHECK_HEADERS(netapp_api.h,
3373                 [with_libnetapp="yes"],
3374                 [with_libnetapp="no (netapp_api.h not found)"])
3375 fi
3377 if test "x$with_libnetapp" = "xyes"
3378 then
3379         if test "x$LIBNETAPP_LDFLAGS" != "x"
3380         then
3381                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
3382         fi
3384         if test "x$LIBNETAPP_LIBS" = "x"
3385         then
3386                 LIBNETAPP_LIBS="$PTHREAD_LIBS -lxml -ladt -lssl -lm -lcrypto -lz"
3387         fi
3388         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
3390         AC_CHECK_LIB(netapp, na_server_invoke_elem,
3391                 [with_libnetapp="yes"],
3392                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
3393                 [$LIBNETAPP_LIBS])
3394         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
3395 fi
3397 CPPFLAGS="$SAVE_CPPFLAGS"
3398 LDFLAGS="$SAVE_LDFLAGS"
3400 if test "x$with_libnetapp" = "xyes"
3401 then
3402         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
3403 fi
3405 AC_SUBST(LIBNETAPP_CPPFLAGS)
3406 AC_SUBST(LIBNETAPP_LDFLAGS)
3407 AC_SUBST(LIBNETAPP_LIBS)
3408 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
3409 # }}}
3411 # --with-libnetsnmp {{{
3412 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3414         if test "x$withval" = "xno"
3415         then
3416                 with_libnetsnmp="no"
3417         else if test "x$withval" = "xyes"
3418         then
3419                 with_libnetsnmp="yes"
3420         else
3421                 with_libnetsnmp_cppflags="-I$withval/include"
3422                 with_libnetsnmp_ldflags="-I$withval/lib"
3423                 with_libnetsnmp="yes"
3424         fi; fi
3425 ],
3426 [with_libnetsnmp="yes"])
3427 if test "x$with_libnetsnmp" = "xyes"
3428 then
3429         SAVE_CPPFLAGS="$CPPFLAGS"
3430         CPPFLAGS="$CPPFLAGS $with_libnetsnmp_cppflags"
3432         AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3434         CPPFLAGS="$SAVE_CPPFLAGS"
3435 fi
3436 if test "x$with_libnetsnmp" = "xyes"
3437 then
3438         SAVE_LDFLAGS="$LDFLAGS"
3439         LDFLAGS="$LDFLAGS $with_libnetsnmp_ldflags"
3441         AC_CHECK_LIB(netsnmp, init_snmp,
3442                 [with_libnetsnmp="yes"],
3443                 [with_libnetsnmp="no (libnetsnmp not found)"],
3444                 [$with_snmp_libs])
3446         LDFLAGS="$SAVE_LDFLAGS"
3447 fi
3448 if test "x$with_libnetsnmp" = "xyes"
3449 then
3450         BUILD_WITH_LIBNETSNMP_CPPFLAGS="$with_libnetsnmp_cppflags"
3451         BUILD_WITH_LIBNETSNMP_LDFLAGS="$with_libnetsnmp_ldflags"
3452         BUILD_WITH_LIBNETSNMP_LIBS="-lnetsnmp"
3453 fi
3454 AC_SUBST(BUILD_WITH_LIBNETSNMP_CPPFLAGS)
3455 AC_SUBST(BUILD_WITH_LIBNETSNMP_LDFLAGS)
3456 AC_SUBST(BUILD_WITH_LIBNETSNMP_LIBS)
3457 # }}}
3459 # --with-liboconfig {{{
3460 with_own_liboconfig="no"
3461 liboconfig_LDFLAGS="$LDFLAGS"
3462 liboconfig_CPPFLAGS="$CPPFLAGS"
3463 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3465         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3466         then
3467                 if test -d "$withval/lib"
3468                 then
3469                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3470                 fi
3471                 if test -d "$withval/include"
3472                 then
3473                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3474                 fi
3475         fi
3476         if test "x$withval" = "xno"
3477         then
3478                 AC_MSG_ERROR("liboconfig is required")
3479         fi
3480 ],
3482         with_liboconfig="yes"
3483 ])
3485 save_LDFLAGS="$LDFLAGS"
3486 save_CPPFLAGS="$CPPFLAGS"
3487 LDFLAGS="$liboconfig_LDFLAGS"
3488 CPPFLAGS="$liboconfig_CPPFLAGS"
3489 AC_CHECK_LIB(oconfig, oconfig_parse_file,
3491         with_liboconfig="yes"
3492         with_own_liboconfig="no"
3493 ],
3495         with_liboconfig="yes"
3496         with_own_liboconfig="yes"
3497         LDFLAGS="$save_LDFLAGS"
3498         CPPFLAGS="$save_CPPFLAGS"
3499 ])
3501 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3502 if test "x$with_own_liboconfig" = "xyes"
3503 then
3504         with_liboconfig="yes (shipped version)"
3505 fi
3506 # }}}
3508 # --with-liboping {{{
3509 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3511  if test "x$withval" = "xyes"
3512  then
3513          with_liboping="yes"
3514  else if test "x$withval" = "xno"
3515  then
3516          with_liboping="no"
3517  else
3518          with_liboping="yes"
3519          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3520          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3521  fi; fi
3522 ],
3523 [with_liboping="yes"])
3525 SAVE_CPPFLAGS="$CPPFLAGS"
3526 SAVE_LDFLAGS="$LDFLAGS"
3528 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3529 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3531 if test "x$with_liboping" = "xyes"
3532 then
3533         if test "x$LIBOPING_CPPFLAGS" != "x"
3534         then
3535                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3536         fi
3537         AC_CHECK_HEADERS(oping.h,
3538         [with_liboping="yes"],
3539         [with_liboping="no (oping.h not found)"])
3540 fi
3541 if test "x$with_liboping" = "xyes"
3542 then
3543         if test "x$LIBOPING_LDFLAGS" != "x"
3544         then
3545                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3546         fi
3547         AC_CHECK_LIB(oping, ping_construct,
3548         [with_liboping="yes"],
3549         [with_liboping="no (symbol 'ping_construct' not found)"])
3550 fi
3552 CPPFLAGS="$SAVE_CPPFLAGS"
3553 LDFLAGS="$SAVE_LDFLAGS"
3555 if test "x$with_liboping" = "xyes"
3556 then
3557         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3558         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3559         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3560         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3561 fi
3562 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3563 # }}}
3565 # --with-oracle {{{
3566 with_oracle_cppflags=""
3567 with_oracle_libs=""
3568 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3570         if test "x$withval" = "xyes"
3571         then
3572                 if test "x$ORACLE_HOME" = "x"
3573                 then
3574                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3575                 fi
3576                 with_oracle="yes"
3577         else if test "x$withval" = "xno"
3578         then
3579                 with_oracle="no"
3580         else
3581                 with_oracle="yes"
3582                 ORACLE_HOME="$withval"
3583         fi; fi
3584 ],
3586         if test "x$ORACLE_HOME" = "x"
3587         then
3588                 with_oracle="no (ORACLE_HOME is not set)"
3589         else
3590                 with_oracle="yes"
3591         fi
3592 ])
3593 if test "x$ORACLE_HOME" != "x"
3594 then
3595         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3597         if test -e "$ORACLE_HOME/lib/ldflags"
3598         then
3599                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3600         fi
3601         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3602         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3603 fi
3604 if test "x$with_oracle" = "xyes"
3605 then
3606         SAVE_CPPFLAGS="$CPPFLAGS"
3607         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3609         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3611         CPPFLAGS="$SAVE_CPPFLAGS"
3612 fi
3613 if test "x$with_oracle" = "xyes"
3614 then
3615         SAVE_CPPFLAGS="$CPPFLAGS"
3616         SAVE_LIBS="$LIBS"
3617         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3618         LIBS="$LIBS $with_oracle_libs"
3620         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3622         CPPFLAGS="$SAVE_CPPFLAGS"
3623         LIBS="$SAVE_LIBS"
3624 fi
3625 if test "x$with_oracle" = "xyes"
3626 then
3627         BUILD_WITH_ORACLE_CPPFLAGS="$with_oracle_cppflags"
3628         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3629         AC_SUBST(BUILD_WITH_ORACLE_CPPFLAGS)
3630         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3631 fi
3632 # }}}
3634 # --with-libowcapi {{{
3635 with_libowcapi_cppflags=""
3636 with_libowcapi_ldflags=""
3637 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3639         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3640         then
3641                 with_libowcapi_cppflags="-I$withval/include"
3642                 with_libowcapi_ldflags="-L$withval/lib"
3643                 with_libowcapi="yes"
3644         else
3645                 with_libowcapi="$withval"
3646         fi
3647 ],
3649         with_libowcapi="yes"
3650 ])
3651 if test "x$with_libowcapi" = "xyes"
3652 then
3653         SAVE_CPPFLAGS="$CPPFLAGS"
3654         CPPFLAGS="$CPPFLAGS $with_libowcapi_cppflags"
3656         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3658         CPPFLAGS="$SAVE_CPPFLAGS"
3659 fi
3660 if test "x$with_libowcapi" = "xyes"
3661 then
3662         SAVE_LDFLAGS="$LDFLAGS"
3663         SAVE_CPPFLAGS="$CPPFLAGS"
3664         LDFLAGS="$LDFLAGS $with_libowcapi_ldflags"
3665         CPPFLAGS="$with_libowcapi_cppflags"
3667         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3669         LDFLAGS="$SAVE_LDFLAGS"
3670         CPPFLAGS="$SAVE_CPPFLAGS"
3671 fi
3672 if test "x$with_libowcapi" = "xyes"
3673 then
3674         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3675         BUILD_WITH_LIBOWCAPI_LDFLAGS="$with_libowcapi_ldflags"
3676         BUILD_WITH_LIBOWCAPI_LIBS="-lowcapi"
3677         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3678         AC_SUBST(BUILD_WITH_LIBOWCAPI_LDFLAGS)
3679         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3680 fi
3681 # }}}
3683 # --with-libpcap {{{
3684 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3686         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3687         then
3688                 LDFLAGS="$LDFLAGS -L$withval/lib"
3689                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3690                 with_libpcap="yes"
3691         else
3692                 with_libpcap="$withval"
3693         fi
3694 ],
3696         with_libpcap="yes"
3697 ])
3698 if test "x$with_libpcap" = "xyes"
3699 then
3700         AC_CHECK_LIB(pcap, pcap_open_live,
3701         [
3702                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3703         ], [with_libpcap="no (libpcap not found)"])
3704 fi
3705 if test "x$with_libpcap" = "xyes"
3706 then
3707         AC_CHECK_HEADERS(pcap.h,,
3708                          [with_libpcap="no (pcap.h not found)"])
3709 fi
3710 if test "x$with_libpcap" = "xyes"
3711 then
3712         AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3713                        [c_cv_libpcap_have_pcap_error_iface_not_up],
3714                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3715 [[[
3716 #include <pcap.h>
3717 ]]],
3718 [[[
3719   int val = PCAP_ERROR_IFACE_NOT_UP;
3720   return(val);
3721 ]]]
3722                        )],
3723                        [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3724                        [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3725 fi
3726 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3727 then
3728                 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3729 fi
3730 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3731 # }}}
3733 # --with-libperl {{{
3734 perl_interpreter="perl"
3735 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3737         if test -f "$withval" && test -x "$withval"
3738         then
3739                 perl_interpreter="$withval"
3740                 with_libperl="yes"
3741         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3742         then
3743                 LDFLAGS="$LDFLAGS -L$withval/lib"
3744                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3745                 perl_interpreter="$withval/bin/perl"
3746                 with_libperl="yes"
3747         else
3748                 with_libperl="$withval"
3749         fi; fi
3750 ],
3752         with_libperl="yes"
3753 ])
3755 AC_MSG_CHECKING([for perl])
3756 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3757 if test -x "$perl_interpreter"
3758 then
3759         AC_MSG_RESULT([yes ($perl_interpreter)])
3760 else
3761         perl_interpreter=""
3762         AC_MSG_RESULT([no])
3763 fi
3765 AC_SUBST(PERL, "$perl_interpreter")
3767 if test "x$with_libperl" = "xyes" \
3768         && test -n "$perl_interpreter"
3769 then
3770   SAVE_CFLAGS="$CFLAGS"
3771   SAVE_LIBS="$LIBS"
3772 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3773   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e perl_inc`
3774   PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3775   CFLAGS="$CFLAGS $PERL_CFLAGS"
3776   LIBS="$LIBS $PERL_LIBS"
3778   AC_CACHE_CHECK([for libperl],
3779     [c_cv_have_libperl],
3780     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3781 [[[
3782 #define PERL_NO_GET_CONTEXT
3783 #include <EXTERN.h>
3784 #include <perl.h>
3785 #include <XSUB.h>
3786 ]]],
3787 [[[
3788        dTHX;
3789        load_module (PERL_LOADMOD_NOIMPORT,
3790                          newSVpv ("Collectd::Plugin::FooBar", 24),
3791                          Nullsv);
3792 ]]]
3793       )],
3794       [c_cv_have_libperl="yes"],
3795       [c_cv_have_libperl="no"]
3796     )
3797   )
3799   if test "x$c_cv_have_libperl" = "xyes"
3800   then
3801           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3802           AC_SUBST(PERL_CFLAGS)
3803           AC_SUBST(PERL_LIBS)
3804   else
3805           with_libperl="no"
3806   fi
3808   CFLAGS="$SAVE_CFLAGS"
3809   LIBS="$SAVE_LIBS"
3810 else if test -z "$perl_interpreter"; then
3811   with_libperl="no (no perl interpreter found)"
3812   c_cv_have_libperl="no"
3813 fi; fi
3814 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3816 if test "x$with_libperl" = "xyes"
3817 then
3818         SAVE_CFLAGS="$CFLAGS"
3819         SAVE_LIBS="$LIBS"
3820         CFLAGS="$CFLAGS $PERL_CFLAGS"
3821         LIBS="$LIBS $PERL_LIBS"
3823         AC_CACHE_CHECK([if perl supports ithreads],
3824                 [c_cv_have_perl_ithreads],
3825                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3826 [[[
3827 #include <EXTERN.h>
3828 #include <perl.h>
3829 #include <XSUB.h>
3831 #if !defined(USE_ITHREADS)
3832 # error "Perl does not support ithreads!"
3833 #endif /* !defined(USE_ITHREADS) */
3834 ]]],
3835 [[[ ]]]
3836                         )],
3837                         [c_cv_have_perl_ithreads="yes"],
3838                         [c_cv_have_perl_ithreads="no"]
3839                 )
3840         )
3842         if test "x$c_cv_have_perl_ithreads" = "xyes"
3843         then
3844                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3845         fi
3847         CFLAGS="$SAVE_CFLAGS"
3848         LIBS="$SAVE_LIBS"
3849 fi
3851 if test "x$with_libperl" = "xyes"
3852 then
3853         SAVE_CFLAGS="$CFLAGS"
3854         SAVE_LIBS="$LIBS"
3855         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3856         # (see issues #41 and #42)
3857         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3858         LIBS="$LIBS $PERL_LIBS"
3860         AC_CACHE_CHECK([for broken Perl_load_module()],
3861                 [c_cv_have_broken_perl_load_module],
3862                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3863 [[[
3864 #define PERL_NO_GET_CONTEXT
3865 #include <EXTERN.h>
3866 #include <perl.h>
3867 #include <XSUB.h>
3868 ]]],
3869 [[[
3870                          dTHX;
3871                          load_module (PERL_LOADMOD_NOIMPORT,
3872                              newSVpv ("Collectd::Plugin::FooBar", 24),
3873                              Nullsv);
3874 ]]]
3875                         )],
3876                         [c_cv_have_broken_perl_load_module="no"],
3877                         [c_cv_have_broken_perl_load_module="yes"]
3878                 )
3879         )
3881         CFLAGS="$SAVE_CFLAGS"
3882         LIBS="$SAVE_LIBS"
3883 fi
3884 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3885                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3887 if test "x$with_libperl" = "xyes"
3888 then
3889         SAVE_CFLAGS="$CFLAGS"
3890         SAVE_LIBS="$LIBS"
3891         CFLAGS="$CFLAGS $PERL_CFLAGS"
3892         LIBS="$LIBS $PERL_LIBS"
3894         AC_CHECK_MEMBER(
3895                 [struct mgvtbl.svt_local],
3896                 [have_struct_mgvtbl_svt_local="yes"],
3897                 [have_struct_mgvtbl_svt_local="no"],
3898                 [
3899 #include <EXTERN.h>
3900 #include <perl.h>
3901 #include <XSUB.h>
3902                 ])
3904         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3905         then
3906                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3907                                   [Define if Perl's struct mgvtbl has member svt_local.])
3908         fi
3910         CFLAGS="$SAVE_CFLAGS"
3911         LIBS="$SAVE_LIBS"
3912 fi
3913 # }}}
3915 # --with-libpq {{{
3916 with_pg_config="pg_config"
3917 with_libpq_includedir=""
3918 with_libpq_libdir=""
3919 with_libpq_cppflags=""
3920 with_libpq_ldflags=""
3921 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3922         [Path to libpq.])],
3924         if test "x$withval" = "xno"
3925         then
3926                 with_libpq="no"
3927         else if test "x$withval" = "xyes"
3928         then
3929                 with_libpq="yes"
3930         else
3931                 if test -f "$withval" && test -x "$withval";
3932                 then
3933                         with_pg_config="$withval"
3934                 else if test -x "$withval/bin/pg_config"
3935                 then
3936                         with_pg_config="$withval/bin/pg_config"
3937                 fi; fi
3938                 with_libpq="yes"
3939         fi; fi
3940 ],
3942         with_libpq="yes"
3943 ])
3944 if test "x$with_libpq" = "xyes"
3945 then
3946         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3947         pg_config_status=$?
3949         if test $pg_config_status -eq 0
3950         then
3951                 if test -n "$with_libpq_includedir"; then
3952                         for dir in $with_libpq_includedir; do
3953                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3954                         done
3955                 fi
3956         else
3957                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3958         fi
3960         SAVE_CPPFLAGS="$CPPFLAGS"
3961         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3963         AC_CHECK_HEADERS(libpq-fe.h, [],
3964                 [with_libpq="no (libpq-fe.h not found)"], [])
3966         CPPFLAGS="$SAVE_CPPFLAGS"
3967 fi
3968 if test "x$with_libpq" = "xyes"
3969 then
3970         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3971         pg_config_status=$?
3973         if test $pg_config_status -eq 0
3974         then
3975                 if test -n "$with_libpq_libdir"; then
3976                         for dir in $with_libpq_libdir; do
3977                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3978                         done
3979                 fi
3980         else
3981                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3982         fi
3984         SAVE_LDFLAGS="$LDFLAGS"
3985         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3987         AC_CHECK_LIB(pq, PQconnectdb,
3988                 [with_libpq="yes"],
3989                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3991         AC_CHECK_LIB(pq, PQserverVersion,
3992                 [with_libpq="yes"],
3993                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3995         LDFLAGS="$SAVE_LDFLAGS"
3996 fi
3997 if test "x$with_libpq" = "xyes"
3998 then
3999         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
4000         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
4001         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
4002         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
4003 fi
4004 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
4005 # }}}
4007 # --with-libprotobuf {{{
4008 with_libprotobuf_cppflags=""
4009 with_libprotobuf_ldflags=""
4010 AC_ARG_WITH([libprotobuf], [AS_HELP_STRING([--with-libprotobuf@<:@=PREFIX@:>@], [Path to libprotobuf.])],
4011   [
4012     if test "x$withval" != "xno" && test "x$withval" != "xyes"
4013     then
4014       with_libprotobuf_cppflags="-I$withval/include"
4015       with_libprotobuf_ldflags="-L$withval/lib"
4016       with_libprotobuf="yes"
4017     fi
4018     if test "x$withval" = "xno"
4019     then
4020       with_libprotobuf="no (disabled on command line)"
4021     fi
4022   ],
4023   [withval="yes"]
4025 if test "x$withval" = "xyes"
4026 then
4027 PKG_CHECK_MODULES([PROTOBUF], [protobuf],
4028   [with_libprotobuf="yes"],
4029   [with_libprotobuf="no (pkg-config could not find libprotobuf)"]
4031 fi
4033 if test "x$withval" != "xno"
4034 then
4035   SAVE_LDFLAGS="$LDFLAGS"
4036   SAVE_LIBS="$LIBS"
4037   LDFLAGS="$with_libprotobuf_ldflags"
4038   LIBS="$PROTOBUF_LIBS $LIBS"
4039   AC_LANG_PUSH([C++])
4040   AC_CHECK_LIB([protobuf], [main],
4041     [
4042       SAVE_CPPFLAGS="$CPPFLAGS"
4043       CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4044       if test "x$PROTOBUF_LIBS" = "x"
4045       then
4046         PROTOBUF_LIBS="-lprotobuf"
4047       fi
4048       AC_CHECK_HEADERS([google/protobuf/util/time_util.h],
4049         [with_libprotobuf="yes"],
4050         [with_libprotobuf="no (<google/protobuf/util/time_util.h> not found)"]
4051       )
4052       CPPFLAGS="$SAVE_CPPFLAGS"
4053     ],
4054     [with_libprotobuf="no (libprotobuf not found)"]
4055   )
4056   AC_LANG_POP([C++])
4057   LDFLAGS="$SAVE_LDFLAGS"
4058   LIBS="$SAVE_LIBS"
4059 fi
4060 BUILD_WITH_LIBPROTOBUF_CPPFLAGS="$with_libprotobuf_cppflags $PROTOBUF_CFLAGS"
4061 BUILD_WITH_LIBPROTOBUF_LDFLAGS="$with_libprotobuf_ldflags"
4062 BUILD_WITH_LIBPROTOBUF_LIBS="$PROTOBUF_LIBS"
4063 AC_SUBST([BUILD_WITH_LIBPROTOBUF_CPPFLAGS])
4064 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LDFLAGS])
4065 AC_SUBST([BUILD_WITH_LIBPROTOBUF_LIBS])
4066 # }}}
4068 # --with-libprotobuf-c {{{
4069 with_libprotobuf_c_cppflags=""
4070 with_libprotobuf_c_ldflags=""
4071 AC_ARG_WITH([libprotobuf-c], [AS_HELP_STRING([--with-libprotobuf-c@<:@=PREFIX@:>@], [Path to libprotobuf-c.])],
4072   [
4073     if test "x$withval" != "xno" && test "x$withval" != "xyes"
4074     then
4075       with_libprotobuf_c_cppflags="-I$withval/include"
4076       with_libprotobuf_c_ldflags="-L$withval/lib"
4077       with_libprotobuf_c="yes"
4078     fi
4079     if test "x$withval" = "xno"
4080     then
4081       with_libprotobuf_c="no (disabled on command line)"
4082     fi
4083   ],
4084   [withval="yes"]
4086 if test "x$withval" = "xyes"
4087 then
4088 PKG_CHECK_MODULES([PROTOBUF_C], [libprotobuf-c],
4089   [with_libprotobuf_c="yes"],
4090   [with_libprotobuf_c="no (pkg-config could not find libprotobuf-c)"]
4092 fi
4094 if test "x$withval" != "xno"
4095 then
4096   SAVE_LDFLAGS="$LDFLAGS"
4097   SAVE_LIBS="$LIBS"
4098   LDFLAGS="$with_libprotobuf_c_ldflags"
4099   LIBS="$PROTOBUF_C_LIBS $LIBS"
4100   AC_CHECK_LIB([protobuf-c], [protobuf_c_message_pack],
4101     [
4102       SAVE_CPPFLAGS="$CPPFLAGS"
4103       CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4104       if test "x$PROTOBUF_C_LIBS" = "x"
4105       then
4106         PROTOBUF_C_LIBS="-lprotobuf-c"
4107       fi
4108       AC_CHECK_HEADERS([protobuf-c/protobuf-c.h google/protobuf-c/protobuf-c.h],
4109         [
4110           with_libprotobuf_c="yes"
4111           break
4112         ],
4113         [with_libprotobuf_c="no (<protobuf-c.h> not found)"]
4114       )
4115       CPPFLAGS="$SAVE_CPPFLAGS"
4116     ],
4117     [with_libprotobuf_c="no (libprotobuf-c not found)"]
4118   )
4119   LDFLAGS="$SAVE_LDFLAGS"
4120   LIBS="$SAVE_LIBS"
4121 fi
4122 BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS="$with_libprotobuf_c_cppflags $PROTOBUF_C_CFLAGS"
4123 BUILD_WITH_LIBPROTOBUF_C_LDFLAGS="$with_libprotobuf_c_ldflags"
4124 BUILD_WITH_LIBPROTOBUF_C_LIBS="$PROTOBUF_C_LIBS"
4125 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS])
4126 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LDFLAGS])
4127 AC_SUBST([BUILD_WITH_LIBPROTOBUF_C_LIBS])
4128 # }}}
4130 # --with-libpython {{{
4131 AC_ARG_VAR([LIBPYTHON_CPPFLAGS], [Preprocessor flags for libpython])
4132 AC_ARG_VAR([LIBPYTHON_LDFLAGS], [Linker flags for libpython])
4133 AC_ARG_VAR([LIBPYTHON_LIBS], [Libraries for libpython])
4135 AC_ARG_WITH([libpython],
4136   [AS_HELP_STRING([--with-libpython],
4137     [if we should build with libpython @<:@default=yes@:>@])
4138   ],
4139   [with_libpython="$withval"],
4140   [with_libpython="check"]
4142 if test "$with_libpython" != "no"; then
4143   if test "$LIBPYTHON_CPPFLAGS" = "" && test "$LIBPYTHON_LDFLAGS" = ""; then
4144     AC_ARG_VAR([PYTHON_CONFIG], [path to python-config])
4145     AC_PATH_PROGS([PYTHON_CONFIG],
4146       [python3-config python2-config python-config]
4147     )
4148     if test "$PYTHON_CONFIG" = ""; then
4149       if test "$with_libpython" = "yes"; then
4150         AC_MSG_ERROR([Unable to find python-config])
4151       fi
4152       with_libpython="no"
4153     fi
4154   fi
4155 fi
4157 if test "$PYTHON_CONFIG" != ""; then
4158   LIBPYTHON_CPPFLAGS="`${PYTHON_CONFIG} --includes`"
4159   if test $? -ne 0; then
4160     with_libpython="no"
4161   fi
4162   LIBPYTHON_LDFLAGS="`${PYTHON_CONFIG} --ldflags`"
4163   if test $? -ne 0; then
4164     with_libpython="no"
4165   fi
4166   LIBPYTHON_LIBS="`${PYTHON_CONFIG} --libs`"
4167   if test $? -ne 0; then
4168     with_libpython="no"
4169   fi
4170 fi
4172 if test "$with_libpython" != "xno"; then
4173   SAVE_CPPFLAGS="$CPPFLAGS"
4174   SAVE_LDFLAGS="$LDFLAGS"
4175   SAVE_LIBS="$LIBS"
4176   CPPFLAGS="$LIBPYTHON_CPPFLAGS $CPPFLAGS"
4177   LDFLAGS="$LIBPYTHON_LDFLAGS $LDFLAGS"
4178   LIBS="$LIBPYTHON_LIBS $LIBS"
4179   AC_CHECK_HEADERS([Python.h],
4180     [
4181       AC_MSG_CHECKING([for libpython])
4182       AC_LINK_IFELSE([AC_LANG_PROGRAM(
4183           [[#include <Python.h>]],
4184           [[Py_Initialize();]])
4185         ],
4186         [with_libpython="yes"],
4187         [with_libpython="no"]
4188       )
4189       AC_MSG_RESULT([$with_libpython])
4190     ],
4191     [with_libpython="no"]
4192   )
4193   CPPFLAGS="$SAVE_CPPFLAGS"
4194   LDFLAGS="$SAVE_LDFLAGS"
4195   LIBS="$SAVE_LIBS"
4196 fi
4197 # }}} --with-libpython
4199 # --with-librabbitmq {{{
4200 with_librabbitmq_cppflags=""
4201 with_librabbitmq_ldflags=""
4202 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
4204         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4205         then
4206                 with_librabbitmq_cppflags="-I$withval/include"
4207                 with_librabbitmq_ldflags="-L$withval/lib"
4208                 with_librabbitmq="yes"
4209         else
4210                 with_librabbitmq="$withval"
4211         fi
4212 ],
4214         with_librabbitmq="yes"
4215 ])
4216 SAVE_CPPFLAGS="$CPPFLAGS"
4217 SAVE_LDFLAGS="$LDFLAGS"
4218 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4219 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4220 if test "x$with_librabbitmq" = "xyes"
4221 then
4222         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
4223 fi
4224 if test "x$with_librabbitmq" = "xyes"
4225 then
4226         # librabbitmq up to version 0.9.1 provides "library_errno", later
4227         # versions use "library_error". The library does not provide a version
4228         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
4229         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
4230                          [
4231 #if HAVE_STDLIB_H
4232 # include <stdlib.h>
4233 #endif
4234 #if HAVE_STDIO_H
4235 # include <stdio.h>
4236 #endif
4237 #if HAVE_STDINT_H
4238 # include <stdint.h>
4239 #endif
4240 #if HAVE_INTTYPES_H
4241 # include <inttypes.h>
4242 #endif
4243 #include <amqp.h>
4244                          ])
4245 fi
4246 if test "x$with_librabbitmq" = "xyes"
4247 then
4248         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
4249 fi
4250 if test "x$with_librabbitmq" = "xyes"
4251 then
4252         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
4253         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
4254         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
4255         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
4256         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
4257         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
4258         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
4259 fi
4260 CPPFLAGS="$SAVE_CPPFLAGS"
4261 LDFLAGS="$SAVE_LDFLAGS"
4262 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
4264 with_amqp_tcp_socket="no"
4265 if test "x$with_librabbitmq" = "xyes"
4266 then
4267         SAVE_CPPFLAGS="$CPPFLAGS"
4268         SAVE_LDFLAGS="$LDFLAGS"
4269         SAVE_LIBS="$LIBS"
4270         CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
4271         LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
4272         LIBS="-lrabbitmq"
4274         AC_CHECK_HEADERS(amqp_tcp_socket.h amqp_socket.h)
4275         AC_CHECK_FUNC(amqp_tcp_socket_new, [with_amqp_tcp_socket="yes"], [with_amqp_tcp_socket="no"])
4276         if test "x$with_amqp_tcp_socket" = "xyes"
4277         then
4278                 AC_DEFINE(HAVE_AMQP_TCP_SOCKET, 1,
4279                                 [Define if librabbitmq provides the new TCP socket interface.])
4280         fi
4282         AC_CHECK_DECLS(amqp_socket_close,
4283                                 [amqp_socket_close_decl="yes"], [amqp_socket_close_decl="no"],
4284                                 [[
4285 #include <amqp.h>
4286 #ifdef HAVE_AMQP_TCP_SOCKET_H
4287 # include <amqp_tcp_socket.h>
4288 #endif
4289 #ifdef HAVE_AMQP_SOCKET_H
4290 # include <amqp_socket.h>
4291 #endif
4292                                 ]])
4294         CPPFLAGS="$SAVE_CPPFLAGS"
4295         LDFLAGS="$SAVE_LDFLAGS"
4296         LIBS="$SAVE_LIBS"
4297 fi
4298 # }}}
4300 # --with-librdkafka {{{
4301 AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])],
4303   if test "x$withval" != "xno" && test "x$withval" != "xyes"
4304   then
4305     with_librdkafka_cppflags="-I$withval/include"
4306     with_librdkafka_ldflags="-L$withval/lib"
4307     with_librdkafka_rpath="$withval/lib"
4308     with_librdkafka="yes"
4309   else
4310     with_librdkafka="$withval"
4311   fi
4312 ],
4314   with_librdkafka="yes"
4315 ])
4316 SAVE_CPPFLAGS="$CPPFLAGS"
4317 SAVE_LDFLAGS="$LDFLAGS"
4319 CPPFLAGS="$CPPFLAGS $with_librdkafka_cppflags"
4320 LDFLAGS="$LDFLAGS $with_librdkafka_ldflags"
4322 if test "x$with_librdkafka" = "xyes"
4323 then
4324         AC_CHECK_HEADERS(librdkafka/rdkafka.h, [with_librdkafka="yes"], [with_librdkafka="no (librdkafka/rdkafka.h not found)"])
4325 fi
4327 if test "x$with_librdkafka" = "xyes"
4328 then
4329         AC_CHECK_LIB(rdkafka, rd_kafka_new, [with_librdkafka="yes"], [with_librdkafka="no (Symbol 'rd_kafka_new' not found)"])
4330   AC_CHECK_LIB(rdkafka, rd_kafka_conf_set_log_cb, [with_librdkafka_log_cb="yes"], [with_librdkafka_log_cb="no"])
4331   AC_CHECK_LIB(rdkafka, rd_kafka_set_logger, [with_librdkafka_logger="yes"], [with_librdkafka_logger="no"])
4332 fi
4333 if test "x$with_librdkafka" = "xyes"
4334 then
4335         BUILD_WITH_LIBRDKAFKA_CPPFLAGS="$with_librdkafka_cppflags"
4336         BUILD_WITH_LIBRDKAFKA_LDFLAGS="$with_librdkafka_ldflags"
4337         if test "x$with_librdkafka_rpath" != "x"
4338         then
4339                 BUILD_WITH_LIBRDKAFKA_LIBS="-Wl,-rpath,$with_librdkafka_rpath -lrdkafka"
4340         else
4341                 BUILD_WITH_LIBRDKAFKA_LIBS="-lrdkafka"
4342         fi
4343         AC_SUBST(BUILD_WITH_LIBRDKAFKA_CPPFLAGS)
4344         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LDFLAGS)
4345         AC_SUBST(BUILD_WITH_LIBRDKAFKA_LIBS)
4346         AC_DEFINE(HAVE_LIBRDKAFKA, 1, [Define if librdkafka is present and usable.])
4347   if test "x$with_librdkafka_log_cb" = "xyes"
4348   then
4349         AC_DEFINE(HAVE_LIBRDKAFKA_LOG_CB, 1, [Define if librdkafka log facility is present and usable.])
4350   fi
4351   if test "x$with_librdkafka_logger" = "xyes"
4352   then
4353         AC_DEFINE(HAVE_LIBRDKAFKA_LOGGER, 1, [Define if librdkafka log facility is present and usable.])
4354   fi
4355 fi
4356 CPPFLAGS="$SAVE_CPPFLAGS"
4357 LDFLAGS="$SAVE_LDFLAGS"
4358 AM_CONDITIONAL(BUILD_WITH_LIBRDKAFKA, test "x$with_librdkafka" = "xyes")
4360 # }}}
4362 # --with-librouteros {{{
4363 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
4365  if test "x$withval" = "xyes"
4366  then
4367          with_librouteros="yes"
4368  else if test "x$withval" = "xno"
4369  then
4370          with_librouteros="no"
4371  else
4372          with_librouteros="yes"
4373          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
4374          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
4375  fi; fi
4376 ],
4377 [with_librouteros="yes"])
4379 SAVE_CPPFLAGS="$CPPFLAGS"
4380 SAVE_LDFLAGS="$LDFLAGS"
4382 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
4383 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
4385 if test "x$with_librouteros" = "xyes"
4386 then
4387         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
4388         then
4389                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
4390         fi
4391         AC_CHECK_HEADERS(routeros_api.h,
4392         [with_librouteros="yes"],
4393         [with_librouteros="no (routeros_api.h not found)"])
4394 fi
4395 if test "x$with_librouteros" = "xyes"
4396 then
4397         if test "x$LIBROUTEROS_LDFLAGS" != "x"
4398         then
4399                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
4400         fi
4401         AC_CHECK_LIB(routeros, ros_interface,
4402         [with_librouteros="yes"],
4403         [with_librouteros="no (symbol 'ros_interface' not found)"])
4404 fi
4406 CPPFLAGS="$SAVE_CPPFLAGS"
4407 LDFLAGS="$SAVE_LDFLAGS"
4409 if test "x$with_librouteros" = "xyes"
4410 then
4411         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
4412         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
4413         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
4414         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
4415 fi
4416 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
4417 # }}}
4419 # --with-librrd {{{
4420 librrd_cflags=""
4421 librrd_ldflags=""
4422 librrd_threadsafe="no"
4423 librrd_rrdc_update="no"
4424 AC_ARG_WITH(librrd,
4425   [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
4426   [
4427     if test "x$withval" != "xno" && test "x$withval" != "xyes"
4428     then
4429       librrd_cflags="-I$withval/include"
4430       librrd_ldflags="-L$withval/lib"
4431       with_librrd="yes"
4432     else
4433       with_librrd="$withval"
4434     fi
4435   ],
4436   [with_librrd="yes"]
4439 if test "x$with_librrd" = "xyes"
4440 then
4441   SAVE_LDFLAGS="$LDFLAGS"
4442   LDFLAGS="$LDFLAGS $librrd_ldflags"
4443   PKG_CHECK_MODULES([RRD], [librrd >= 1.6.0],
4444     [
4445       AC_CHECK_LIB([rrd], [rrd_update_r],
4446         [librrd_threadsafe="yes"],
4447         [:]
4448       )
4449       AC_CHECK_LIB([rrd], [rrdc_update],
4450         [librrd_rrdc_update="yes"],
4451         [:]
4452       )
4453     ],[:]
4454   )
4455   LDFLAGS="$SAVE_LDFLAGS"
4457   SAVE_CPPFLAGS="$CPPFLAGS"
4458   CPPFLAGS="$CPPFLAGS $RRD_CFLAGS $librrd_cflags"
4460   AC_CHECK_HEADERS([rrd.h],, [with_librrd="no (rrd.h not found)"])
4462   CPPFLAGS="$SAVE_CPPFLAGS"
4463 fi
4465 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4466 then
4467   SAVE_LDFLAGS="$LDFLAGS"
4468   LDFLAGS="$LDFLAGS $librrd_ldflags"
4470   AC_CHECK_LIB([rrd_th], [rrd_update_r],
4471     [
4472       librrd_ldflags="$librrd_ldflags -lrrd_th"
4473       librrd_threadsafe="yes"
4474       AC_CHECK_LIB([rrd_th], [rrdc_update],
4475         [librrd_rrdc_update="yes"],
4476         [:],
4477       )
4478     ],
4479     [:]
4480   )
4481   LDFLAGS="$SAVE_LDFLAGS"
4482 fi
4484 if test "x$with_librrd" = "xyes" && test "x$librrd_threadsafe" = "xno"
4485 then
4486   SAVE_LDFLAGS="$LDFLAGS"
4487   LDFLAGS="$LDFLAGS $librrd_ldflags"
4489   AC_CHECK_LIB([rrd], [rrd_update],
4490     [
4491       librrd_ldflags="$librrd_ldflags -lrrd"
4492       AC_CHECK_LIB([rrd], [rrdc_update],
4493         [librrd_rrdc_update="yes"],
4494         [:]
4495       )
4496     ],
4497     [with_librrd="no (symbol 'rrd_update' not found)"]
4498   )
4499   LDFLAGS="$SAVE_LDFLAGS"
4500 fi
4502 if test "x$with_librrd" = "xyes"
4503 then
4504   BUILD_WITH_LIBRRD_CFLAGS="$RRD_CFLAGS $librrd_cflags"
4505   BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
4506   BUILD_WITH_LIBRRD_LIBS="$RRD_LIBS"
4507   AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
4508   AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
4509   AC_SUBST(BUILD_WITH_LIBRRD_LIBS)
4510 fi
4511 if test "x$librrd_threadsafe" = "xyes"
4512 then
4513   AC_DEFINE([HAVE_THREADSAFE_LIBRRD], [1],
4514     [Define to 1 if the rrd library is thread-safe]
4515   )
4516 fi
4517 # }}}
4519 # --with-libsensors {{{
4520 with_sensors_cflags=""
4521 with_sensors_ldflags=""
4522 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
4524         if test "x$withval" = "xno"
4525         then
4526                 with_libsensors="no"
4527         else
4528                 with_libsensors="yes"
4529                 if test "x$withval" != "xyes"
4530                 then
4531                         with_sensors_cflags="-I$withval/include"
4532                         with_sensors_ldflags="-L$withval/lib"
4533                         with_libsensors="yes"
4534                 fi
4535         fi
4536 ],
4538         if test "x$ac_system" = "xLinux"
4539         then
4540                 with_libsensors="yes"
4541         else
4542                 with_libsensors="no (Linux only library)"
4543         fi
4544 ])
4545 if test "x$with_libsensors" = "xyes"
4546 then
4547         SAVE_CPPFLAGS="$CPPFLAGS"
4548         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4550         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
4552         CPPFLAGS="$SAVE_CPPFLAGS"
4553 fi
4554 if test "x$with_libsensors" = "xyes"
4555 then
4556         SAVE_CPPFLAGS="$CPPFLAGS"
4557         SAVE_LDFLAGS="$LDFLAGS"
4558         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
4559         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
4561         AC_CHECK_LIB(sensors, sensors_init,
4562         [
4563                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
4564         ],
4565         [with_libsensors="no (libsensors not found)"])
4567         CPPFLAGS="$SAVE_CPPFLAGS"
4568         LDFLAGS="$SAVE_LDFLAGS"
4569 fi
4570 if test "x$with_libsensors" = "xyes"
4571 then
4572         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
4573         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
4574         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
4575         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
4576 fi
4577 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
4578 # }}}
4580 # libsigrok {{{
4581 AC_SUBST([LIBSIGROK_CFLAGS])
4582 AC_SUBST([LIBSIGROK_LIBS])
4583 PKG_CHECK_MODULES([LIBSIGROK], [libsigrok < 0.4],
4584   [with_libsigrok="yes"],
4585   [with_libsigrok="no (pkg-config could not find libsigrok)"]
4587 # }}}
4589 # --with-libstatgrab {{{
4590 with_libstatgrab_cflags=""
4591 with_libstatgrab_ldflags=""
4592 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
4594  if test "x$withval" != "xno" \
4595    && test "x$withval" != "xyes"
4596  then
4597    with_libstatgrab_cflags="-I$withval/include"
4598    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
4599    with_libstatgrab="yes"
4600    with_libstatgrab_pkg_config="no"
4601  else
4602    with_libstatgrab="$withval"
4603    with_libstatgrab_pkg_config="yes"
4604  fi
4605  ],
4607  with_libstatgrab="yes"
4608  with_libstatgrab_pkg_config="yes"
4609 ])
4611 if test "x$with_libstatgrab" = "xyes" \
4612   && test "x$with_libstatgrab_pkg_config" = "xyes"
4613 then
4614   AC_MSG_CHECKING([pkg-config for libstatgrab])
4615   temp_result="found"
4616   $PKG_CONFIG --exists libstatgrab 2>/dev/null
4617   if test "$?" != "0"
4618   then
4619     with_libstatgrab_pkg_config="no"
4620     with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
4621     temp_result="not found"
4622   fi
4623   AC_MSG_RESULT([$temp_result])
4624 fi
4626 if test "x$with_libstatgrab" = "xyes" \
4627   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4628   && test "x$with_libstatgrab_cflags" = "x"
4629 then
4630   AC_MSG_CHECKING([for libstatgrab CFLAGS])
4631   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
4632   if test "$?" = "0"
4633   then
4634     with_libstatgrab_cflags="$temp_result"
4635   else
4636     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
4637     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
4638   fi
4639   AC_MSG_RESULT([$temp_result])
4640 fi
4642 if test "x$with_libstatgrab" = "xyes" \
4643   && test "x$with_libstatgrab_pkg_config" = "xyes" \
4644   && test "x$with_libstatgrab_ldflags" = "x"
4645 then
4646   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
4647   temp_result="`$PKG_CONFIG --libs libstatgrab`"
4648   if test "$?" = "0"
4649   then
4650     with_libstatgrab_ldflags="$temp_result"
4651   else
4652     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
4653     temp_result="$PKG_CONFIG --libs libstatgrab failed"
4654   fi
4655   AC_MSG_RESULT([$temp_result])
4656 fi
4658 if test "x$with_libstatgrab" = "xyes"
4659 then
4660   SAVE_CPPFLAGS="$CPPFLAGS"
4661   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
4663   AC_CHECK_HEADERS(statgrab.h,
4664                    [with_libstatgrab="yes"],
4665                    [with_libstatgrab="no (statgrab.h not found)"])
4667   CPPFLAGS="$SAVE_CPPFLAGS"
4668 fi
4670 if test "x$with_libstatgrab" = "xyes"
4671 then
4672   SAVE_CFLAGS="$CFLAGS"
4673   SAVE_LDFLAGS="$LDFLAGS"
4675   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4676   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4678   AC_CHECK_LIB(statgrab, sg_init,
4679                [with_libstatgrab="yes"],
4680                [with_libstatgrab="no (symbol sg_init not found)"])
4682   CFLAGS="$SAVE_CFLAGS"
4683   LDFLAGS="$SAVE_LDFLAGS"
4684 fi
4686 if test "x$with_libstatgrab" = "xyes"
4687 then
4688   SAVE_CFLAGS="$CFLAGS"
4689   SAVE_LDFLAGS="$LDFLAGS"
4690   SAVE_LIBS="$LIBS"
4692   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
4693   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
4694   LIBS="-lstatgrab $LIBS"
4696   AC_CACHE_CHECK([if libstatgrab >= 0.90],
4697           [c_cv_have_libstatgrab_0_90],
4698           AC_LINK_IFELSE([AC_LANG_PROGRAM(
4699 [[[
4700 #include <stdio.h>
4701 #include <statgrab.h>
4702 ]]],
4703 [[[
4704       if (sg_init()) return 0;
4705 ]]]
4706     )],
4707     [c_cv_have_libstatgrab_0_90="no"],
4708     [c_cv_have_libstatgrab_0_90="yes"]
4709           )
4710   )
4712   CFLAGS="$SAVE_CFLAGS"
4713   LDFLAGS="$SAVE_LDFLAGS"
4714   LIBS="$SAVE_LIBS"
4715 fi
4717 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
4718 if test "x$with_libstatgrab" = "xyes"
4719 then
4720   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
4721   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
4722   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
4723   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
4724   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
4725   if test "x$c_cv_have_libstatgrab_0_90" = "xyes"
4726   then
4727         AC_DEFINE(HAVE_LIBSTATGRAB_0_90, 1, [Define to 1 if libstatgrab version >= 0.90])
4728   fi
4729 fi
4730 # }}}
4732 # --with-libtokyotyrant {{{
4733 with_libtokyotyrant_cppflags=""
4734 with_libtokyotyrant_ldflags=""
4735 with_libtokyotyrant_libs=""
4736 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
4738   if test "x$withval" = "xno"
4739   then
4740     with_libtokyotyrant="no"
4741   else if test "x$withval" = "xyes"
4742   then
4743     with_libtokyotyrant="yes"
4744   else
4745     with_libtokyotyrant_cppflags="-I$withval/include"
4746     with_libtokyotyrant_ldflags="-L$withval/include"
4747     with_libtokyotyrant_libs="-ltokyotyrant"
4748     with_libtokyotyrant="yes"
4749   fi; fi
4750 ],
4752   with_libtokyotyrant="yes"
4753 ])
4755 if test "x$with_libtokyotyrant" = "xyes"
4756 then
4757   if $PKG_CONFIG --exists tokyotyrant
4758   then
4759     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
4760     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `$PKG_CONFIG --libs-only-L tokyotyrant`"
4761     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `$PKG_CONFIG --libs-only-l tokyotyrant`"
4762   fi
4763 fi
4765 SAVE_CPPFLAGS="$CPPFLAGS"
4766 SAVE_LDFLAGS="$LDFLAGS"
4767 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
4768 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
4770 if test "x$with_libtokyotyrant" = "xyes"
4771 then
4772   AC_CHECK_HEADERS(tcrdb.h,
4773   [
4774           AC_DEFINE(HAVE_TCRDB_H, 1,
4775                     [Define to 1 if you have the <tcrdb.h> header file.])
4776   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
4777 fi
4779 if test "x$with_libtokyotyrant" = "xyes"
4780 then
4781   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4782   [
4783           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4784                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4785   ],
4786   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4787   [$with_libtokyotyrant_libs])
4788 fi
4790 CPPFLAGS="$SAVE_CPPFLAGS"
4791 LDFLAGS="$SAVE_LDFLAGS"
4793 if test "x$with_libtokyotyrant" = "xyes"
4794 then
4795   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4796   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4797   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4798   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4799   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4800   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4801 fi
4802 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4803 # }}}
4805 # --with-libudev {{{
4806 with_libudev_cflags=""
4807 with_libudev_ldflags=""
4808 AC_ARG_WITH(libudev, [AS_HELP_STRING([--with-libudev@<:@=PREFIX@:>@], [Path to libudev.])],
4810         if test "x$withval" = "xno"
4811         then
4812                 with_libudev="no"
4813         else
4814                 with_libudev="yes"
4815                 if test "x$withval" != "xyes"
4816                 then
4817                         with_libudev_cflags="-I$withval/include"
4818                         with_libudev_ldflags="-L$withval/lib"
4819                         with_libudev="yes"
4820                 fi
4821         fi
4822 ],
4824         if test "x$ac_system" = "xLinux"
4825         then
4826                 with_libudev="yes"
4827         else
4828                 with_libudev="no (Linux only library)"
4829         fi
4830 ])
4831 if test "x$with_libudev" = "xyes"
4832 then
4833         SAVE_CPPFLAGS="$CPPFLAGS"
4834         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4836         AC_CHECK_HEADERS(libudev.h, [], [with_libudev="no (libudev.h not found)"])
4838         CPPFLAGS="$SAVE_CPPFLAGS"
4839 fi
4840 if test "x$with_libudev" = "xyes"
4841 then
4842         SAVE_CPPFLAGS="$CPPFLAGS"
4843         SAVE_LDFLAGS="$LDFLAGS"
4844         CPPFLAGS="$CPPFLAGS $with_libudev_cflags"
4845         LDFLAGS="$LDFLAGS $with_libudev_ldflags"
4847         AC_CHECK_LIB(udev, udev_new,
4848         [
4849                 AC_DEFINE(HAVE_LIBUDEV, 1, [Define to 1 if you have the udev library (-ludev).])
4850         ],
4851         [with_libudev="no (libudev not found)"])
4853         CPPFLAGS="$SAVE_CPPFLAGS"
4854         LDFLAGS="$SAVE_LDFLAGS"
4855 fi
4856 if test "x$with_libudev" = "xyes"
4857 then
4858         BUILD_WITH_LIBUDEV_CFLAGS="$with_libudev_cflags"
4859         BUILD_WITH_LIBUDEV_LDFLAGS="$with_libudev_ldflags"
4860         BUILD_WITH_LIBUDEV_LIBS="-ludev"
4861         AC_SUBST(BUILD_WITH_LIBUDEV_CFLAGS)
4862         AC_SUBST(BUILD_WITH_LIBUDEV_LDFLAGS)
4863         AC_SUBST(BUILD_WITH_LIBUDEV_LIBS)
4864 fi
4865 AM_CONDITIONAL(BUILD_WITH_LIBUDEV, test "x$with_libudev" = "xyes")
4866 # }}}
4868 # --with-libupsclient {{{
4869 with_libupsclient_config=""
4870 with_libupsclient_cflags=""
4871 with_libupsclient_libs=""
4872 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4874         if test "x$withval" = "xno"
4875         then
4876                 with_libupsclient="no"
4877         else if test "x$withval" = "xyes"
4878         then
4879                 with_libupsclient="use_pkgconfig"
4880         else
4881                 if test -x "$withval"
4882                 then
4883                         with_libupsclient_config="$withval"
4884                         with_libupsclient="use_libupsclient_config"
4885                 else if test -x "$withval/bin/libupsclient-config"
4886                 then
4887                         with_libupsclient_config="$withval/bin/libupsclient-config"
4888                         with_libupsclient="use_libupsclient_config"
4889                 else
4890                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4891                         with_libupsclient_cflags="-I$withval/include"
4892                         with_libupsclient_libs="-L$withval/lib -lupsclient"
4893                         with_libupsclient="yes"
4894                 fi; fi
4895         fi; fi
4896 ],
4897 [with_libupsclient="use_pkgconfig"])
4899 # configure using libupsclient-config
4900 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4901 then
4902         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4903         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4904         if test $? -ne 0
4905         then
4906                 with_libupsclient="no ($with_libupsclient_config failed)"
4907         fi
4908         with_libupsclient_libs="`$with_libupsclient_config --libs`"
4909         if test $? -ne 0
4910         then
4911                 with_libupsclient="no ($with_libupsclient_config failed)"
4912         fi
4913 fi
4914 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4915 then
4916         with_libupsclient="yes"
4917 fi
4919 # configure using pkg-config
4920 if test "x$with_libupsclient" = "xuse_pkgconfig"
4921 then
4922         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4923         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4924         if test $? -ne 0
4925         then
4926                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4927         fi
4928 fi
4929 if test "x$with_libupsclient" = "xuse_pkgconfig"
4930 then
4931         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4932         if test $? -ne 0
4933         then
4934                 with_libupsclient="no ($PKG_CONFIG failed)"
4935         fi
4936         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4937         if test $? -ne 0
4938         then
4939                 with_libupsclient="no ($PKG_CONFIG failed)"
4940         fi
4941 fi
4942 if test "x$with_libupsclient" = "xuse_pkgconfig"
4943 then
4944         with_libupsclient="yes"
4945 fi
4947 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4948 # the actual checks.
4949 if test "x$with_libupsclient" = "xyes"
4950 then
4951         SAVE_CPPFLAGS="$CPPFLAGS"
4952         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4954         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4956         CPPFLAGS="$SAVE_CPPFLAGS"
4957 fi
4958 if test "x$with_libupsclient" = "xyes"
4959 then
4960         SAVE_CPPFLAGS="$CPPFLAGS"
4961         SAVE_LDFLAGS="$LDFLAGS"
4963         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4964         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4966         AC_CHECK_LIB(upsclient, upscli_connect,
4967                      [with_libupsclient="yes"],
4968                      [with_libupsclient="no (symbol upscli_connect not found)"])
4970         CPPFLAGS="$SAVE_CPPFLAGS"
4971         LDFLAGS="$SAVE_LDFLAGS"
4972 fi
4973 if test "x$with_libupsclient" = "xyes"
4974 then
4975         SAVE_CPPFLAGS="$CPPFLAGS"
4976         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4978         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4979 [#include <stdlib.h>
4980 #include <stdio.h>
4981 #include <upsclient.h>])
4983         CPPFLAGS="$SAVE_CPPFLAGS"
4984 fi
4985 if test "x$with_libupsclient" = "xyes"
4986 then
4987         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4988         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4989         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4990         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4991 fi
4992 # }}}
4994 # --with-libxenctrl {{{
4995 with_libxenctrl_cppflags=""
4996 with_libxenctrl_ldflags=""
4997 AC_ARG_WITH(libxenctrl, [AS_HELP_STRING([--with-libxenctrl@<:@=PREFIX@:>@], [Path to libxenctrl.])],
4999         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5000         then
5001                 with_libxenctrl_cppflags="-I$withval/include"
5002                 with_libxenctrl_ldflags="-L$withval/lib"
5003                 with_libxenctrl="yes"
5004         else
5005                 with_libxenctrl="$withval"
5006         fi
5007 ],
5009         with_libxenctrl="yes"
5010 ])
5011 if test "x$with_libxenctrl" = "xyes"
5012 then
5013         SAVE_CPPFLAGS="$CPPFLAGS"
5014         CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
5016         AC_CHECK_HEADERS(xenctrl.h, [with_libxenctrl="yes"], [with_libxenctrl="no (xenctrl.h not found)"])
5018         CPPFLAGS="$SAVE_CPPFLAGS"
5019 fi
5020 if test "x$with_libxenctrl" = "xyes"
5021 then
5022         SAVE_CPPFLAGS="$CPPFLAGS"
5023         SAVE_LDFLAGS="$LDFLAGS"
5024         CPPFLAGS="$CPPFLAGS $with_libxenctrl_cppflags"
5025         LDFLAGS="$LDFLAGS $with_libxenctrl_ldflags"
5027         #Xen versions older than 3.4 has no xc_getcpuinfo()
5028         AC_CHECK_LIB(xenctrl, xc_getcpuinfo, [with_libxenctrl="yes"], [with_libxenctrl="no (symbol 'xc_getcpuinfo' not found)"], [])
5030         CPPFLAGS="$SAVE_CPPFLAGS"
5031         LDFLAGS="$SAVE_LDFLAGS"
5032         LIBXENCTL_CPPFLAGS="$with_libxenctl_cppflags"
5033         LIBXENCTL_LDFLAGS="$with_libxenctl_ldflags"
5034         AC_SUBST(LIBXENCTL_CPPFLAGS)
5035         AC_SUBST(LIBXENCTL_LDFLAGS)
5036 fi
5037 # }}}
5039 # --with-libxmms {{{
5040 with_xmms_config="xmms-config"
5041 with_xmms_cflags=""
5042 with_xmms_libs=""
5043 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
5045         if test "x$withval" != "xno" \
5046                 && test "x$withval" != "xyes"
5047         then
5048                 if test -f "$withval" && test -x "$withval";
5049                 then
5050                         with_xmms_config="$withval"
5051                 else if test -x "$withval/bin/xmms-config"
5052                 then
5053                         with_xmms_config="$withval/bin/xmms-config"
5054                 fi; fi
5055                 with_libxmms="yes"
5056         else if test "x$withval" = "xno"
5057         then
5058                 with_libxmms="no"
5059         else
5060                 with_libxmms="yes"
5061         fi; fi
5062 ],
5064         with_libxmms="yes"
5065 ])
5066 if test "x$with_libxmms" = "xyes"
5067 then
5068         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
5069         xmms_config_status=$?
5071         if test $xmms_config_status -ne 0
5072         then
5073                 with_libxmms="no"
5074         fi
5075 fi
5076 if test "x$with_libxmms" = "xyes"
5077 then
5078         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
5079         xmms_config_status=$?
5081         if test $xmms_config_status -ne 0
5082         then
5083                 with_libxmms="no"
5084         fi
5085 fi
5086 if test "x$with_libxmms" = "xyes"
5087 then
5088         AC_CHECK_LIB(xmms, xmms_remote_get_info,
5089         [
5090                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
5091                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
5092                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
5093                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
5094         ],
5095         [
5096                 with_libxmms="no"
5097         ],
5098         [$with_xmms_libs])
5099 fi
5100 with_libxmms_numeric=0
5101 if test "x$with_libxmms" = "xyes"
5102 then
5103         with_libxmms_numeric=1
5104 fi
5105 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
5106 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
5107 # }}}
5109 # --with-libyajl {{{
5110 with_libyajl_cppflags=""
5111 with_libyajl_ldflags=""
5112 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
5114         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5115         then
5116                 with_libyajl_cppflags="-I$withval/include"
5117                 with_libyajl_ldflags="-L$withval/lib"
5118                 with_libyajl="yes"
5119         else
5120                 with_libyajl="$withval"
5121         fi
5122 ],
5124         with_libyajl="yes"
5125 ])
5126 if test "x$with_libyajl" = "xyes"
5127 then
5128         SAVE_CPPFLAGS="$CPPFLAGS"
5129         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5131         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
5132         AC_CHECK_HEADERS(yajl/yajl_version.h)
5134         CPPFLAGS="$SAVE_CPPFLAGS"
5135 fi
5136 if test "x$with_libyajl" = "xyes"
5137 then
5138         SAVE_CPPFLAGS="$CPPFLAGS"
5139         SAVE_LDFLAGS="$LDFLAGS"
5140         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
5141         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
5143         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
5145         CPPFLAGS="$SAVE_CPPFLAGS"
5146         LDFLAGS="$SAVE_LDFLAGS"
5147 fi
5148 if test "x$with_libyajl" = "xyes"
5149 then
5150         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
5151         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
5152         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
5153         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
5154         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
5155         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
5156         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
5157 fi
5158 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
5159 # }}}
5161 # --with-mic {{{
5162 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
5163 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
5164 with_mic_libs=""
5165 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
5167         if test "x$withval" = "xno"
5168         then
5169                 with_mic="no"
5170         else if test "x$withval" = "xyes"
5171         then
5172                 with_mic="yes"
5173         else if test -d "$with_mic/lib"
5174         then
5175                 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
5176                 with_mic_cflags="-I$withval/include"
5177                 with_mic_ldpath="-L$withval/lib/Linux"
5178                 with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"
5179                 with_mic="yes"
5180         fi; fi; fi
5181 ],
5182 [with_mic="yes"])
5183 if test "x$with_mic" = "xyes"
5184 then
5185         SAVE_CPPFLAGS="$CPPFLAGS"
5186         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5187         AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
5188         CPPFLAGS="$SAVE_CPPFLAGS"
5189 fi
5190 if test "x$with_mic" = "xyes"
5191 then
5192         SAVE_CPPFLAGS="$CPPFLAGS"
5193         SAVE_LDFLAGS="$LDFLAGS"
5195         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
5196         LDFLAGS="$LDFLAGS $with_mic_ldpath"
5198         AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
5199                         [with_mic_ldpath="$with_mic_ldpath"
5200                         with_mic_libs="$PTHREAD_LIBS -lMicAccessSDK -lscif"],
5201                         [with_mic="no (symbol MicInitAPI not found)"],[$PTHREAD_LIBS -lscif])
5203         CPPFLAGS="$SAVE_CPPFLAGS"
5204         LDFLAGS="$SAVE_LDFLAGS"
5205 fi
5207 if test "x$with_mic" = "xyes"
5208 then
5209         BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
5210         BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
5211         BUILD_WITH_MIC_LDADD="$with_mic_libs"
5212         AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
5213         AC_SUBST(BUILD_WITH_MIC_LIBPATH)
5214         AC_SUBST(BUILD_WITH_MIC_LDADD)
5215 fi
5216 #}}}
5218 # --with-libvarnish {{{
5219 with_libvarnish_cppflags=""
5220 with_libvarnish_cflags=""
5221 with_libvarnish_libs=""
5222 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
5224         if test "x$withval" = "xno"
5225         then
5226                 with_libvarnish="no"
5227         else if test "x$withval" = "xyes"
5228         then
5229                 with_libvarnish="use_pkgconfig"
5230         else if test -d "$with_libvarnish/lib"
5231         then
5232                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
5233                 with_libvarnish_cflags="-I$withval/include"
5234                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
5235                 with_libvarnish="yes"
5236         fi; fi; fi
5237 ],
5238 [with_libvarnish="use_pkgconfig"])
5240 # configure using pkg-config
5241 if test "x$with_libvarnish" = "xuse_pkgconfig"
5242 then
5243         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
5244         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
5245         if test $? -ne 0
5246         then
5247                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
5248         fi
5249 fi
5250 if test "x$with_libvarnish" = "xuse_pkgconfig"
5251 then
5252         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
5253         if test $? -ne 0
5254         then
5255                 with_libvarnish="no ($PKG_CONFIG failed)"
5256         fi
5257         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
5258         if test $? -ne 0
5259         then
5260                 with_libvarnish="no ($PKG_CONFIG failed)"
5261         fi
5262 fi
5263 if test "x$with_libvarnish" = "xuse_pkgconfig"
5264 then
5265         with_libvarnish="yes"
5266 fi
5268 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
5269 # the actual checks.
5270 if test "x$with_libvarnish" = "xyes"
5271 then
5272         SAVE_CPPFLAGS="$CPPFLAGS"
5274         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
5276         AC_CHECK_HEADERS(vapi/vsc.h,
5277                 [AC_DEFINE([HAVE_VARNISH_V4], [1], [Varnish 4 API support])],
5278                 [AC_CHECK_HEADERS(vsc.h,
5279                         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
5280                         [AC_CHECK_HEADERS(varnishapi.h,
5281                                 [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])],
5282                                 [with_libvarnish="no (found none of the varnish header files)"])])])
5284         CPPFLAGS="$SAVE_CPPFLAGS"
5285 fi
5286 if test "x$with_libvarnish" = "xyes"
5287 then
5288         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
5289         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
5290         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
5291         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
5292 fi
5293 # }}}
5295 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
5296 with_libxml2="no (pkg-config isn't available)"
5297 with_libxml2_cflags=""
5298 with_libxml2_ldflags=""
5299 with_libvirt="no (pkg-config isn't available)"
5300 with_libvirt_cflags=""
5301 with_libvirt_ldflags=""
5302 $PKG_CONFIG --exists 'libxml-2.0' 2>/dev/null
5303 if test "$?" = "0"
5304 then
5305         with_libxml2="yes"
5306 else
5307         with_libxml2="no (pkg-config doesn't know libxml-2.0)"
5308 fi
5310 $PKG_CONFIG --exists libvirt 2>/dev/null
5311 if test "$?" = "0"
5312 then
5313         with_libvirt="yes"
5314 else
5315         with_libvirt="no (pkg-config doesn't know libvirt)"
5316 fi
5317 if test "x$with_libxml2" = "xyes"
5318 then
5319         with_libxml2_cflags="`$PKG_CONFIG --cflags libxml-2.0`"
5320         if test $? -ne 0
5321         then
5322                 with_libxml2="no"
5323         fi
5324         with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
5325         if test $? -ne 0
5326         then
5327                 with_libxml2="no"
5328         fi
5329 fi
5330 if test "x$with_libxml2" = "xyes"
5331 then
5332         SAVE_CPPFLAGS="$CPPFLAGS"
5333         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
5335         AC_CHECK_HEADERS(libxml/parser.h, [],
5336                       [with_libxml2="no (libxml/parser.h not found)"])
5338         CPPFLAGS="$SAVE_CPPFLAGS"
5339 fi
5340 if test "x$with_libxml2" = "xyes"
5341 then
5342         SAVE_CFLAGS="$CFLAGS"
5343         SAVE_LDFLAGS="$LDFLAGS"
5345         CFLAGS="$CFLAGS $with_libxml2_cflags"
5346         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
5348         AC_CHECK_LIB(xml2, xmlXPathEval,
5349                      [with_libxml2="yes"],
5350                      [with_libxml2="no (symbol xmlXPathEval not found)"])
5352         CFLAGS="$SAVE_CFLAGS"
5353         LDFLAGS="$SAVE_LDFLAGS"
5354 fi
5355 dnl Add the right compiler flags and libraries.
5356 if test "x$with_libxml2" = "xyes"; then
5357         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
5358         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
5359         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
5360         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
5361 fi
5362 if test "x$with_libvirt" = "xyes"
5363 then
5364         with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
5365         if test $? -ne 0
5366         then
5367                 with_libvirt="no"
5368         fi
5369         with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
5370         if test $? -ne 0
5371         then
5372                 with_libvirt="no"
5373         fi
5374 fi
5375 if test "x$with_libvirt" = "xyes"
5376 then
5377         SAVE_CPPFLAGS="$CPPFLAGS"
5378         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
5380         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
5381                       [with_libvirt="no (libvirt/libvirt.h not found)"])
5383         CPPFLAGS="$SAVE_CPPFLAGS"
5384 fi
5385 if test "x$with_libvirt" = "xyes"
5386 then
5387         SAVE_CFLAGS="$CFLAGS"
5388         SAVE_LDFLAGS="$LDFLAGS"
5390         CFLAGS="$CFLAGS $with_libvirt_cflags"
5391         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
5393         AC_CHECK_LIB(virt, virDomainBlockStats,
5394                      [with_libvirt="yes"],
5395                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
5397         CFLAGS="$SAVE_CFLAGS"
5398         LDFLAGS="$SAVE_LDFLAGS"
5399 fi
5400 dnl Add the right compiler flags and libraries.
5401 if test "x$with_libvirt" = "xyes"; then
5402         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
5403         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
5404         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
5405         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
5406 fi
5407 # }}}
5409 # $PKG_CONFIG --exists OpenIPMIpthread {{{
5410 with_libopenipmipthread="yes"
5411 with_libopenipmipthread_cflags=""
5412 with_libopenipmipthread_libs=""
5414 if test "x$with_libopenipmipthread" = "xyes"
5415 then
5416         AC_MSG_CHECKING([for libOpenIPMIpthread])
5417         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
5418         if test "$?" != "0"
5419         then
5420                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
5421         fi
5422         AC_MSG_RESULT([$with_libopenipmipthread])
5423 fi
5425 if test "x$with_libopenipmipthread" = "xyes"
5426 then
5427         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
5428         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
5429         if test "$?" = "0"
5430         then
5431                 with_libopenipmipthread_cflags="$temp_result"
5432         else
5433                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
5434                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
5435         fi
5436         AC_MSG_RESULT([$temp_result])
5437 fi
5439 if test "x$with_libopenipmipthread" = "xyes"
5440 then
5441         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
5442         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
5443         if test "$?" = "0"
5444         then
5445                 with_libopenipmipthread_ldflags="$temp_result"
5446         else
5447                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
5448                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
5449         fi
5450         AC_MSG_RESULT([$temp_result])
5451 fi
5453 if test "x$with_libopenipmipthread" = "xyes"
5454 then
5455         SAVE_CPPFLAGS="$CPPFLAGS"
5456         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
5458         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
5459                          [with_libopenipmipthread="yes"],
5460                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
5461 [#include <OpenIPMI/ipmiif.h>
5462 #include <OpenIPMI/ipmi_err.h>
5463 #include <OpenIPMI/ipmi_posix.h>
5464 #include <OpenIPMI/ipmi_conn.h>
5465 ])
5467         CPPFLAGS="$SAVE_CPPFLAGS"
5468 fi
5470 if test "x$with_libopenipmipthread" = "xyes"
5471 then
5472         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
5473         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
5474         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
5475         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
5476 fi
5477 # }}}
5479 # --with-libatasmart {{{
5480 with_libatasmart_cppflags=""
5481 with_libatasmart_ldflags=""
5482 AC_ARG_WITH(libatasmart, [AS_HELP_STRING([--with-libatasmart@<:@=PREFIX@:>@], [Path to libatasmart.])],
5484         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5485         then
5486                 with_libatasmart_cppflags="-I$withval/include"
5487                 with_libatasmart_ldflags="-L$withval/lib"
5488                 with_libatasmart="yes"
5489         else
5490                 with_libatasmart="$withval"
5491         fi
5492 ],
5494         if test "x$ac_system" = "xLinux"
5495         then
5496                 with_libatasmart="yes"
5497         else
5498                 with_libatasmart="no (Linux only library)"
5499         fi
5500 ])
5501 if test "x$with_libatasmart" = "xyes"
5502 then
5503         SAVE_CPPFLAGS="$CPPFLAGS"
5504         CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5506         AC_CHECK_HEADERS(atasmart.h, [with_libatasmart="yes"], [with_libatasmart="no (atasmart.h not found)"])
5508         CPPFLAGS="$SAVE_CPPFLAGS"
5509 fi
5510 if test "x$with_libatasmart" = "xyes"
5511 then
5512         SAVE_CPPFLAGS="$CPPFLAGS"
5513         SAVE_LDFLAGS="$LDFLAGS"
5514         CPPFLAGS="$CPPFLAGS $with_libatasmart_cppflags"
5515         LDFLAGS="$LDFLAGS $with_libatasmart_ldflags"
5517         AC_CHECK_LIB(atasmart, sk_disk_open, [with_libatasmart="yes"], [with_libatasmart="no (Symbol 'sk_disk_open' not found)"])
5519         CPPFLAGS="$SAVE_CPPFLAGS"
5520         LDFLAGS="$SAVE_LDFLAGS"
5521 fi
5522 if test "x$with_libatasmart" = "xyes"
5523 then
5524         BUILD_WITH_LIBATASMART_CPPFLAGS="$with_libatasmart_cppflags"
5525         BUILD_WITH_LIBATASMART_LDFLAGS="$with_libatasmart_ldflags"
5526         BUILD_WITH_LIBATASMART_LIBS="-latasmart"
5527         AC_SUBST(BUILD_WITH_LIBATASMART_CPPFLAGS)
5528         AC_SUBST(BUILD_WITH_LIBATASMART_LDFLAGS)
5529         AC_SUBST(BUILD_WITH_LIBATASMART_LIBS)
5530         AC_DEFINE(HAVE_LIBATASMART, 1, [Define if libatasmart is present and usable.])
5531 fi
5532 AM_CONDITIONAL(BUILD_WITH_LIBATASMART, test "x$with_libatasmart" = "xyes")
5533 # }}}
5535 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
5536                 [with_libnotify="yes"],
5537                 [with_libnotify="no (pkg-config doesn't know libnotify)"]
5540 PKG_CHECK_MODULES([LIBRIEMANN_CLIENT], [riemann-client >= 1.8.0],
5541  [with_libriemann_client="yes"],
5542  [with_libriemann_client="no (pkg-config doesn't know libriemann-client)"])
5544 # Check for enabled/disabled features
5547 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
5548 # ------------------------------------------------------------
5549 dnl
5550 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
5551 dnl
5552 AC_DEFUN(
5553         [AC_COLLECTD],
5554         [
5555         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
5556         m4_if(
5557                 [$2],
5558                 [enable],
5559                 [dnl
5560                 m4_define([EnDis],[disabled])dnl
5561                 m4_define([YesNo],[no])dnl
5562                 ],dnl
5563                 [m4_if(
5564                         [$2],
5565                         [disable],
5566                         [dnl
5567                         m4_define([EnDis],[enabled])dnl
5568                         m4_define([YesNo],[yes])dnl
5569                         ],
5570                         [dnl
5571                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
5572                         ]dnl
5573                 )]dnl
5574         )dnl
5575         m4_if([$3], [feature], [],
5576                 [m4_if(
5577                         [$3], [module], [],
5578                         [dnl
5579                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
5580                         ]dnl
5581                 )]dnl
5582         )dnl
5583         AC_ARG_ENABLE(
5584                 [$1],
5585                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
5586                 [],
5587                 enable_$1='[YesNo]'dnl
5588         )# AC_ARG_ENABLE
5589 if test "x$enable_$1" = "xno"
5590 then
5591         collectd_$1=0
5592 else
5593         if test "x$enable_$1" = "xyes"
5594         then
5595                 collectd_$1=1
5596         else
5597                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
5598                 collectd_$1=1
5599                 enable_$1='yes'
5600         fi
5601 fi
5602         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
5603         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
5604         ]dnl
5605 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
5607 # AC_PLUGIN(name, default, info)
5608 # ------------------------------------------------------------
5609 dnl
5610 AC_DEFUN(
5611   [AC_PLUGIN],
5612   [
5613     enable_plugin="no"
5614     force="no"
5615     AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1],[$3]),
5616     [
5617      if test "x$enableval" = "xyes"
5618      then
5619              enable_plugin="yes"
5620      else if test "x$enableval" = "xforce"
5621      then
5622              enable_plugin="yes"
5623              force="yes"
5624      else
5625              enable_plugin="no (disabled on command line)"
5626      fi; fi
5627     ],
5628     [
5629          if test "x$enable_all_plugins" = "xauto"
5630          then
5631              if test "x$2" = "xyes"
5632              then
5633                      enable_plugin="yes"
5634              else
5635                      enable_plugin="$2"
5636              fi
5637          else
5638              enable_plugin="$enable_all_plugins"
5639          fi
5640     ])
5641     if test "x$enable_plugin" = "xyes"
5642     then
5643             if test "x$2" = "xyes" || test "x$force" = "xyes"
5644             then
5645                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
5646                     if test "x$2" != "xyes"
5647                     then
5648                             dependency_warning="yes"
5649                     fi
5650             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
5651                     dependency_error="yes"
5652                     enable_plugin="$2 (dependency error)"
5653             fi
5654     fi
5655     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
5656     enable_$1="$enable_plugin"
5657   ]
5658 )# AC_PLUGIN(name, default, info)
5660 m4_divert_once([HELP_ENABLE], [
5661 collectd features:])
5662 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
5663 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
5664 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
5665 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
5666 AC_COLLECTD([werror],    [disable], [feature], [building with -Werror])
5668 dependency_warning="no"
5669 dependency_error="no"
5671 plugin_ascent="no"
5672 plugin_barometer="no"
5673 plugin_battery="no"
5674 plugin_bind="no"
5675 plugin_ceph="no"
5676 plugin_cgroups="no"
5677 plugin_conntrack="no"
5678 plugin_contextswitch="no"
5679 plugin_cpu="no"
5680 plugin_cpufreq="no"
5681 plugin_cpusleep="no"
5682 plugin_curl_json="no"
5683 plugin_curl_xml="no"
5684 plugin_df="no"
5685 plugin_disk="no"
5686 plugin_drbd="no"
5687 plugin_entropy="no"
5688 plugin_ethstat="no"
5689 plugin_fhcount="no"
5690 plugin_fscache="no"
5691 plugin_gps="no"
5692 plugin_grpc="no"
5693 plugin_interface="no"
5694 plugin_ipmi="no"
5695 plugin_ipvs="no"
5696 plugin_irq="no"
5697 plugin_load="no"
5698 plugin_log_logstash="no"
5699 plugin_memory="no"
5700 plugin_multimeter="no"
5701 plugin_nfs="no"
5702 plugin_numa="no"
5703 plugin_perl="no"
5704 plugin_pinba="no"
5705 plugin_processes="no"
5706 plugin_protocols="no"
5707 plugin_python="no"
5708 plugin_serial="no"
5709 plugin_smart="no"
5710 plugin_swap="no"
5711 plugin_tape="no"
5712 plugin_tcpconns="no"
5713 plugin_ted="no"
5714 plugin_thermal="no"
5715 plugin_turbostat="no"
5716 plugin_uptime="no"
5717 plugin_users="no"
5718 plugin_virt="no"
5719 plugin_vmem="no"
5720 plugin_vserver="no"
5721 plugin_wireless="no"
5722 plugin_xencpu="no"
5723 plugin_zfs_arc="no"
5724 plugin_zone="no"
5725 plugin_zookeeper="no"
5727 # Linux
5728 if test "x$ac_system" = "xLinux"
5729 then
5730         plugin_battery="yes"
5731         plugin_cgroups="yes"
5732         plugin_conntrack="yes"
5733         plugin_contextswitch="yes"
5734         plugin_cpu="yes"
5735         plugin_cpufreq="yes"
5736         plugin_disk="yes"
5737         plugin_drbd="yes"
5738         plugin_entropy="yes"
5739         plugin_fhcount="yes"
5740         plugin_fscache="yes"
5741         plugin_interface="yes"
5742         plugin_ipc="yes"
5743         plugin_irq="yes"
5744         plugin_load="yes"
5745         plugin_lvm="yes"
5746         plugin_memory="yes"
5747         plugin_nfs="yes"
5748         plugin_numa="yes"
5749         plugin_processes="yes"
5750         plugin_protocols="yes"
5751         plugin_serial="yes"
5752         plugin_swap="yes"
5753         plugin_tcpconns="yes"
5754         plugin_thermal="yes"
5755         plugin_uptime="yes"
5756         plugin_vmem="yes"
5757         plugin_vserver="yes"
5758         plugin_wireless="yes"
5759         plugin_zfs_arc="yes"
5761         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
5762         then
5763                 plugin_ipvs="yes"
5764         fi
5765         if test "x$c_cv_have_usable_asm_msrindex_h" = "xyes" && test "x$have_cpuid_h" = "xyes"
5766         then
5767                 plugin_turbostat="yes"
5768         fi
5769         
5770         if test "x$c_cv_have_clock_boottime_monotonic" = "xyes"
5771         then
5772                 plugin_cpusleep="yes"
5773         fi
5774 fi
5776 if test "x$ac_system" = "xOpenBSD"
5777 then
5778         plugin_tcpconns="yes"
5779 fi
5781 if test "x$ac_system" = "xNetBSD"
5782 then
5783         plugin_disk="yes"
5784         plugin_entropy="yes"
5785         plugin_irq="yes"
5786         plugin_processes="yes"
5787 fi
5789 # Mac OS X devices
5790 if test "x$with_libiokit" = "xyes"
5791 then
5792         plugin_battery="yes"
5793         plugin_disk="yes"
5794 fi
5796 # AIX
5798 if test "x$ac_system" = "xAIX"
5799 then
5800         plugin_ipc="yes"
5801         plugin_tcpconns="yes"
5802 fi
5804 # FreeBSD
5806 if test "x$ac_system" = "xFreeBSD"
5807 then
5808         plugin_disk="yes"
5809         plugin_zfs_arc="yes"
5810 fi
5813 if test "x$with_perfstat" = "xyes"
5814 then
5815         plugin_contextswitch="yes"
5816         plugin_cpu="yes"
5817         plugin_disk="yes"
5818         plugin_interface="yes"
5819         plugin_load="yes"
5820         plugin_memory="yes"
5821         plugin_swap="yes"
5822         plugin_uptime="yes"
5823 fi
5825 if test "x$with_procinfo" = "xyes"
5826 then
5827         plugin_processes="yes"
5828 fi
5830 # Solaris
5831 if test "x$with_kstat" = "xyes"
5832 then
5833         plugin_nfs="yes"
5834         plugin_processes="yes"
5835         plugin_uptime="yes"
5836         plugin_zfs_arc="yes"
5837         plugin_zone="yes"
5838 fi
5840 if test "x$with_devinfo$with_kstat" = "xyesyes"
5841 then
5842         plugin_cpu="yes"
5843         plugin_disk="yes"
5844         plugin_interface="yes"
5845         plugin_memory="yes"
5846         plugin_tape="yes"
5847 fi
5849 # libi2c-dev
5850 if test "x$ac_system" = "xLinux"
5851 then
5852 AC_CHECK_DECL(i2c_smbus_read_i2c_block_data,
5853         [with_libi2c="yes"],
5854         [with_libi2c="no (symbol i2c_smbus_read_i2c_block_data not found - have you installed libi2c-dev ?)"],
5855         [[#include <stdlib.h>
5856         #include <linux/i2c-dev.h>]])
5857 else
5858         with_libi2c="no (Linux only)"
5859 fi
5861 if test "x$with_libi2c" = "xyes"
5862 then
5863         plugin_barometer="yes"
5864 fi
5867 # libstatgrab
5868 if test "x$with_libstatgrab" = "xyes"
5869 then
5870         plugin_cpu="yes"
5871         plugin_disk="yes"
5872         plugin_interface="yes"
5873         plugin_load="yes"
5874         plugin_memory="yes"
5875         plugin_swap="yes"
5876         plugin_users="yes"
5877 fi
5879 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5880 then
5881         plugin_ascent="yes"
5882         if test "x$have_strptime" = "xyes"
5883         then
5884                 plugin_bind="yes"
5885         fi
5886 fi
5888 if test "x$with_libopenipmipthread" = "xyes"
5889 then
5890         plugin_ipmi="yes"
5891 fi
5893 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
5894 then
5895         plugin_curl_json="yes"
5896 fi
5898 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
5899 then
5900         plugin_curl_xml="yes"
5901 fi
5903 if test "x$with_libyajl" = "xyes"
5904 then
5905         plugin_ceph="yes"
5906 fi
5908 if test "x$have_processor_info" = "xyes"
5909 then
5910         plugin_cpu="yes"
5911 fi
5912 if test "x$have_sysctl" = "xyes"
5913 then
5914         plugin_cpu="yes"
5915         plugin_memory="yes"
5916         plugin_uptime="yes"
5917         if test "x$ac_system" = "xDarwin"
5918         then
5919                 plugin_swap="yes"
5920         fi
5921 fi
5922 if test "x$have_sysctlbyname" = "xyes"
5923 then
5924         plugin_contextswitch="yes"
5925         plugin_cpu="yes"
5926         plugin_memory="yes"
5927         plugin_tcpconns="yes"
5928 fi
5930 # Df plugin: Check if we know how to determine mount points first.
5931 #if test "x$have_listmntent" = "xyes"; then
5932 #       plugin_df="yes"
5933 #fi
5934 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
5935 then
5936         plugin_df="yes"
5937 fi
5938 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
5939 then
5940         plugin_df="yes"
5941 fi
5942 #if test "x$have_getmntent" = "xseq"
5943 #then
5944 #       plugin_df="yes"
5945 #fi
5946 if test "x$c_cv_have_one_getmntent" = "xyes"
5947 then
5948         plugin_df="yes"
5949 fi
5951 if test "x$c_cv_have_getmntent_r" = "xyes"
5952 then
5953         plugin_df="yes"
5954 fi
5956 # Df plugin: Check if we have either `statfs' or `statvfs' second.
5957 if test "x$plugin_df" = "xyes"
5958 then
5959         plugin_df="no"
5960         if test "x$have_statfs" = "xyes"
5961         then
5962                 plugin_df="yes"
5963         fi
5964         if test "x$have_statvfs" = "xyes"
5965         then
5966                 plugin_df="yes"
5967         fi
5968 fi
5970 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
5971 then
5972         plugin_ethstat="yes"
5973 fi
5975 if test "x$with_libgrpcpp" = "xyes" && test "x$with_libprotobuf" = "xyes" && test "x$have_protoc3" = "xyes" && test "x$GRPC_CPP_PLUGIN" != "x"
5976 then
5977         plugin_grpc="yes"
5978 fi
5980 if test "x$have_getifaddrs" = "xyes"
5981 then
5982         plugin_interface="yes"
5983 fi
5985 if test "x$with_libgps" = "xyes"
5986 then
5987         plugin_gps="yes"
5988 fi
5990 if test "x$have_getloadavg" = "xyes"
5991 then
5992         plugin_load="yes"
5993 fi
5995 if test "x$with_libyajl" = "xyes"
5996 then
5997         plugin_log_logstash="yes"
5998 fi
6000 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
6001 then
6002         plugin_perl="yes"
6003 fi
6005 if test "x$have_protoc_c" = "xyes" && test "x$with_libprotobuf_c" = "xyes"
6006 then
6007         plugin_pinba="yes"
6008 fi
6010 # Mac OS X memory interface
6011 if test "x$have_host_statistics" = "xyes"
6012 then
6013         plugin_memory="yes"
6014 fi
6016 if test "x$have_termios_h" = "xyes"
6017 then
6018         if test "x$ac_system" != "xAIX"
6019         then
6020                 plugin_multimeter="yes"
6021         fi
6022         plugin_ted="yes"
6023 fi
6025 if test "x$have_thread_info" = "xyes"
6026 then
6027         plugin_processes="yes"
6028 fi
6030 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
6031 then
6032         plugin_processes="yes"
6033 fi
6035 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_openbsd" = "xyes"
6036 then
6037         plugin_processes="yes"
6038 fi
6040 if test "x$with_libpython" != "xno"
6041 then
6042         plugin_python="yes"
6043 fi
6045 if test "x$with_libatasmart" = "xyes" && test "x$with_libudev" = "xyes"
6046 then
6047         plugin_smart="yes"
6048 fi
6050 if test "x$with_kvm_getswapinfo" = "xyes"
6051 then
6052         plugin_swap="yes"
6053 fi
6055 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
6056 then
6057         plugin_swap="yes"
6058 fi
6060 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_three_args" = "xyes"
6061 then
6062         plugin_swap="yes"
6063 fi
6065 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
6066 then
6067         plugin_tcpconns="yes"
6068 fi
6070 if test "x$have_getutent" = "xyes"
6071 then
6072         plugin_users="yes"
6073 fi
6074 if test "x$have_getutxent" = "xyes"
6075 then
6076         plugin_users="yes"
6077 fi
6079 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
6080 then
6081         plugin_virt="yes"
6082 fi
6084 if test "x$with_libxenctrl" = "xyes"
6085 then
6086   plugin_xencpu="yes"
6087 fi
6089 m4_divert_once([HELP_ENABLE], [
6090 collectd plugins:])
6092 AC_ARG_ENABLE([all-plugins],
6093                 AS_HELP_STRING([--enable-all-plugins],[enable all plugins (auto by def)]),
6094                 [
6095                  if test "x$enableval" = "xyes"
6096                  then
6097                          enable_all_plugins="yes"
6098                  else if test "x$enableval" = "xauto"
6099                  then
6100                          enable_all_plugins="auto"
6101                  else
6102                          enable_all_plugins="no"
6103                  fi; fi
6104                 ],
6105                 [enable_all_plugins="auto"])
6107 m4_divert_once([HELP_ENABLE], [])
6109 AC_PLUGIN([aggregation],         [yes],                     [Aggregation plugin])
6110 AC_PLUGIN([amqp],                [$with_librabbitmq],       [AMQP output plugin])
6111 AC_PLUGIN([apache],              [$with_libcurl],           [Apache httpd statistics])
6112 AC_PLUGIN([apcups],              [yes],                     [Statistics of UPSes by APC])
6113 AC_PLUGIN([apple_sensors],       [$with_libiokit],          [Apple hardware sensors])
6114 AC_PLUGIN([aquaero],             [$with_libaquaero5],       [Aquaero hardware sensors])
6115 AC_PLUGIN([ascent],              [$plugin_ascent],          [AscentEmu player statistics])
6116 AC_PLUGIN([barometer],           [$plugin_barometer],       [Barometer sensor on I2C])
6117 AC_PLUGIN([battery],             [$plugin_battery],         [Battery statistics])
6118 AC_PLUGIN([bind],                [$plugin_bind],            [ISC Bind nameserver statistics])
6119 AC_PLUGIN([ceph],                [$plugin_ceph],            [Ceph daemon statistics])
6120 AC_PLUGIN([cgroups],             [$plugin_cgroups],         [CGroups CPU usage accounting])
6121 AC_PLUGIN([chrony],              [yes],                     [Chrony statistics])
6122 AC_PLUGIN([conntrack],           [$plugin_conntrack],       [nf_conntrack statistics])
6123 AC_PLUGIN([contextswitch],       [$plugin_contextswitch],   [context switch statistics])
6124 AC_PLUGIN([cpu],                 [$plugin_cpu],             [CPU usage statistics])
6125 AC_PLUGIN([cpufreq],             [$plugin_cpufreq],         [CPU frequency statistics])
6126 AC_PLUGIN([cpusleep],            [$plugin_cpusleep],        [CPU sleep statistics])
6127 AC_PLUGIN([csv],                 [yes],                     [CSV output plugin])
6128 AC_PLUGIN([curl],                [$with_libcurl],           [CURL generic web statistics])
6129 AC_PLUGIN([curl_json],           [$plugin_curl_json],       [CouchDB statistics])
6130 AC_PLUGIN([curl_xml],            [$plugin_curl_xml],        [CURL generic xml statistics])
6131 AC_PLUGIN([dbi],                 [$with_libdbi],            [General database statistics])
6132 AC_PLUGIN([df],                  [$plugin_df],              [Filesystem usage statistics])
6133 AC_PLUGIN([disk],                [$plugin_disk],            [Disk usage statistics])
6134 AC_PLUGIN([dns],                 [$with_libpcap],           [DNS traffic analysis])
6135 AC_PLUGIN([drbd],                [$plugin_drbd],            [DRBD statistics])
6136 AC_PLUGIN([email],               [yes],                     [EMail statistics])
6137 AC_PLUGIN([entropy],             [$plugin_entropy],         [Entropy statistics])
6138 AC_PLUGIN([ethstat],             [$plugin_ethstat],         [Stats from NIC driver])
6139 AC_PLUGIN([exec],                [yes],                     [Execution of external programs])
6140 AC_PLUGIN([fhcount],             [$plugin_fhcount],         [File handles statistics])
6141 AC_PLUGIN([filecount],           [yes],                     [Count files in directories])
6142 AC_PLUGIN([fscache],             [$plugin_fscache],         [fscache statistics])
6143 AC_PLUGIN([gmond],               [$with_libganglia],        [Ganglia plugin])
6144 AC_PLUGIN([gps],                 [$plugin_gps],             [GPS plugin])
6145 AC_PLUGIN([grpc],                [$plugin_grpc],            [gRPC plugin])
6146 AC_PLUGIN([hddtemp],             [yes],                     [Query hddtempd])
6147 AC_PLUGIN([interface],           [$plugin_interface],       [Interface traffic statistics])
6148 AC_PLUGIN([ipc],                 [$plugin_ipc],             [IPC statistics])
6149 AC_PLUGIN([ipmi],                [$plugin_ipmi],            [IPMI sensor statistics])
6150 AC_PLUGIN([iptables],            [$with_libiptc],           [IPTables rule counters])
6151 AC_PLUGIN([ipvs],                [$plugin_ipvs],            [IPVS connection statistics])
6152 AC_PLUGIN([irq],                 [$plugin_irq],             [IRQ statistics])
6153 AC_PLUGIN([java],                [$with_java],              [Embed the Java Virtual Machine])
6154 AC_PLUGIN([load],                [$plugin_load],            [System load])
6155 AC_PLUGIN([log_logstash],        [$plugin_log_logstash],    [Logstash json_event compatible logging])
6156 AC_PLUGIN([logfile],             [yes],                     [File logging plugin])
6157 AC_PLUGIN([lpar],                [$with_perfstat],          [AIX logical partitions statistics])
6158 AC_PLUGIN([lua],                 [$with_liblua],            [Lua plugin])
6159 AC_PLUGIN([lvm],                 [$with_liblvm2app],        [LVM statistics])
6160 AC_PLUGIN([madwifi],             [$have_linux_wireless_h],  [Madwifi wireless statistics])
6161 AC_PLUGIN([match_empty_counter], [yes],                     [The empty counter match])
6162 AC_PLUGIN([match_hashed],        [yes],                     [The hashed match])
6163 AC_PLUGIN([match_regex],         [yes],                     [The regex match])
6164 AC_PLUGIN([match_timediff],      [yes],                     [The timediff match])
6165 AC_PLUGIN([match_value],         [yes],                     [The value match])
6166 AC_PLUGIN([mbmon],               [yes],                     [Query mbmond])
6167 AC_PLUGIN([md],                  [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
6168 AC_PLUGIN([memcachec],           [$with_libmemcached],      [memcachec statistics])
6169 AC_PLUGIN([memcached],           [yes],                     [memcached statistics])
6170 AC_PLUGIN([memory],              [$plugin_memory],          [Memory usage])
6171 AC_PLUGIN([mic],                 [$with_mic],               [Intel Many Integrated Core stats])
6172 AC_PLUGIN([modbus],              [$with_libmodbus],         [Modbus plugin])
6173 AC_PLUGIN([mqtt],                [$with_libmosquitto],      [MQTT output plugin])
6174 AC_PLUGIN([multimeter],          [$plugin_multimeter],      [Read multimeter values])
6175 AC_PLUGIN([mysql],               [$with_libmysql],          [MySQL statistics])
6176 AC_PLUGIN([netapp],              [$with_libnetapp],         [NetApp plugin])
6177 AC_PLUGIN([netlink],             [$with_libmnl],            [Enhanced Linux network statistics])
6178 AC_PLUGIN([network],             [yes],                     [Network communication plugin])
6179 AC_PLUGIN([nfs],                 [$plugin_nfs],             [NFS statistics])
6180 AC_PLUGIN([nginx],               [$with_libcurl],           [nginx statistics])
6181 AC_PLUGIN([notify_desktop],      [$with_libnotify],         [Desktop notifications])
6182 AC_PLUGIN([notify_email],        [$with_libesmtp],          [Email notifier])
6183 AC_PLUGIN([notify_nagios],       [yes],                     [Nagios notification plugin])
6184 AC_PLUGIN([ntpd],                [yes],                     [NTPd statistics])
6185 AC_PLUGIN([numa],                [$plugin_numa],            [NUMA virtual memory statistics])
6186 AC_PLUGIN([nut],                 [$with_libupsclient],      [Network UPS tools statistics])
6187 AC_PLUGIN([olsrd],               [yes],                     [olsrd statistics])
6188 AC_PLUGIN([onewire],             [$with_libowcapi],         [OneWire sensor statistics])
6189 AC_PLUGIN([openldap],            [$with_libldap],           [OpenLDAP statistics])
6190 AC_PLUGIN([openvpn],             [yes],                     [OpenVPN client statistics])
6191 AC_PLUGIN([oracle],              [$with_oracle],            [Oracle plugin])
6192 AC_PLUGIN([perl],                [$plugin_perl],            [Embed a Perl interpreter])
6193 AC_PLUGIN([pf],                  [$have_net_pfvar_h],       [BSD packet filter (PF) statistics])
6194 # FIXME: Check for libevent, too.
6195 AC_PLUGIN([pinba],               [$plugin_pinba],           [Pinba statistics])
6196 AC_PLUGIN([ping],                [$with_liboping],          [Network latency statistics])
6197 AC_PLUGIN([postgresql],          [$with_libpq],             [PostgreSQL database statistics])
6198 AC_PLUGIN([powerdns],            [yes],                     [PowerDNS statistics])
6199 AC_PLUGIN([processes],           [$plugin_processes],       [Process statistics])
6200 AC_PLUGIN([protocols],           [$plugin_protocols],       [Protocol (IP, TCP, ...) statistics])
6201 AC_PLUGIN([python],              [$plugin_python],          [Embed a Python interpreter])
6202 AC_PLUGIN([redis],               [$with_libhiredis],        [Redis plugin])
6203 AC_PLUGIN([routeros],            [$with_librouteros],       [RouterOS plugin])
6204 AC_PLUGIN([rrdcached],           [$librrd_rrdc_update],     [RRDTool output plugin])
6205 AC_PLUGIN([rrdtool],             [$with_librrd],            [RRDTool output plugin])
6206 AC_PLUGIN([sensors],             [$with_libsensors],        [lm_sensors statistics])
6207 AC_PLUGIN([serial],              [$plugin_serial],          [serial port traffic])
6208 AC_PLUGIN([sigrok],              [$with_libsigrok],         [sigrok acquisition sources])
6209 AC_PLUGIN([smart],               [$plugin_smart],           [SMART statistics])
6210 AC_PLUGIN([snmp],                [$with_libnetsnmp],        [SNMP querying plugin])
6211 AC_PLUGIN([statsd],              [yes],                     [StatsD plugin])
6212 AC_PLUGIN([swap],                [$plugin_swap],            [Swap usage statistics])
6213 AC_PLUGIN([syslog],              [$have_syslog],            [Syslog logging plugin])
6214 AC_PLUGIN([table],               [yes],                     [Parsing of tabular data])
6215 AC_PLUGIN([tail],                [yes],                     [Parsing of logfiles])
6216 AC_PLUGIN([tail_csv],            [yes],                     [Parsing of CSV files])
6217 AC_PLUGIN([tape],                [$plugin_tape],            [Tape drive statistics])
6218 AC_PLUGIN([target_notification], [yes],                     [The notification target])
6219 AC_PLUGIN([target_replace],      [yes],                     [The replace target])
6220 AC_PLUGIN([target_scale],        [yes],                     [The scale target])
6221 AC_PLUGIN([target_set],          [yes],                     [The set target])
6222 AC_PLUGIN([target_v5upgrade],    [yes],                     [The v5upgrade target])
6223 AC_PLUGIN([tcpconns],            [$plugin_tcpconns],        [TCP connection statistics])
6224 AC_PLUGIN([teamspeak2],          [yes],                     [TeamSpeak2 server statistics])
6225 AC_PLUGIN([ted],                 [$plugin_ted],             [Read The Energy Detective values])
6226 AC_PLUGIN([thermal],             [$plugin_thermal],         [Linux ACPI thermal zone statistics])
6227 AC_PLUGIN([threshold],           [yes],                     [Threshold checking plugin])
6228 AC_PLUGIN([tokyotyrant],         [$with_libtokyotyrant],    [TokyoTyrant database statistics])
6229 AC_PLUGIN([turbostat],           [$plugin_turbostat],       [Advanced statistic on Intel cpu states])
6230 AC_PLUGIN([unixsock],            [yes],                     [Unixsock communication plugin])
6231 AC_PLUGIN([uptime],              [$plugin_uptime],          [Uptime statistics])
6232 AC_PLUGIN([users],               [$plugin_users],           [User statistics])
6233 AC_PLUGIN([uuid],                [yes],                     [UUID as hostname plugin])
6234 AC_PLUGIN([varnish],             [$with_libvarnish],        [Varnish cache statistics])
6235 AC_PLUGIN([virt],                [$plugin_virt],            [Virtual machine statistics])
6236 AC_PLUGIN([vmem],                [$plugin_vmem],            [Virtual memory statistics])
6237 AC_PLUGIN([vserver],             [$plugin_vserver],         [Linux VServer statistics])
6238 AC_PLUGIN([wireless],            [$plugin_wireless],        [Wireless statistics])
6239 AC_PLUGIN([write_graphite],      [yes],                     [Graphite / Carbon output plugin])
6240 AC_PLUGIN([write_http],          [$with_libcurl],           [HTTP output plugin])
6241 AC_PLUGIN([write_kafka],         [$with_librdkafka],        [Kafka output plugin])
6242 AC_PLUGIN([write_log],           [yes],                     [Log output plugin])
6243 AC_PLUGIN([write_mongodb],       [$with_libmongoc],         [MongoDB output plugin])
6244 AC_PLUGIN([write_redis],         [$with_libhiredis],        [Redis output plugin])
6245 AC_PLUGIN([write_riemann],       [$with_libriemann_client], [Riemann output plugin])
6246 AC_PLUGIN([write_sensu],         [yes],                     [Sensu output plugin])
6247 AC_PLUGIN([write_tsdb],          [yes],                     [TSDB output plugin])
6248 AC_PLUGIN([xencpu],              [$plugin_xencpu],          [Xen Host CPU usage])
6249 AC_PLUGIN([xmms],                [$with_libxmms],           [XMMS statistics])
6250 AC_PLUGIN([zfs_arc],             [$plugin_zfs_arc],         [ZFS ARC statistics])
6251 AC_PLUGIN([zone],                [$plugin_zone],            [Solaris container statistics])
6252 AC_PLUGIN([zookeeper],           [yes],                     [Zookeeper statistics])
6254 dnl Default configuration file
6255 # Load either syslog or logfile
6256 LOAD_PLUGIN_SYSLOG=""
6257 LOAD_PLUGIN_LOGFILE=""
6258 LOAD_PLUGIN_LOG_LOGSTASH=""
6260 AC_MSG_CHECKING([which default log plugin to load])
6261 default_log_plugin="none"
6262 if test "x$enable_syslog" = "xyes"
6263 then
6264         default_log_plugin="syslog"
6265 else
6266         LOAD_PLUGIN_SYSLOG="##"
6267 fi
6269 if test "x$enable_logfile" = "xyes"
6270 then
6271         if test "x$default_log_plugin" = "xnone"
6272         then
6273                 default_log_plugin="logfile"
6274         else
6275                 LOAD_PLUGIN_LOGFILE="#"
6276         fi
6277 else
6278         LOAD_PLUGIN_LOGFILE="##"
6279 fi
6281 if test "x$enable_log_logstash" = "xyes"
6282 then
6283   LOAD_PLUGIN_LOG_LOGSTASH="#"
6284 else
6285   LOAD_PLUGIN_LOG_LOGSTASH="##"
6286 fi
6289 AC_MSG_RESULT([$default_log_plugin])
6291 AC_SUBST(LOAD_PLUGIN_SYSLOG)
6292 AC_SUBST(LOAD_PLUGIN_LOGFILE)
6293 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
6295 DEFAULT_LOG_LEVEL="info"
6296 if test "x$enable_debug" = "xyes"
6297 then
6298         DEFAULT_LOG_LEVEL="debug"
6299 fi
6300 AC_SUBST(DEFAULT_LOG_LEVEL)
6302 # Load only one of rrdtool, network, csv in the default config.
6303 LOAD_PLUGIN_RRDTOOL=""
6304 LOAD_PLUGIN_NETWORK=""
6305 LOAD_PLUGIN_CSV=""
6307 AC_MSG_CHECKING([which default write plugin to load])
6308 default_write_plugin="none"
6309 if test "x$enable_rrdtool" = "xyes"
6310 then
6311         default_write_plugin="rrdtool"
6312 else
6313         LOAD_PLUGIN_RRDTOOL="##"
6314 fi
6316 if test "x$enable_network" = "xyes"
6317 then
6318         if test "x$default_write_plugin" = "xnone"
6319         then
6320                 default_write_plugin="network"
6321         else
6322                 LOAD_PLUGIN_NETWORK="#"
6323         fi
6324 else
6325         LOAD_PLUGIN_NETWORK="##"
6326 fi
6328 if test "x$enable_csv" = "xyes"
6329 then
6330         if test "x$default_write_plugin" = "xnone"
6331         then
6332                 default_write_plugin="csv"
6333         else
6334                 LOAD_PLUGIN_CSV="#"
6335         fi
6336 else
6337         LOAD_PLUGIN_CSV="##"
6338 fi
6339 AC_MSG_RESULT([$default_write_plugin])
6341 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
6342 AC_SUBST(LOAD_PLUGIN_NETWORK)
6343 AC_SUBST(LOAD_PLUGIN_CSV)
6345 dnl ip_vs.h
6346 if test "x$ac_system" = "xLinux" \
6347         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
6348 then
6349         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
6350 fi
6352 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
6353 then
6354         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
6355 fi
6357 dnl Perl bindings
6358 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
6359 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
6361         if test "x$withval" != "xno" && test "x$withval" != "xyes"
6362         then
6363                 PERL_BINDINGS_OPTIONS="$withval"
6364                 with_perl_bindings="yes"
6365         else
6366                 with_perl_bindings="$withval"
6367         fi
6368 ],
6370         if test -n "$perl_interpreter"
6371         then
6372                 with_perl_bindings="yes"
6373         else
6374                 with_perl_bindings="no (no perl interpreter found)"
6375         fi
6376 ])
6378 if test "x$with_perl_bindings" = "xyes"
6379 then
6380         AC_MSG_CHECKING([for the ExtUtils::MakeMaker module])
6381         if $PERL -MExtUtils::MakeMaker -e '' 2>/dev/null; then
6382                 AC_MSG_RESULT([yes])
6383         else
6384                 AC_MSG_RESULT([no])
6385                 with_perl_bindings="no (ExtUtils::MakeMaker not found)"
6386         fi
6387 fi
6389 if test "x$with_perl_bindings" = "xyes"
6390 then
6391         PERL_BINDINGS="perl"
6392 else
6393         PERL_BINDINGS=""
6394 fi
6395 AC_SUBST(PERL_BINDINGS)
6396 AC_SUBST(PERL_BINDINGS_OPTIONS)
6398 dnl libcollectdclient
6399 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
6400 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
6401 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
6403 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
6405 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
6407 AC_SUBST(LCC_VERSION_MAJOR)
6408 AC_SUBST(LCC_VERSION_MINOR)
6409 AC_SUBST(LCC_VERSION_PATCH)
6410 AC_SUBST(LCC_VERSION_EXTRA)
6411 AC_SUBST(LCC_VERSION_STRING)
6413 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
6415 AM_CFLAGS="-Wall"
6416 AM_CXXFLAGS="-Wall"
6417 if test "x$enable_werror" != "xno"
6418 then
6419         AM_CFLAGS="$AM_CFLAGS -Werror"
6420         AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
6421 fi
6422 AC_SUBST([AM_CFLAGS])
6423 AC_SUBST([AM_CXXFLAGS])
6425 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])
6426 AC_OUTPUT
6428 if test "x$with_librrd" = "xyes" \
6429         && test "x$librrd_threadsafe" != "xyes"
6430 then
6431         with_librrd="yes (warning: librrd is not thread-safe)"
6432 fi
6434 if test "x$with_libperl" = "xyes"
6435 then
6436         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
6437 else
6438         enable_perl="no (needs libperl)"
6439 fi
6441 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
6442 then
6443         enable_perl="no (libperl doesn't support ithreads)"
6444 fi
6446 if test "x$with_perl_bindings" = "xyes" \
6447         && test "x$PERL_BINDINGS_OPTIONS" != "x"
6448 then
6449         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
6450 fi
6452 AC_MSG_RESULT()
6453 AC_MSG_RESULT([Configuration:])
6454 AC_MSG_RESULT([  Build:])
6455 AC_MSG_RESULT([    Platform  . . . . . . $ac_system])
6456 AC_MSG_RESULT([    CC  . . . . . . . . . $CC])
6457 AC_MSG_RESULT([    CFLAGS  . . . . . . . $AM_CFLAGS $CFLAGS])
6458 AC_MSG_RESULT([    CXXFLAGS  . . . . . . $AM_CXXFLAGS $CXXFLAGS])
6459 AC_MSG_RESULT([    CPP . . . . . . . . . $CPP])
6460 AC_MSG_RESULT([    CPPFLAGS  . . . . . . $CPPFLAGS])
6461 AC_MSG_RESULT([    GRPC_CPP_PLUGIN . . . $GRPC_CPP_PLUGIN])
6462 AC_MSG_RESULT([    LD  . . . . . . . . . $LD])
6463 AC_MSG_RESULT([    LDFLAGS . . . . . . . $LDFLAGS])
6464 AC_MSG_RESULT([    PROTOC  . . . . . . . $PROTOC])
6465 AC_MSG_RESULT([    YACC  . . . . . . . . $YACC])
6466 AC_MSG_RESULT([    YFLAGS  . . . . . . . $YFLAGS])
6467 AC_MSG_RESULT()
6468 AC_MSG_RESULT([  Libraries:])
6469 AC_MSG_RESULT([    intel mic . . . . . . $with_mic])
6470 AC_MSG_RESULT([    libaquaero5 . . . . . $with_libaquaero5])
6471 AC_MSG_RESULT([    libatasmart . . . . . $with_libatasmart])
6472 AC_MSG_RESULT([    libcurl . . . . . . . $with_libcurl])
6473 AC_MSG_RESULT([    libdbi  . . . . . . . $with_libdbi])
6474 AC_MSG_RESULT([    libesmtp  . . . . . . $with_libesmtp])
6475 AC_MSG_RESULT([    libganglia  . . . . . $with_libganglia])
6476 AC_MSG_RESULT([    libgcrypt . . . . . . $with_libgcrypt])
6477 AC_MSG_RESULT([    libgps  . . . . . . . $with_libgps])
6478 AC_MSG_RESULT([    libgrpc++ . . . . . . $with_libgrpcpp])
6479 AC_MSG_RESULT([    libhal  . . . . . . . $with_libhal])
6480 AC_MSG_RESULT([    libhiredis  . . . . . $with_libhiredis])
6481 AC_MSG_RESULT([    libi2c-dev  . . . . . $with_libi2c])
6482 AC_MSG_RESULT([    libiokit  . . . . . . $with_libiokit])
6483 AC_MSG_RESULT([    libiptc . . . . . . . $with_libiptc])
6484 AC_MSG_RESULT([    libjvm  . . . . . . . $with_java])
6485 AC_MSG_RESULT([    libkstat  . . . . . . $with_kstat])
6486 AC_MSG_RESULT([    libkvm  . . . . . . . $with_libkvm])
6487 AC_MSG_RESULT([    libldap . . . . . . . $with_libldap])
6488 AC_MSG_RESULT([    liblua  . . . . . . . $with_liblua])
6489 AC_MSG_RESULT([    liblvm2app  . . . . . $with_liblvm2app])
6490 AC_MSG_RESULT([    libmemcached  . . . . $with_libmemcached])
6491 AC_MSG_RESULT([    libmnl  . . . . . . . $with_libmnl])
6492 AC_MSG_RESULT([    libmodbus . . . . . . $with_libmodbus])
6493 AC_MSG_RESULT([    libmongoc . . . . . . $with_libmongoc])
6494 AC_MSG_RESULT([    libmosquitto  . . . . $with_libmosquitto])
6495 AC_MSG_RESULT([    libmysql  . . . . . . $with_libmysql])
6496 AC_MSG_RESULT([    libnetapp . . . . . . $with_libnetapp])
6497 AC_MSG_RESULT([    libnetsnmp  . . . . . $with_libnetsnmp])
6498 AC_MSG_RESULT([    libnotify . . . . . . $with_libnotify])
6499 AC_MSG_RESULT([    liboconfig  . . . . . $with_liboconfig])
6500 AC_MSG_RESULT([    libopenipmi . . . . . $with_libopenipmipthread])
6501 AC_MSG_RESULT([    liboping  . . . . . . $with_liboping])
6502 AC_MSG_RESULT([    libowcapi . . . . . . $with_libowcapi])
6503 AC_MSG_RESULT([    libpcap . . . . . . . $with_libpcap])
6504 AC_MSG_RESULT([    libperfstat . . . . . $with_perfstat])
6505 AC_MSG_RESULT([    libperl . . . . . . . $with_libperl])
6506 AC_MSG_RESULT([    libpq . . . . . . . . $with_libpq])
6507 AC_MSG_RESULT([    libprotobuf . . . . . $with_libprotobuf])
6508 AC_MSG_RESULT([    libprotobuf-c . . . . $with_libprotobuf_c])
6509 AC_MSG_RESULT([    libpython . . . . . . $with_libpython])
6510 AC_MSG_RESULT([    librabbitmq . . . . . $with_librabbitmq])
6511 AC_MSG_RESULT([    libriemann-client . . $with_libriemann_client])
6512 AC_MSG_RESULT([    librdkafka  . . . . . $with_librdkafka])
6513 AC_MSG_RESULT([    librouteros . . . . . $with_librouteros])
6514 AC_MSG_RESULT([    librrd  . . . . . . . $with_librrd])
6515 AC_MSG_RESULT([    libsensors  . . . . . $with_libsensors])
6516 AC_MSG_RESULT([    libsigrok   . . . . . $with_libsigrok])
6517 AC_MSG_RESULT([    libstatgrab . . . . . $with_libstatgrab])
6518 AC_MSG_RESULT([    libtokyotyrant  . . . $with_libtokyotyrant])
6519 AC_MSG_RESULT([    libudev . . . . . . . $with_libudev])
6520 AC_MSG_RESULT([    libupsclient  . . . . $with_libupsclient])
6521 AC_MSG_RESULT([    libvarnish  . . . . . $with_libvarnish])
6522 AC_MSG_RESULT([    libvirt . . . . . . . $with_libvirt])
6523 AC_MSG_RESULT([    libxenctrl  . . . . . $with_libxenctrl])
6524 AC_MSG_RESULT([    libxml2 . . . . . . . $with_libxml2])
6525 AC_MSG_RESULT([    libxmms . . . . . . . $with_libxmms])
6526 AC_MSG_RESULT([    libyajl . . . . . . . $with_libyajl])
6527 AC_MSG_RESULT([    oracle  . . . . . . . $with_oracle])
6528 AC_MSG_RESULT([    protobuf-c  . . . . . $have_protoc_c])
6529 AC_MSG_RESULT([    protoc 3  . . . . . . $have_protoc3])
6530 AC_MSG_RESULT()
6531 AC_MSG_RESULT([  Features:])
6532 AC_MSG_RESULT([    daemon mode . . . . . $enable_daemon])
6533 AC_MSG_RESULT([    debug . . . . . . . . $enable_debug])
6534 AC_MSG_RESULT()
6535 AC_MSG_RESULT([  Bindings:])
6536 AC_MSG_RESULT([    perl  . . . . . . . . $with_perl_bindings])
6537 AC_MSG_RESULT()
6538 AC_MSG_RESULT([  Modules:])
6539 AC_MSG_RESULT([    aggregation . . . . . $enable_aggregation])
6540 AC_MSG_RESULT([    amqp    . . . . . . . $enable_amqp])
6541 AC_MSG_RESULT([    apache  . . . . . . . $enable_apache])
6542 AC_MSG_RESULT([    apcups  . . . . . . . $enable_apcups])
6543 AC_MSG_RESULT([    apple_sensors . . . . $enable_apple_sensors])
6544 AC_MSG_RESULT([    aquaero . . . . . . . $enable_aquaero])
6545 AC_MSG_RESULT([    ascent  . . . . . . . $enable_ascent])
6546 AC_MSG_RESULT([    barometer . . . . . . $enable_barometer])
6547 AC_MSG_RESULT([    battery . . . . . . . $enable_battery])
6548 AC_MSG_RESULT([    bind  . . . . . . . . $enable_bind])
6549 AC_MSG_RESULT([    ceph  . . . . . . . . $enable_ceph])
6550 AC_MSG_RESULT([    cgroups . . . . . . . $enable_cgroups])
6551 AC_MSG_RESULT([    chrony. . . . . . . . $enable_chrony])
6552 AC_MSG_RESULT([    conntrack . . . . . . $enable_conntrack])
6553 AC_MSG_RESULT([    contextswitch . . . . $enable_contextswitch])
6554 AC_MSG_RESULT([    cpu . . . . . . . . . $enable_cpu])
6555 AC_MSG_RESULT([    cpufreq . . . . . . . $enable_cpufreq])
6556 AC_MSG_RESULT([    cpusleep  . . . . . . $enable_cpusleep])
6557 AC_MSG_RESULT([    csv . . . . . . . . . $enable_csv])
6558 AC_MSG_RESULT([    curl  . . . . . . . . $enable_curl])
6559 AC_MSG_RESULT([    curl_json . . . . . . $enable_curl_json])
6560 AC_MSG_RESULT([    curl_xml  . . . . . . $enable_curl_xml])
6561 AC_MSG_RESULT([    dbi . . . . . . . . . $enable_dbi])
6562 AC_MSG_RESULT([    df  . . . . . . . . . $enable_df])
6563 AC_MSG_RESULT([    disk  . . . . . . . . $enable_disk])
6564 AC_MSG_RESULT([    dns . . . . . . . . . $enable_dns])
6565 AC_MSG_RESULT([    drbd  . . . . . . . . $enable_drbd])
6566 AC_MSG_RESULT([    email . . . . . . . . $enable_email])
6567 AC_MSG_RESULT([    entropy . . . . . . . $enable_entropy])
6568 AC_MSG_RESULT([    ethstat . . . . . . . $enable_ethstat])
6569 AC_MSG_RESULT([    exec  . . . . . . . . $enable_exec])
6570 AC_MSG_RESULT([    fhcount . . . . . . . $enable_fhcount])
6571 AC_MSG_RESULT([    filecount . . . . . . $enable_filecount])
6572 AC_MSG_RESULT([    fscache . . . . . . . $enable_fscache])
6573 AC_MSG_RESULT([    gmond . . . . . . . . $enable_gmond])
6574 AC_MSG_RESULT([    gps . . . . . . . . . $enable_gps])
6575 AC_MSG_RESULT([    grpc  . . . . . . . . $enable_grpc])
6576 AC_MSG_RESULT([    hddtemp . . . . . . . $enable_hddtemp])
6577 AC_MSG_RESULT([    interface . . . . . . $enable_interface])
6578 AC_MSG_RESULT([    ipc . . . . . . . . . $enable_ipc])
6579 AC_MSG_RESULT([    ipmi  . . . . . . . . $enable_ipmi])
6580 AC_MSG_RESULT([    iptables  . . . . . . $enable_iptables])
6581 AC_MSG_RESULT([    ipvs  . . . . . . . . $enable_ipvs])
6582 AC_MSG_RESULT([    irq . . . . . . . . . $enable_irq])
6583 AC_MSG_RESULT([    java  . . . . . . . . $enable_java])
6584 AC_MSG_RESULT([    load  . . . . . . . . $enable_load])
6585 AC_MSG_RESULT([    logfile . . . . . . . $enable_logfile])
6586 AC_MSG_RESULT([    log_logstash  . . . . $enable_log_logstash])
6587 AC_MSG_RESULT([    lpar  . . . . . . . . $enable_lpar])
6588 AC_MSG_RESULT([    lua . . . . . . . . . $enable_lua])
6589 AC_MSG_RESULT([    lvm . . . . . . . . . $enable_lvm])
6590 AC_MSG_RESULT([    madwifi . . . . . . . $enable_madwifi])
6591 AC_MSG_RESULT([    match_empty_counter . $enable_match_empty_counter])
6592 AC_MSG_RESULT([    match_hashed  . . . . $enable_match_hashed])
6593 AC_MSG_RESULT([    match_regex . . . . . $enable_match_regex])
6594 AC_MSG_RESULT([    match_timediff  . . . $enable_match_timediff])
6595 AC_MSG_RESULT([    match_value . . . . . $enable_match_value])
6596 AC_MSG_RESULT([    mbmon . . . . . . . . $enable_mbmon])
6597 AC_MSG_RESULT([    md  . . . . . . . . . $enable_md])
6598 AC_MSG_RESULT([    memcachec . . . . . . $enable_memcachec])
6599 AC_MSG_RESULT([    memcached . . . . . . $enable_memcached])
6600 AC_MSG_RESULT([    memory  . . . . . . . $enable_memory])
6601 AC_MSG_RESULT([    mic . . . . . . . . . $enable_mic])
6602 AC_MSG_RESULT([    modbus  . . . . . . . $enable_modbus])
6603 AC_MSG_RESULT([    mqtt  . . . . . . . . $enable_mqtt])
6604 AC_MSG_RESULT([    multimeter  . . . . . $enable_multimeter])
6605 AC_MSG_RESULT([    mysql . . . . . . . . $enable_mysql])
6606 AC_MSG_RESULT([    netapp  . . . . . . . $enable_netapp])
6607 AC_MSG_RESULT([    netlink . . . . . . . $enable_netlink])
6608 AC_MSG_RESULT([    network . . . . . . . $enable_network])
6609 AC_MSG_RESULT([    nfs . . . . . . . . . $enable_nfs])
6610 AC_MSG_RESULT([    nginx . . . . . . . . $enable_nginx])
6611 AC_MSG_RESULT([    notify_desktop  . . . $enable_notify_desktop])
6612 AC_MSG_RESULT([    notify_email  . . . . $enable_notify_email])
6613 AC_MSG_RESULT([    notify_nagios . . . . $enable_notify_nagios])
6614 AC_MSG_RESULT([    ntpd  . . . . . . . . $enable_ntpd])
6615 AC_MSG_RESULT([    numa  . . . . . . . . $enable_numa])
6616 AC_MSG_RESULT([    nut . . . . . . . . . $enable_nut])
6617 AC_MSG_RESULT([    olsrd . . . . . . . . $enable_olsrd])
6618 AC_MSG_RESULT([    onewire . . . . . . . $enable_onewire])
6619 AC_MSG_RESULT([    openldap  . . . . . . $enable_openldap])
6620 AC_MSG_RESULT([    openvpn . . . . . . . $enable_openvpn])
6621 AC_MSG_RESULT([    oracle  . . . . . . . $enable_oracle])
6622 AC_MSG_RESULT([    perl  . . . . . . . . $enable_perl])
6623 AC_MSG_RESULT([    pf  . . . . . . . . . $enable_pf])
6624 AC_MSG_RESULT([    pinba . . . . . . . . $enable_pinba])
6625 AC_MSG_RESULT([    ping  . . . . . . . . $enable_ping])
6626 AC_MSG_RESULT([    postgresql  . . . . . $enable_postgresql])
6627 AC_MSG_RESULT([    powerdns  . . . . . . $enable_powerdns])
6628 AC_MSG_RESULT([    processes . . . . . . $enable_processes])
6629 AC_MSG_RESULT([    protocols . . . . . . $enable_protocols])
6630 AC_MSG_RESULT([    python  . . . . . . . $enable_python])
6631 AC_MSG_RESULT([    redis . . . . . . . . $enable_redis])
6632 AC_MSG_RESULT([    routeros  . . . . . . $enable_routeros])
6633 AC_MSG_RESULT([    rrdcached . . . . . . $enable_rrdcached])
6634 AC_MSG_RESULT([    rrdtool . . . . . . . $enable_rrdtool])
6635 AC_MSG_RESULT([    sensors . . . . . . . $enable_sensors])
6636 AC_MSG_RESULT([    serial  . . . . . . . $enable_serial])
6637 AC_MSG_RESULT([    sigrok  . . . . . . . $enable_sigrok])
6638 AC_MSG_RESULT([    smart . . . . . . . . $enable_smart])
6639 AC_MSG_RESULT([    snmp  . . . . . . . . $enable_snmp])
6640 AC_MSG_RESULT([    statsd  . . . . . . . $enable_statsd])
6641 AC_MSG_RESULT([    swap  . . . . . . . . $enable_swap])
6642 AC_MSG_RESULT([    syslog  . . . . . . . $enable_syslog])
6643 AC_MSG_RESULT([    table . . . . . . . . $enable_table])
6644 AC_MSG_RESULT([    tail_csv  . . . . . . $enable_tail_csv])
6645 AC_MSG_RESULT([    tail  . . . . . . . . $enable_tail])
6646 AC_MSG_RESULT([    tape  . . . . . . . . $enable_tape])
6647 AC_MSG_RESULT([    target_notification . $enable_target_notification])
6648 AC_MSG_RESULT([    target_replace  . . . $enable_target_replace])
6649 AC_MSG_RESULT([    target_scale  . . . . $enable_target_scale])
6650 AC_MSG_RESULT([    target_set  . . . . . $enable_target_set])
6651 AC_MSG_RESULT([    target_v5upgrade  . . $enable_target_v5upgrade])
6652 AC_MSG_RESULT([    tcpconns  . . . . . . $enable_tcpconns])
6653 AC_MSG_RESULT([    teamspeak2  . . . . . $enable_teamspeak2])
6654 AC_MSG_RESULT([    ted . . . . . . . . . $enable_ted])
6655 AC_MSG_RESULT([    thermal . . . . . . . $enable_thermal])
6656 AC_MSG_RESULT([    threshold . . . . . . $enable_threshold])
6657 AC_MSG_RESULT([    tokyotyrant . . . . . $enable_tokyotyrant])
6658 AC_MSG_RESULT([    turbostat . . . . . . $enable_turbostat])
6659 AC_MSG_RESULT([    unixsock  . . . . . . $enable_unixsock])
6660 AC_MSG_RESULT([    uptime  . . . . . . . $enable_uptime])
6661 AC_MSG_RESULT([    users . . . . . . . . $enable_users])
6662 AC_MSG_RESULT([    uuid  . . . . . . . . $enable_uuid])
6663 AC_MSG_RESULT([    varnish . . . . . . . $enable_varnish])
6664 AC_MSG_RESULT([    virt  . . . . . . . . $enable_virt])
6665 AC_MSG_RESULT([    vmem  . . . . . . . . $enable_vmem])
6666 AC_MSG_RESULT([    vserver . . . . . . . $enable_vserver])
6667 AC_MSG_RESULT([    wireless  . . . . . . $enable_wireless])
6668 AC_MSG_RESULT([    write_graphite  . . . $enable_write_graphite])
6669 AC_MSG_RESULT([    write_http  . . . . . $enable_write_http])
6670 AC_MSG_RESULT([    write_kafka . . . . . $enable_write_kafka])
6671 AC_MSG_RESULT([    write_log . . . . . . $enable_write_log])
6672 AC_MSG_RESULT([    write_mongodb . . . . $enable_write_mongodb])
6673 AC_MSG_RESULT([    write_redis . . . . . $enable_write_redis])
6674 AC_MSG_RESULT([    write_riemann . . . . $enable_write_riemann])
6675 AC_MSG_RESULT([    write_sensu . . . . . $enable_write_sensu])
6676 AC_MSG_RESULT([    write_tsdb  . . . . . $enable_write_tsdb])
6677 AC_MSG_RESULT([    xencpu  . . . . . . . $enable_xencpu])
6678 AC_MSG_RESULT([    xmms  . . . . . . . . $enable_xmms])
6679 AC_MSG_RESULT([    zfs_arc . . . . . . . $enable_zfs_arc])
6680 AC_MSG_RESULT([    zone  . . . . . . . . $enable_zone])
6681 AC_MSG_RESULT([    zookeeper . . . . . . $enable_zookeeper])
6682 AC_MSG_RESULT()
6684 if test "x$dependency_error" = "xyes"; then
6685         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6686 fi
6688 if test "x$dependency_warning" = "xyes"; then
6689         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6690 fi
6692 # vim: set fdm=marker :