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