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