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