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