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