protoc: log when compiler is missing
[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 else
64         AC_CHECK_HEADERS([google/protobuf-c/protobuf-c.h],
65                          [have_protobuf_c_h="yes"],
66                          [have_protobuf_c_h="no"])
67         if test "x$have_protobuf_c_h" = "xno"
68         then
69                 have_protoc_c="no (<google/protobuf-c/protobuf-c.h> not found)"
70         fi
71 fi
72 AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")
73
74 AC_MSG_CHECKING([for kernel type ($host_os)])
75 case $host_os in
76         *linux*)
77         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
78         ac_system="Linux"
79         ;;
80         *solaris*)
81         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
82         ac_system="Solaris"
83         ;;
84         *darwin*)
85         AC_DEFINE([KERNEL_DARWIN], 1, [True if program is to be compiled for a Darwin kernel])
86         ac_system="Darwin"
87         ;;
88         *openbsd*)
89         AC_DEFINE([KERNEL_OPENBSD], 1, [True if program is to be compiled for an OpenBSD kernel])
90         ac_system="OpenBSD"
91         ;;
92         *aix*)
93         AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
94         ac_system="AIX"
95         ;;
96         *freebsd*)
97         AC_DEFINE([KERNEL_FREEBSD], 1, [True if program is to be compiled for a FreeBSD kernel])
98         ac_system="FreeBSD"
99         ;;
100         *)
101         ac_system="unknown"
102 esac
103 AC_MSG_RESULT([$ac_system])
104
105 AM_CONDITIONAL([BUILD_LINUX],[test "x$ac_system" = "xLinux"])
106 AM_CONDITIONAL([BUILD_SOLARIS],[test "x$ac_system" = "xSolaris"])
107 AM_CONDITIONAL([BUILD_DARWIN],[test "x$ac_system" = "xDarwin"])
108 AM_CONDITIONAL([BUILD_OPENBSD],[test "x$ac_system" = "xOpenBSD"])
109 AM_CONDITIONAL([BUILD_AIX],[test "x$ac_system" = "xAIX"])
110 AM_CONDITIONAL([BUILD_FREEBSD],[test "x$ac_system" = "xFreeBSD"])
111
112 if test "x$ac_system" = "xLinux"
113 then
114         AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
115         if test -z "$KERNEL_DIR"
116         then
117                 KERNEL_DIR="/lib/modules/`uname -r`/source"
118         fi
119
120         KERNEL_CFLAGS="-I$KERNEL_DIR/include"
121         AC_SUBST(KERNEL_CFLAGS)
122 fi
123
124 if test "x$ac_system" = "xSolaris"
125 then
126         AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
127         AC_DEFINE(_REENTRANT,               1, [Define to enable reentrancy interfaces.])
128
129         AC_MSG_CHECKING([whether compiler builds 64bit binaries])
130         AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
131                            #ifndef _LP64
132                            # error "Compiler not in 64bit mode."
133                            #endif
134                            ])],
135                            [AC_MSG_RESULT([yes])],
136                            [
137                             AC_MSG_RESULT([no])
138                             AC_MSG_NOTICE([Solaris detected. Please consider building a 64-bit binary.])
139                            ])
140 fi
141
142 if test "x$ac_system" = "xAIX"
143 then
144         AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
145 fi
146
147 # Where to install .pc files.
148 pkgconfigdir="${libdir}/pkgconfig"
149 AC_SUBST(pkgconfigdir)
150
151 # Check for standards compliance mode
152 AC_ARG_ENABLE(standards,
153               AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
154               [enable_standards="$enableval"],
155               [enable_standards="no"])
156 if test "x$enable_standards" = "xyes"
157 then
158         AC_DEFINE(_ISOC99_SOURCE,        1, [Define to enforce ISO C99 compliance.])
159         AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
160         AC_DEFINE(_XOPEN_SOURCE,       700, [Define to enforce X/Open 7 (XSI) compliance.])
161         AC_DEFINE(_REENTRANT,            1, [Define to enable reentrancy interfaces.])
162         if test "x$GCC" = "xyes"
163         then
164                 CFLAGS="$CFLAGS -std=c99"
165         fi
166 fi
167 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
168
169 #
170 # Checks for header files.
171 #
172 AC_HEADER_STDC
173 AC_HEADER_SYS_WAIT
174 AC_HEADER_DIRENT
175 AC_HEADER_STDBOOL
176
177 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)
178
179 # For ping library
180 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
181 [#if HAVE_STDINT_H
182 # include <stdint.h>
183 #endif
184 #if HAVE_SYS_TYPES_H
185 # include <sys/types.h>
186 #endif
187 ])
188 AC_CHECK_HEADERS(netinet/in.h, [], [],
189 [#if HAVE_STDINT_H
190 # include <stdint.h>
191 #endif
192 #if HAVE_SYS_TYPES_H
193 # include <sys/types.h>
194 #endif
195 #if HAVE_NETINET_IN_SYSTM_H
196 # include <netinet/in_systm.h>
197 #endif
198 ])
199 AC_CHECK_HEADERS(netinet/ip.h, [], [],
200 [#if HAVE_STDINT_H
201 # include <stdint.h>
202 #endif
203 #if HAVE_SYS_TYPES_H
204 # include <sys/types.h>
205 #endif
206 #if HAVE_NETINET_IN_SYSTM_H
207 # include <netinet/in_systm.h>
208 #endif
209 #if HAVE_NETINET_IN_H
210 # include <netinet/in.h>
211 #endif
212 ])
213 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
214 [#if HAVE_STDINT_H
215 # include <stdint.h>
216 #endif
217 #if HAVE_SYS_TYPES_H
218 # include <sys/types.h>
219 #endif
220 #if HAVE_NETINET_IN_SYSTM_H
221 # include <netinet/in_systm.h>
222 #endif
223 #if HAVE_NETINET_IN_H
224 # include <netinet/in.h>
225 #endif
226 #if HAVE_NETINET_IP_H
227 # include <netinet/ip.h>
228 #endif
229 ])
230 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
231 [#if HAVE_STDINT_H
232 # include <stdint.h>
233 #endif
234 #if HAVE_SYS_TYPES_H
235 # include <sys/types.h>
236 #endif
237 #if HAVE_NETINET_IN_SYSTM_H
238 # include <netinet/in_systm.h>
239 #endif
240 #if HAVE_NETINET_IN_H
241 # include <netinet/in.h>
242 #endif
243 #if HAVE_NETINET_IP_H
244 # include <netinet/ip.h>
245 #endif
246 ])
247 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
248 [#if HAVE_STDINT_H
249 # include <stdint.h>
250 #endif
251 #if HAVE_SYS_TYPES_H
252 # include <sys/types.h>
253 #endif
254 #if HAVE_NETINET_IN_SYSTM_H
255 # include <netinet/in_systm.h>
256 #endif
257 #if HAVE_NETINET_IN_H
258 # include <netinet/in.h>
259 #endif
260 ])
261 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
262 [#if HAVE_STDINT_H
263 # include <stdint.h>
264 #endif
265 #if HAVE_SYS_TYPES_H
266 # include <sys/types.h>
267 #endif
268 #if HAVE_NETINET_IN_SYSTM_H
269 # include <netinet/in_systm.h>
270 #endif
271 #if HAVE_NETINET_IN_H
272 # include <netinet/in.h>
273 #endif
274 #if HAVE_NETINET_IP6_H
275 # include <netinet/ip6.h>
276 #endif
277 ])
278 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
279 [#if HAVE_STDINT_H
280 # include <stdint.h>
281 #endif
282 #if HAVE_SYS_TYPES_H
283 # include <sys/types.h>
284 #endif
285 #if HAVE_NETINET_IN_SYSTM_H
286 # include <netinet/in_systm.h>
287 #endif
288 #if HAVE_NETINET_IN_H
289 # include <netinet/in.h>
290 #endif
291 #if HAVE_NETINET_IP_H
292 # include <netinet/ip.h>
293 #endif
294 ])
295 AC_CHECK_HEADERS(netinet/udp.h, [], [],
296 [#if HAVE_STDINT_H
297 # include <stdint.h>
298 #endif
299 #if HAVE_SYS_TYPES_H
300 # include <sys/types.h>
301 #endif
302 #if HAVE_NETINET_IN_SYSTM_H
303 # include <netinet/in_systm.h>
304 #endif
305 #if HAVE_NETINET_IN_H
306 # include <netinet/in.h>
307 #endif
308 #if HAVE_NETINET_IP_H
309 # include <netinet/ip.h>
310 #endif
311 ])
312
313 have_ip6_ext="no"
314 AC_CHECK_TYPES([struct ip6_ext], [have_ip6_ext="yes"], [have_ip6_ext="no"],
315 [#if HAVE_STDINT_H
316 # include <stdint.h>
317 #endif
318 #if HAVE_SYS_TYPES_H
319 # include <sys/types.h>
320 #endif
321 #if HAVE_NETINET_IN_SYSTM_H
322 # include <netinet/in_systm.h>
323 #endif
324 #if HAVE_NETINET_IN_H
325 # include <netinet/in.h>
326 #endif
327 #if HAVE_NETINET_IP6_H
328 # include <netinet/ip6.h>
329 #endif
330 ])
331
332 if test "x$have_ip6_ext" = "xno"; then
333         SAVE_CFLAGS="$CFLAGS"
334         CFLAGS="$CFLAGS -DSOLARIS2=8"
335
336         AC_CHECK_TYPES([struct ip6_ext],
337                        [have_ip6_ext="yes, with -DSOLARIS2=8"],
338                        [have_ip6_ext="no"],
339 [#if HAVE_STDINT_H
340 # include <stdint.h>
341 #endif
342 #if HAVE_SYS_TYPES_H
343 # include <sys/types.h>
344 #endif
345 #if HAVE_NETINET_IN_SYSTM_H
346 # include <netinet/in_systm.h>
347 #endif
348 #if HAVE_NETINET_IN_H
349 # include <netinet/in.h>
350 #endif
351 #if HAVE_NETINET_IP6_H
352 # include <netinet/ip6.h>
353 #endif
354 ])
355
356         if test "x$have_ip6_ext" = "xno"; then
357                 CFLAGS="$SAVE_CFLAGS"
358         fi
359 fi
360
361 # For cpu modules
362 AC_CHECK_HEADERS(sys/dkstat.h)
363 if test "x$ac_system" = "xDarwin"
364 then
365         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)
366         AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
367         # For the battery plugin
368         AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
369 [
370 #if HAVE_IOKIT_IOKITLIB_H
371 #  include <IOKit/IOKitLib.h>
372 #endif
373 #if HAVE_IOKIT_IOTYPES_H
374 #  include <IOKit/IOTypes.h>
375 #endif
376 ])
377
378 fi
379
380 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
381 [
382 #if HAVE_SYS_TYPES_H
383 #  include <sys/types.h>
384 #endif
385 #if HAVE_SYS_PARAM_H
386 # include <sys/param.h>
387 #endif
388 ])
389
390 AC_MSG_CHECKING([for sysctl kern.cp_times])
391 if test -x /sbin/sysctl
392 then
393         /sbin/sysctl kern.cp_times 2>/dev/null
394         if test $? -eq 0
395         then
396                 AC_MSG_RESULT([yes])
397                 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
398                 [Define if sysctl supports kern.cp_times])
399         else
400                 AC_MSG_RESULT([no])
401         fi
402 else
403         AC_MSG_RESULT([no])
404 fi
405
406 # For hddtemp module
407 AC_CHECK_HEADERS(linux/major.h)
408
409 # For md module (Linux only)
410 if test "x$ac_system" = "xLinux"
411 then
412         AC_CHECK_HEADERS(linux/raid/md_u.h,
413                          [have_linux_raid_md_u_h="yes"],
414                          [have_linux_raid_md_u_h="no"],
415 [
416 #include <sys/ioctl.h>
417 #include <linux/major.h>
418 #include <linux/types.h>
419 ])
420 else
421         have_linux_raid_md_u_h="no"
422 fi
423
424 # For the swap module
425 have_linux_wireless_h="no"
426 if test "x$ac_system" = "xLinux"
427 then
428   AC_CHECK_HEADERS(linux/wireless.h,
429                    [have_linux_wireless_h="yes"],
430                    [have_linux_wireless_h="no"],
431 [
432 #include <dirent.h>
433 #include <sys/ioctl.h>
434 #include <sys/socket.h>
435 ])
436 fi
437
438 # For the swap module
439 have_sys_swap_h="yes"
440 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
441 [
442 #undef _FILE_OFFSET_BITS
443 #undef _LARGEFILE64_SOURCE
444 #if HAVE_SYS_TYPES_H
445 #  include <sys/types.h>
446 #endif
447 #if HAVE_SYS_PARAM_H
448 # include <sys/param.h>
449 #endif
450 ])
451
452 # For load module
453 # For the processes plugin
454 # For users module
455 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
456
457 # For interface plugin
458 AC_CHECK_HEADERS(ifaddrs.h)
459 AC_CHECK_HEADERS(net/if.h, [], [],
460 [
461 #if HAVE_SYS_TYPES_H
462 #  include <sys/types.h>
463 #endif
464 #if HAVE_SYS_SOCKET_H
465 #  include <sys/socket.h>
466 #endif
467 ])
468 AC_CHECK_HEADERS(linux/if.h, [], [],
469 [
470 #if HAVE_SYS_TYPES_H
471 #  include <sys/types.h>
472 #endif
473 #if HAVE_SYS_SOCKET_H
474 #  include <sys/socket.h>
475 #endif
476 ])
477 AC_CHECK_HEADERS(linux/inet_diag.h, [], [],
478 [
479 #if HAVE_SYS_TYPES_H
480 #  include <sys/types.h>
481 #endif
482 #if HAVE_SYS_SOCKET_H
483 #  include <sys/socket.h>
484 #endif
485 #if HAVE_LINUX_INET_DIAG_H
486 # include <linux/inet_diag.h>
487 #endif
488 ])
489 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
490 [
491 #if HAVE_SYS_TYPES_H
492 #  include <sys/types.h>
493 #endif
494 #if HAVE_SYS_SOCKET_H
495 #  include <sys/socket.h>
496 #endif
497 #if HAVE_LINUX_IF_H
498 # include <linux/if.h>
499 #endif
500 ])
501
502 # For ethstat module
503 AC_CHECK_HEADERS(linux/sockios.h,
504     [have_linux_sockios_h="yes"],
505     [have_linux_sockios_h="no"],
506     [
507 #if HAVE_SYS_IOCTL_H
508 # include <sys/ioctl.h>
509 #endif
510 #if HAVE_NET_IF_H
511 # include <net/if.h>
512 #endif
513     ])
514 AC_CHECK_HEADERS(linux/ethtool.h,
515     [have_linux_ethtool_h="yes"],
516     [have_linux_ethtool_h="no"],
517     [
518 #if HAVE_SYS_IOCTL_H
519 # include <sys/ioctl.h>
520 #endif
521 #if HAVE_NET_IF_H
522 # include <net/if.h>
523 #endif
524 #if HAVE_LINUX_SOCKIOS_H
525 # include <linux/sockios.h>
526 #endif
527     ])
528
529 # For ipvs module
530 have_linux_ip_vs_h="no"
531 have_net_ip_vs_h="no"
532 have_ip_vs_h="no"
533 ip_vs_h_needs_kernel_cflags="no"
534 if test "x$ac_system" = "xLinux"
535 then
536         AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
537         AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
538         AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
539
540         if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
541         then
542                 SAVE_CFLAGS="$CFLAGS"
543                 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
544
545                 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
546
547                 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
548                 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
549                 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
550
551                 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
552                 then
553                         ip_vs_h_needs_kernel_cflags="yes"
554                 fi
555
556                 CFLAGS="$SAVE_CFLAGS"
557         fi
558 fi
559 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
560
561 # For quota module
562 AC_CHECK_HEADERS(sys/ucred.h, [], [],
563 [
564 #if HAVE_SYS_TYPES_H
565 #  include <sys/types.h>
566 #endif
567 #if HAVE_SYS_PARAM_H
568 # include <sys/param.h>
569 #endif
570 ])
571
572 # For mount interface
573 AC_CHECK_HEADERS(sys/mount.h, [], [],
574 [
575 #if HAVE_SYS_TYPES_H
576 #  include <sys/types.h>
577 #endif
578 #if HAVE_SYS_PARAM_H
579 # include <sys/param.h>
580 #endif
581 ])
582
583 # For the email plugin
584 AC_CHECK_HEADERS(linux/un.h, [], [],
585 [
586 #if HAVE_SYS_SOCKET_H
587 #       include <sys/socket.h>
588 #endif
589 ])
590
591 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)
592
593 # For the dns plugin
594 AC_CHECK_HEADERS(arpa/nameser.h)
595 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
596 [
597 #if HAVE_ARPA_NAMESER_H
598 # include <arpa/nameser.h>
599 #endif
600 ])
601
602 AC_CHECK_HEADERS(net/if_arp.h, [], [],
603 [#if HAVE_SYS_SOCKET_H
604 # include <sys/socket.h>
605 #endif
606 ])
607 AC_CHECK_HEADERS(net/ppp_defs.h)
608 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
609 [#if HAVE_NET_PPP_DEFS_H
610 # include <net/ppp_defs.h>
611 #endif
612 ])
613 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
614 [#if HAVE_STDINT_H
615 # include <stdint.h>
616 #endif
617 #if HAVE_SYS_TYPES_H
618 # include <sys/types.h>
619 #endif
620 #if HAVE_SYS_SOCKET_H
621 # include <sys/socket.h>
622 #endif
623 #if HAVE_NET_IF_H
624 # include <net/if.h>
625 #endif
626 #if HAVE_NETINET_IN_H
627 # include <netinet/in.h>
628 #endif
629 ])
630
631 AC_CHECK_HEADERS(netinet/ip_compat.h)
632
633 have_net_pfvar_h="no"
634 AC_CHECK_HEADERS(net/pfvar.h,
635                [have_net_pfvar_h="yes"],
636                [have_net_pfvar_h="no"],
637 [
638 #if HAVE_SYS_IOCTL_H
639 # include <sys/ioctl.h>
640 #endif
641 #if HAVE_SYS_SOCKET_H
642 # include <sys/socket.h>
643 #endif
644 #if HAVE_NET_IF_H
645 # include <net/if.h>
646 #endif
647 #if HAVE_NETINET_IN_H
648 # include <netinet/in.h>
649 #endif
650 ])
651
652 # For the multimeter plugin
653 have_termios_h="no"
654 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
655
656 # For the turbostat plugin
657 have_asm_msrindex_h="no"
658 AC_CHECK_HEADERS(asm/msr-index.h, [have_asm_msrindex_h="yes"])
659
660 if test "x$have_asm_msrindex_h" = "xyes"
661 then
662   AC_CACHE_CHECK([whether asm/msr-index.h has MSR_PKG_C10_RESIDENCY],
663                  [c_cv_have_usable_asm_msrindex_h],
664                  AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
665 [[[
666 #include<asm/msr-index.h>
667 ]]],
668 [[[
669 int y = MSR_PKG_C10_RESIDENCY;
670 return(y);
671 ]]]
672   )],
673                  [c_cv_have_usable_asm_msrindex_h="yes"],
674                  [c_cv_have_usable_asm_msrindex_h="no"],
675                                   )
676                  )
677 fi
678
679 have_cpuid_h="no"
680 AC_CHECK_HEADERS(cpuid.h, [have_cpuid_h="yes"])
681
682 AC_CHECK_HEADERS(sys/capability.h)
683 #
684 # Checks for typedefs, structures, and compiler characteristics.
685 #
686 AC_C_CONST
687 AC_C_INLINE
688 AC_TYPE_OFF_T
689 AC_TYPE_PID_T
690 AC_TYPE_SIZE_T
691 AC_TYPE_SSIZE_T
692 AC_TYPE_UID_T
693 AC_TYPE_UINT32_T
694 AC_HEADER_TIME
695
696 #
697 # Checks for library functions.
698 #
699 AC_PROG_GCC_TRADITIONAL
700 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)
701
702 AC_FUNC_STRERROR_R
703
704 SAVE_CFLAGS="$CFLAGS"
705 # Emulate behavior of src/Makefile.am
706 if test "x$GCC" = "xyes"
707 then
708         CFLAGS="$CFLAGS -Wall -Werror"
709 fi
710
711 AC_CACHE_CHECK([for strtok_r],
712   [c_cv_have_strtok_r_default],
713   AC_LINK_IFELSE(
714     [AC_LANG_PROGRAM(
715 [[[
716 #include <stdlib.h>
717 #include <stdio.h>
718 #include <string.h>
719 ]]],
720 [[[
721       char buffer[] = "foo,bar,baz";
722       char *token;
723       char *dummy;
724       char *saveptr;
725
726       dummy = buffer;
727       saveptr = NULL;
728       while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
729       {
730         dummy = NULL;
731         printf ("token = %s;\n", token);
732       }
733 ]]]
734     )],
735     [c_cv_have_strtok_r_default="yes"],
736     [c_cv_have_strtok_r_default="no"]
737   )
738 )
739
740 if test "x$c_cv_have_strtok_r_default" = "xno"
741 then
742   CFLAGS="$CFLAGS -D_REENTRANT=1"
743
744   AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
745     [c_cv_have_strtok_r_reentrant],
746     AC_LINK_IFELSE(
747       [AC_LANG_PROGRAM(
748 [[[
749 #include <stdlib.h>
750 #include <stdio.h>
751 #include <string.h>
752 ]]],
753 [[[
754         char buffer[] = "foo,bar,baz";
755         char *token;
756         char *dummy;
757         char *saveptr;
758
759         dummy = buffer;
760         saveptr = NULL;
761         while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
762         {
763           dummy = NULL;
764           printf ("token = %s;\n", token);
765         }
766 ]]]
767       )],
768       [c_cv_have_strtok_r_reentrant="yes"],
769       [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
770     )
771   )
772 fi
773
774 CFLAGS="$SAVE_CFLAGS"
775 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
776 then
777         CFLAGS="$CFLAGS -D_REENTRANT=1"
778 fi
779
780 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
781
782 socket_needs_socket="no"
783 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
784 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
785
786 clock_gettime_needs_rt="no"
787 clock_gettime_needs_posix4="no"
788 have_clock_gettime="no"
789 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
790 if test "x$have_clock_gettime" = "xno"
791 then
792         AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
793                                          have_clock_gettime="yes"])
794 fi
795 if test "x$have_clock_gettime" = "xno"
796 then
797         AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
798                                              have_clock_gettime="yes"])
799 fi
800 if test "x$have_clock_gettime" = "xyes"
801 then
802         AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
803 else
804         AC_MSG_WARN(cannot find clock_gettime)
805 fi
806
807 nanosleep_needs_rt="no"
808 nanosleep_needs_posix4="no"
809 AC_CHECK_FUNCS(nanosleep,
810     [],
811     AC_CHECK_LIB(rt, nanosleep,
812         [nanosleep_needs_rt="yes"],
813         AC_CHECK_LIB(posix4, nanosleep,
814             [nanosleep_needs_posix4="yes"],
815             AC_MSG_ERROR(cannot find nanosleep))))
816
817 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
818 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
819
820 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
821 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
822 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
823 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
824 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
825 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
826 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
827 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
828 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
829 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
830 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
831 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
832
833 # Check for strptime {{{
834 if test "x$GCC" = "xyes"
835 then
836         SAVE_CFLAGS="$CFLAGS"
837         CFLAGS="$CFLAGS -Wall -Wextra -Werror"
838 fi
839
840 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
841 if test "x$have_strptime" = "xyes"
842 then
843         AC_CACHE_CHECK([whether strptime is exported by default],
844                        [c_cv_have_strptime_default],
845                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
846 [[[
847 #include <time.h>
848 ]]],
849 [[[
850  struct tm stm;
851  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
852 ]]]
853                        )],
854                        [c_cv_have_strptime_default="yes"],
855                        [c_cv_have_strptime_default="no"]))
856 fi
857 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
858 then
859         AC_CACHE_CHECK([whether strptime needs standards mode],
860                        [c_cv_have_strptime_standards],
861                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
862 [[[
863 #ifndef _ISOC99_SOURCE
864 # define _ISOC99_SOURCE 1
865 #endif
866 #ifndef _POSIX_C_SOURCE
867 # define _POSIX_C_SOURCE 200112L
868 #endif
869 #ifndef _XOPEN_SOURCE
870 # define _XOPEN_SOURCE 500
871 #endif
872 #include <time.h>
873 ]]],
874 [[[
875  struct tm stm;
876  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
877 ]]]
878                        )],
879                        [c_cv_have_strptime_standards="yes"],
880                        [c_cv_have_strptime_standards="no"]))
881
882         if test "x$c_cv_have_strptime_standards" = "xyes"
883         then
884                 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
885         else
886                 have_strptime="no"
887         fi
888 fi
889
890 if test "x$GCC" = "xyes"
891 then
892         CFLAGS="$SAVE_CFLAGS"
893 fi
894 # }}} Check for strptime
895
896 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
897 if test "x$have_swapctl" = "xyes"; then
898         AC_CACHE_CHECK([whether swapctl takes two arguments],
899                 [c_cv_have_swapctl_two_args],
900                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
901 [[[
902 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
903 #  undef _FILE_OFFSET_BITS
904 #  undef _LARGEFILE64_SOURCE
905 #endif
906 #include <sys/stat.h>
907 #include <sys/param.h>
908 #include <sys/swap.h>
909 #include <unistd.h>
910 ]]],
911 [[[
912 int num = swapctl(0, NULL);
913 ]]]
914                         )],
915                         [c_cv_have_swapctl_two_args="yes"],
916                         [c_cv_have_swapctl_two_args="no"]
917                 )
918         )
919         AC_CACHE_CHECK([whether swapctl takes three arguments],
920                 [c_cv_have_swapctl_three_args],
921                 AC_COMPILE_IFELSE(
922                         [AC_LANG_PROGRAM(
923 [[[
924 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
925 #  undef _FILE_OFFSET_BITS
926 #  undef _LARGEFILE64_SOURCE
927 #endif
928 #include <sys/stat.h>
929 #include <sys/param.h>
930 #include <sys/swap.h>
931 #include <unistd.h>
932 ]]],
933 [[[
934 int num = swapctl(0, NULL, 0);
935 ]]]
936                         )],
937                         [c_cv_have_swapctl_three_args="yes"],
938                         [c_cv_have_swapctl_three_args="no"]
939                 )
940         )
941 fi
942 # Check for different versions of `swapctl' here..
943 if test "x$have_swapctl" = "xyes"; then
944         if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
945                 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
946                           [Define if the function swapctl exists and takes two arguments.])
947         fi
948         if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
949                 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
950                           [Define if the function swapctl exists and takes three arguments.])
951         fi
952 fi
953
954 # Check for NAN
955 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
956 [
957  if test "x$withval" = "xno"; then
958          nan_type="none"
959  else if test "x$withval" = "xyes"; then
960          nan_type="zero"
961  else
962          nan_type="$withval"
963  fi; fi
964 ],
965 [nan_type="none"])
966 if test "x$nan_type" = "xnone"; then
967   AC_CACHE_CHECK([whether NAN is defined by default],
968     [c_cv_have_nan_default],
969     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
970 [[[
971 #include <stdlib.h>
972 #include <math.h>
973 static double foo = NAN;
974 ]]],
975 [[[
976        if (isnan (foo))
977         return 0;
978        else
979         return 1;
980 ]]]
981       )],
982       [c_cv_have_nan_default="yes"],
983       [c_cv_have_nan_default="no"]
984     )
985   )
986   if test "x$c_cv_have_nan_default" = "xyes"
987   then
988     nan_type="default"
989   fi
990 fi
991 if test "x$nan_type" = "xnone"; then
992   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
993     [c_cv_have_nan_isoc],
994     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
995 [[[
996 #include <stdlib.h>
997 #define __USE_ISOC99 1
998 #include <math.h>
999 static double foo = NAN;
1000 ]]],
1001 [[[
1002        if (isnan (foo))
1003         return 0;
1004        else
1005         return 1;
1006 ]]]
1007       )],
1008       [c_cv_have_nan_isoc="yes"],
1009       [c_cv_have_nan_isoc="no"]
1010     )
1011   )
1012   if test "x$c_cv_have_nan_isoc" = "xyes"
1013   then
1014     nan_type="isoc99"
1015   fi
1016 fi
1017 if test "x$nan_type" = "xnone"; then
1018   SAVE_LDFLAGS=$LDFLAGS
1019   LDFLAGS="$LDFLAGS -lm"
1020   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
1021     [c_cv_have_nan_zero],
1022     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1023 [[[
1024 #include <stdlib.h>
1025 #include <math.h>
1026 #ifdef NAN
1027 # undef NAN
1028 #endif
1029 #define NAN (0.0 / 0.0)
1030 #ifndef isnan
1031 # define isnan(f) ((f) != (f))
1032 #endif
1033 static double foo = NAN;
1034 ]]],
1035 [[[
1036        if (isnan (foo))
1037         return 0;
1038        else
1039         return 1;
1040 ]]]
1041       )],
1042       [c_cv_have_nan_zero="yes"],
1043       [c_cv_have_nan_zero="no"]
1044     )
1045   )
1046   LDFLAGS=$SAVE_LDFLAGS
1047   if test "x$c_cv_have_nan_zero" = "xyes"
1048   then
1049     nan_type="zero"
1050   fi
1051 fi
1052
1053 if test "x$nan_type" = "xdefault"; then
1054   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
1055     [Define if NAN is defined by default and can initialize static variables.])
1056 else if test "x$nan_type" = "xisoc99"; then
1057   AC_DEFINE(NAN_STATIC_ISOC, 1,
1058     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
1059 else if test "x$nan_type" = "xzero"; then
1060   AC_DEFINE(NAN_ZERO_ZERO, 1,
1061     [Define if NAN can be defined as (0.0 / 0.0)])
1062 else
1063   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
1064 fi; fi; fi
1065
1066 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
1067 [
1068  if test "x$withval" = "xnothing"; then
1069         fp_layout_type="nothing"
1070  else if test "x$withval" = "xendianflip"; then
1071         fp_layout_type="endianflip"
1072  else if test "x$withval" = "xintswap"; then
1073         fp_layout_type="intswap"
1074  else
1075         AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
1076 fi; fi; fi
1077 ],
1078 [fp_layout_type="unknown"])
1079
1080 if test "x$fp_layout_type" = "xunknown"; then
1081   AC_CACHE_CHECK([if doubles are stored in x86 representation],
1082     [c_cv_fp_layout_need_nothing],
1083     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1084 [[[
1085 #include <stdlib.h>
1086 #include <stdio.h>
1087 #include <string.h>
1088 #if HAVE_STDINT_H
1089 # include <stdint.h>
1090 #endif
1091 #if HAVE_INTTYPES_H
1092 # include <inttypes.h>
1093 #endif
1094 #if HAVE_STDBOOL_H
1095 # include <stdbool.h>
1096 #endif
1097 ]]],
1098 [[[
1099         uint64_t i0;
1100         uint64_t i1;
1101         uint8_t c[8];
1102         double d;
1103
1104         d = 8.642135e130;
1105         memcpy ((void *) &i0, (void *) &d, 8);
1106
1107         i1 = i0;
1108         memcpy ((void *) c, (void *) &i1, 8);
1109
1110         if ((c[0] == 0x2f) && (c[1] == 0x25)
1111                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1112                         && (c[4] == 0x43) && (c[5] == 0x2b)
1113                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1114                 return (0);
1115         else
1116                 return (1);
1117 ]]]
1118       )],
1119       [c_cv_fp_layout_need_nothing="yes"],
1120       [c_cv_fp_layout_need_nothing="no"]
1121     )
1122   )
1123   if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
1124     fp_layout_type="nothing"
1125   fi
1126 fi
1127 if test "x$fp_layout_type" = "xunknown"; then
1128   AC_CACHE_CHECK([if endianflip converts to x86 representation],
1129     [c_cv_fp_layout_need_endianflip],
1130     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1131 [[[
1132 #include <stdlib.h>
1133 #include <stdio.h>
1134 #include <string.h>
1135 #if HAVE_STDINT_H
1136 # include <stdint.h>
1137 #endif
1138 #if HAVE_INTTYPES_H
1139 # include <inttypes.h>
1140 #endif
1141 #if HAVE_STDBOOL_H
1142 # include <stdbool.h>
1143 #endif
1144 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1145                        (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1146                        (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1147                        (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
1148                        (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
1149                        (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1150                        (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1151                        (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1152 ]]],
1153 [[[
1154         uint64_t i0;
1155         uint64_t i1;
1156         uint8_t c[8];
1157         double d;
1158
1159         d = 8.642135e130;
1160         memcpy ((void *) &i0, (void *) &d, 8);
1161
1162         i1 = endianflip (i0);
1163         memcpy ((void *) c, (void *) &i1, 8);
1164
1165         if ((c[0] == 0x2f) && (c[1] == 0x25)
1166                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1167                         && (c[4] == 0x43) && (c[5] == 0x2b)
1168                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1169                 return (0);
1170         else
1171                 return (1);
1172 ]]]
1173       )],
1174       [c_cv_fp_layout_need_endianflip="yes"],
1175       [c_cv_fp_layout_need_endianflip="no"]
1176     )
1177   )
1178   if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1179     fp_layout_type="endianflip"
1180   fi
1181 fi
1182 if test "x$fp_layout_type" = "xunknown"; then
1183   AC_CACHE_CHECK([if intswap converts to x86 representation],
1184     [c_cv_fp_layout_need_intswap],
1185     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1186 [[[
1187 #include <stdlib.h>
1188 #include <stdio.h>
1189 #include <string.h>
1190 #if HAVE_STDINT_H
1191 # include <stdint.h>
1192 #endif
1193 #if HAVE_INTTYPES_H
1194 # include <inttypes.h>
1195 #endif
1196 #if HAVE_STDBOOL_H
1197 # include <stdbool.h>
1198 #endif
1199 #define intswap(A)    ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1200                        (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1201 ]]],
1202 [[[
1203         uint64_t i0;
1204         uint64_t i1;
1205         uint8_t c[8];
1206         double d;
1207
1208         d = 8.642135e130;
1209         memcpy ((void *) &i0, (void *) &d, 8);
1210
1211         i1 = intswap (i0);
1212         memcpy ((void *) c, (void *) &i1, 8);
1213
1214         if ((c[0] == 0x2f) && (c[1] == 0x25)
1215                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1216                         && (c[4] == 0x43) && (c[5] == 0x2b)
1217                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1218                 return (0);
1219         else
1220                 return (1);
1221 ]]]
1222       )],
1223       [c_cv_fp_layout_need_intswap="yes"],
1224       [c_cv_fp_layout_need_intswap="no"]
1225     )
1226   )
1227   if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1228     fp_layout_type="intswap"
1229   fi
1230 fi
1231
1232 if test "x$fp_layout_type" = "xnothing"; then
1233   AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1234   [Define if doubles are stored in x86 representation.])
1235 else if test "x$fp_layout_type" = "xendianflip"; then
1236   AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1237   [Define if endianflip is needed to convert to x86 representation.])
1238 else if test "x$fp_layout_type" = "xintswap"; then
1239   AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1240   [Define if intswap is needed to convert to x86 representation.])
1241 else
1242   AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1243 fi; fi; fi
1244
1245 # --with-useragent {{{
1246 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1247 [
1248     if test "x$withval" != "xno" && test "x$withval" != "xyes"
1249     then
1250         AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1251     fi
1252 ])
1253
1254 # }}}
1255
1256 have_getfsstat="no"
1257 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1258 have_getvfsstat="no"
1259 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1260 have_listmntent="no"
1261 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1262 have_getmntent_r="no"
1263 AC_CHECK_FUNCS(getmntent_r, [have_getmntent_r="yes"])
1264
1265 have_getmntent="no"
1266 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1267 if test "x$have_getmntent" = "xno"; then
1268         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1269 fi
1270 if test "x$have_getmntent" = "xno"; then
1271         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1272 fi
1273 if test "x$have_getmntent" = "xno"; then
1274         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1275 fi
1276
1277 if test "x$have_getmntent" = "xc"; then
1278         AC_CACHE_CHECK([whether getmntent takes one argument],
1279                 [c_cv_have_one_getmntent],
1280                 AC_COMPILE_IFELSE(
1281                         [AC_LANG_PROGRAM(
1282 [[[
1283 #include "$srcdir/src/utils_mount.h"
1284 ]]],
1285 [[[
1286 FILE *fh;
1287 struct mntent *me;
1288 fh = setmntent ("/etc/mtab", "r");
1289 me = getmntent (fh);
1290 return(me->mnt_passno);
1291 ]]]
1292                         )],
1293                         [c_cv_have_one_getmntent="yes"],
1294                         [c_cv_have_one_getmntent="no"]
1295                 )
1296         )
1297         AC_CACHE_CHECK([whether getmntent takes two arguments],
1298                 [c_cv_have_two_getmntent],
1299                 AC_COMPILE_IFELSE(
1300                         [AC_LANG_PROGRAM(
1301 [[[
1302 #include "$srcdir/src/utils_mount.h"
1303 ]]],
1304 [[[
1305                                  FILE *fh;
1306                                  struct mnttab mt;
1307                                  int status;
1308                                  fh = fopen ("/etc/mnttab", "r");
1309                                  status = getmntent (fh, &mt);
1310                                  return(status);
1311 ]]]
1312                         )],
1313                         [c_cv_have_two_getmntent="yes"],
1314                         [c_cv_have_two_getmntent="no"]
1315                 )
1316         )
1317 fi
1318
1319 # Check for different versions of `getmntent' here..
1320
1321 if test "x$have_getmntent" = "xc"; then
1322         if test "x$c_cv_have_one_getmntent" = "xyes"; then
1323                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1324                           [Define if the function getmntent exists and takes one argument.])
1325         fi
1326         if test "x$c_cv_have_two_getmntent" = "xyes"; then
1327                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1328                           [Define if the function getmntent exists and takes two arguments.])
1329         fi
1330 fi
1331 if test "x$have_getmntent" = "xsun"; then
1332         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1333                   [Define if the function getmntent exists. It's the version from libsun.])
1334 fi
1335 if test "x$have_getmntent" = "xseq"; then
1336         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1337                   [Define if the function getmntent exists. It's the version from libseq.])
1338 fi
1339 if test "x$have_getmntent" = "xgen"; then
1340         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1341                   [Define if the function getmntent exists. It's the version from libgen.])
1342 fi
1343
1344 # Check for htonll
1345 AC_CACHE_CHECK([if have htonll defined],
1346                   [c_cv_have_htonll],
1347                   AC_LINK_IFELSE([AC_LANG_PROGRAM(
1348 [[[
1349 #include <sys/types.h>
1350 #include <netinet/in.h>
1351 #if HAVE_INTTYPES_H
1352 # include <inttypes.h>
1353 #endif
1354 ]]],
1355 [[[
1356           return htonll(0);
1357 ]]]
1358     )],
1359     [c_cv_have_htonll="yes"],
1360     [c_cv_have_htonll="no"]
1361   )
1362 )
1363 if test "x$c_cv_have_htonll" = "xyes"
1364 then
1365     AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1366 fi
1367
1368 # Check for structures
1369 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1370         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1371         [],
1372         [
1373         #include <sys/types.h>
1374         #include <sys/socket.h>
1375         #include <net/if.h>
1376         ])
1377 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1378         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1379         [],
1380         [
1381         #include <sys/types.h>
1382         #include <sys/socket.h>
1383         #include <linux/if.h>
1384         #include <linux/netdevice.h>
1385         ])
1386 AC_CHECK_MEMBERS([struct inet_diag_req.id, struct inet_diag_req.idiag_states],
1387         [AC_DEFINE(HAVE_STRUCT_LINUX_INET_DIAG_REQ, 1, [Define if struct inet_diag_req exists and is usable.])],
1388         [],
1389         [
1390         #include <linux/inet_diag.h>
1391         ])
1392
1393
1394 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1395         [],
1396         [
1397         #include <netinet/in.h>
1398         #include <net/if.h>
1399         ])
1400
1401 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1402         [
1403                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1404                         [Define if struct kinfo_proc exists in the FreeBSD variant.])
1405                 have_struct_kinfo_proc_freebsd="yes"
1406         ],
1407         [
1408                 have_struct_kinfo_proc_freebsd="no"
1409         ],
1410         [
1411 #include <kvm.h>
1412 #include <sys/param.h>
1413 #include <sys/sysctl.h>
1414 #include <sys/user.h>
1415         ])
1416
1417 AC_CHECK_MEMBERS([struct kinfo_proc.p_pid, struct kinfo_proc.p_vm_rssize],
1418         [
1419                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1420                         [Define if struct kinfo_proc exists in the OpenBSD variant.])
1421                 have_struct_kinfo_proc_openbsd="yes"
1422         ],
1423         [
1424                 have_struct_kinfo_proc_openbsd="no"
1425         ],
1426         [
1427 #include <sys/param.h>
1428 #include <sys/sysctl.h>
1429 #include <kvm.h>
1430         ])
1431
1432 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1433 [#define _BSD_SOURCE
1434 #define _DEFAULT_SOURCE
1435 #if HAVE_STDINT_H
1436 # include <stdint.h>
1437 #endif
1438 #if HAVE_SYS_TYPES_H
1439 # include <sys/types.h>
1440 #endif
1441 #if HAVE_NETINET_IN_SYSTM_H
1442 # include <netinet/in_systm.h>
1443 #endif
1444 #if HAVE_NETINET_IN_H
1445 # include <netinet/in.h>
1446 #endif
1447 #if HAVE_NETINET_IP_H
1448 # include <netinet/ip.h>
1449 #endif
1450 #if HAVE_NETINET_UDP_H
1451 # include <netinet/udp.h>
1452 #endif
1453 ])
1454 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1455 [#define _BSD_SOURCE
1456 #define _DEFAULT_SOURCE
1457 #if HAVE_STDINT_H
1458 # include <stdint.h>
1459 #endif
1460 #if HAVE_SYS_TYPES_H
1461 # include <sys/types.h>
1462 #endif
1463 #if HAVE_NETINET_IN_SYSTM_H
1464 # include <netinet/in_systm.h>
1465 #endif
1466 #if HAVE_NETINET_IN_H
1467 # include <netinet/in.h>
1468 #endif
1469 #if HAVE_NETINET_IP_H
1470 # include <netinet/ip.h>
1471 #endif
1472 #if HAVE_NETINET_UDP_H
1473 # include <netinet/udp.h>
1474 #endif
1475 ])
1476
1477 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1478         [],
1479         [],
1480         [
1481 #if HAVE_KSTAT_H
1482 # include <kstat.h>
1483 #endif
1484         ])
1485
1486 #
1487 # Checks for libraries begin here
1488 #
1489
1490 with_libresolv="yes"
1491 AC_CHECK_LIB(resolv, res_search,
1492 [
1493         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1494 ],
1495 [with_libresolv="no"])
1496 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1497
1498 dnl Check for HAL (hardware abstraction library)
1499 with_libhal="yes"
1500 AC_CHECK_LIB(hal,libhal_device_property_exists,
1501              [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1502              [with_libhal="no"])
1503 if test "x$with_libhal" = "xyes"; then
1504         if test "x$PKG_CONFIG" != "x"; then
1505                 BUILD_WITH_LIBHAL_CFLAGS="`$PKG_CONFIG --cflags hal`"
1506                 BUILD_WITH_LIBHAL_LIBS="`$PKG_CONFIG --libs hal`"
1507                 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1508                 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1509         fi
1510 fi
1511
1512 m4_divert_once([HELP_WITH], [
1513 collectd additional packages:])
1514
1515 if test "x$ac_system" = "xAIX"
1516 then
1517         with_perfstat="yes"
1518         with_procinfo="yes"
1519 else
1520         with_perfstat="no (AIX only)"
1521         with_procinfo="no (AIX only)"
1522 fi
1523
1524 if test "x$with_perfstat" = "xyes"
1525 then
1526         AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1527 #       AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1528 fi
1529 if test "x$with_perfstat" = "xyes"
1530 then
1531          AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1532          # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1533          AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1534          if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1535          then
1536                 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1537          fi
1538 fi
1539 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1540
1541 # Processes plugin under AIX.
1542 if test "x$with_procinfo" = "xyes"
1543 then
1544         AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1545 fi
1546 if test "x$with_procinfo" = "xyes"
1547 then
1548          AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1549 fi
1550
1551 if test "x$ac_system" = "xSolaris"
1552 then
1553         with_kstat="yes"
1554         with_devinfo="yes"
1555 else
1556         with_kstat="no (Solaris only)"
1557         with_devinfo="no (Solaris only)"
1558 fi
1559
1560 if test "x$with_kstat" = "xyes"
1561 then
1562         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1563 fi
1564 if test "x$with_kstat" = "xyes"
1565 then
1566         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1567         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1568 fi
1569 if test "x$with_kstat" = "xyes"
1570 then
1571         AC_DEFINE(HAVE_LIBKSTAT, 1,
1572                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1573 fi
1574 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1575 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1576
1577 with_libiokit="no"
1578 if test "x$ac_system" = "xDarwin"
1579 then
1580         with_libiokit="yes"
1581 else
1582         with_libiokit="no"
1583 fi
1584 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1585
1586 with_libkvm="no"
1587 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1588 if test "x$with_kvm_getprocs" = "xyes"
1589 then
1590         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1591                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1592         with_libkvm="yes"
1593 fi
1594 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1595
1596 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1597 if test "x$with_kvm_getswapinfo" = "xyes"
1598 then
1599         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1600                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1601         with_libkvm="yes"
1602 fi
1603 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1604
1605 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1606 if test "x$with_kvm_nlist" = "xyes"
1607 then
1608         AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1609         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1610                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1611         with_libkvm="yes"
1612 fi
1613 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1614
1615 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1616 if test "x$with_kvm_openfiles" = "xyes"
1617 then
1618         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1619                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1620         with_libkvm="yes"
1621 fi
1622 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1623
1624 # --with-libaquaero5 {{{
1625 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1626 [
1627  if test "x$withval" = "xyes"
1628  then
1629          with_libaquaero5="yes"
1630  else if test "x$withval" = "xno"
1631  then
1632          with_libaquaero5="no"
1633  else
1634          with_libaquaero5="yes"
1635          LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1636          LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1637  fi; fi
1638 ],
1639 [with_libaquaero5="yes"])
1640
1641 SAVE_CPPFLAGS="$CPPFLAGS"
1642 SAVE_LDFLAGS="$LDFLAGS"
1643
1644 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1645 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1646
1647 if test "x$with_libaquaero5" = "xyes"
1648 then
1649         if test "x$LIBAQUAERO5_CFLAGS" != "x"
1650         then
1651                 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1652         fi
1653         AC_CHECK_HEADERS(libaquaero5.h,
1654         [with_libaquaero5="yes"],
1655         [with_libaquaero5="no (libaquaero5.h not found)"])
1656 fi
1657 if test "x$with_libaquaero5" = "xyes"
1658 then
1659         if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1660         then
1661                 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1662         fi
1663         AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1664         [with_libaquaero5="yes"],
1665         [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1666 fi
1667
1668 CPPFLAGS="$SAVE_CPPFLAGS"
1669 LDFLAGS="$SAVE_LDFLAGS"
1670
1671 if test "x$with_libaquaero5" = "xyes"
1672 then
1673         BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1674         BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1675         AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1676         AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1677 fi
1678 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1679 # }}}
1680
1681 # --with-libhiredis {{{
1682 AC_ARG_WITH(libhiredis, [AS_HELP_STRING([--with-libhiredis@<:@=PREFIX@:>@],
1683       [Path to libhiredis.])],
1684 [
1685  if test "x$withval" = "xyes"
1686  then
1687          with_libhiredis="yes"
1688  else if test "x$withval" = "xno"
1689  then
1690          with_libhiredis="no"
1691  else
1692          with_libhiredis="yes"
1693          LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS -I$withval/include"
1694          LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS -L$withval/lib"
1695  fi; fi
1696 ],
1697 [with_libhiredis="yes"])
1698
1699 SAVE_CPPFLAGS="$CPPFLAGS"
1700 SAVE_LDFLAGS="$LDFLAGS"
1701
1702 CPPFLAGS="$CPPFLAGS $LIBHIREDIS_CPPFLAGS"
1703 LDFLAGS="$LDFLAGS $LIBHIREDIS_LDFLAGS"
1704
1705 if test "x$with_libhiredis" = "xyes"
1706 then
1707         if test "x$LIBHIREDIS_CPPFLAGS" != "x"
1708         then
1709                 AC_MSG_NOTICE([libhiredis CPPFLAGS: $LIBHIREDIS_CPPFLAGS])
1710         fi
1711         AC_CHECK_HEADERS(hiredis/hiredis.h,
1712         [with_libhiredis="yes"],
1713         [with_libhiredis="no (hiredis.h not found)"])
1714 fi
1715 if test "x$with_libhiredis" = "xyes"
1716 then
1717         if test "x$LIBHIREDIS_LDFLAGS" != "x"
1718         then
1719                 AC_MSG_NOTICE([libhiredis LDFLAGS: $LIBHIREDIS_LDFLAGS])
1720         fi
1721         AC_CHECK_LIB(hiredis, redisCommand,
1722         [with_libhiredis="yes"],
1723         [with_libhiredis="no (symbol 'redisCommand' not found)"])
1724
1725 fi
1726
1727 CPPFLAGS="$SAVE_CPPFLAGS"
1728 LDFLAGS="$SAVE_LDFLAGS"
1729
1730 if test "x$with_libhiredis" = "xyes"
1731 then
1732         BUILD_WITH_LIBHIREDIS_CPPFLAGS="$LIBHIREDIS_CPPFLAGS"
1733         BUILD_WITH_LIBHIREDIS_LDFLAGS="$LIBHIREDIS_LDFLAGS"
1734         AC_SUBST(BUILD_WITH_LIBHIREDIS_CPPFLAGS)
1735         AC_SUBST(BUILD_WITH_LIBHIREDIS_LDFLAGS)
1736 fi
1737 AM_CONDITIONAL(BUILD_WITH_LIBHIREDIS, test "x$with_libhiredis" = "xyes")
1738 # }}}
1739
1740 # --with-libcurl {{{
1741 with_curl_config="curl-config"
1742 with_curl_cflags=""
1743 with_curl_libs=""
1744 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1745 [
1746         if test "x$withval" = "xno"
1747         then
1748                 with_libcurl="no"
1749         else if test "x$withval" = "xyes"
1750         then
1751                 with_libcurl="yes"
1752         else
1753                 if test -f "$withval" && test -x "$withval"
1754                 then
1755                         with_curl_config="$withval"
1756                         with_libcurl="yes"
1757                 else if test -x "$withval/bin/curl-config"
1758                 then
1759                         with_curl_config="$withval/bin/curl-config"
1760                         with_libcurl="yes"
1761                 fi; fi
1762                 with_libcurl="yes"
1763         fi; fi
1764 ],
1765 [
1766         with_libcurl="yes"
1767 ])
1768 if test "x$with_libcurl" = "xyes"
1769 then
1770         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1771         curl_config_status=$?
1772
1773         if test $curl_config_status -ne 0
1774         then
1775                 with_libcurl="no ($with_curl_config failed)"
1776         else
1777                 SAVE_CPPFLAGS="$CPPFLAGS"
1778                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1779
1780                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1781
1782                 CPPFLAGS="$SAVE_CPPFLAGS"
1783         fi
1784 fi
1785 if test "x$with_libcurl" = "xyes"
1786 then
1787         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1788         curl_config_status=$?
1789
1790         if test $curl_config_status -ne 0
1791         then
1792                 with_libcurl="no ($with_curl_config failed)"
1793         else
1794                 AC_CHECK_LIB(curl, curl_easy_init,
1795                  [with_libcurl="yes"],
1796                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1797                  [$with_curl_libs])
1798                 AC_CHECK_DECL(CURLOPT_USERNAME,
1799                  [have_curlopt_username="yes"],
1800                  [have_curlopt_username="no"],
1801                  [[#include <curl/curl.h>]])
1802                 AC_CHECK_DECL(CURLOPT_TIMEOUT_MS,
1803                  [have_curlopt_timeout="yes"],
1804                  [have_curlopt_timeout="no"],
1805                  [[#include <curl/curl.h>]])
1806         fi
1807 fi
1808 if test "x$with_libcurl" = "xyes"
1809 then
1810         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1811         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1812         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1813         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1814
1815         if test "x$have_curlopt_username" = "xyes"
1816         then
1817                 AC_DEFINE(HAVE_CURLOPT_USERNAME, 1, [Define if libcurl supports CURLOPT_USERNAME option.])
1818         fi
1819
1820         if test "x$have_curlopt_timeout" = "xyes"
1821         then
1822                 AC_DEFINE(HAVE_CURLOPT_TIMEOUT_MS, 1, [Define if libcurl supports CURLOPT_TIMEOUT_MS option.])
1823         fi
1824 fi
1825 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1826 # }}}
1827
1828 # --with-libdbi {{{
1829 with_libdbi_cppflags=""
1830 with_libdbi_ldflags=""
1831 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1832 [
1833         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1834         then
1835                 with_libdbi_cppflags="-I$withval/include"
1836                 with_libdbi_ldflags="-L$withval/lib"
1837                 with_libdbi="yes"
1838         else
1839                 with_libdbi="$withval"
1840         fi
1841 ],
1842 [
1843         with_libdbi="yes"
1844 ])
1845 if test "x$with_libdbi" = "xyes"
1846 then
1847         SAVE_CPPFLAGS="$CPPFLAGS"
1848         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1849
1850         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1851
1852         CPPFLAGS="$SAVE_CPPFLAGS"
1853 fi
1854 if test "x$with_libdbi" = "xyes"
1855 then
1856         SAVE_CPPFLAGS="$CPPFLAGS"
1857         SAVE_LDFLAGS="$LDFLAGS"
1858         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1859         LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1860
1861         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1862
1863         CPPFLAGS="$SAVE_CPPFLAGS"
1864         LDFLAGS="$SAVE_LDFLAGS"
1865 fi
1866 if test "x$with_libdbi" = "xyes"
1867 then
1868         BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1869         BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1870         BUILD_WITH_LIBDBI_LIBS="-ldbi"
1871         AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1872         AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1873         AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1874 fi
1875 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1876 # }}}
1877
1878 # --with-libesmtp {{{
1879 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1880 [
1881         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1882         then
1883                 LDFLAGS="$LDFLAGS -L$withval/lib"
1884                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1885                 with_libesmtp="yes"
1886         else
1887                 with_libesmtp="$withval"
1888         fi
1889 ],
1890 [
1891         with_libesmtp="yes"
1892 ])
1893 if test "x$with_libesmtp" = "xyes"
1894 then
1895         AC_CHECK_LIB(esmtp, smtp_create_session,
1896         [
1897                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1898         ], [with_libesmtp="no (libesmtp not found)"])
1899 fi
1900 if test "x$with_libesmtp" = "xyes"
1901 then
1902         AC_CHECK_HEADERS(libesmtp.h,
1903         [
1904                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1905         ], [with_libesmtp="no (libesmtp.h not found)"])
1906 fi
1907 if test "x$with_libesmtp" = "xyes"
1908 then
1909         collect_libesmtp=1
1910 else
1911         collect_libesmtp=0
1912 fi
1913 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1914         [Wether or not to use the esmtp library])
1915 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1916 # }}}
1917
1918 # --with-libganglia {{{
1919 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
1920 [
1921  if test -f "$withval" && test -x "$withval"
1922  then
1923          with_libganglia_config="$withval"
1924          with_libganglia="yes"
1925  else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
1926  then
1927          with_libganglia_config="$withval/bin/ganglia-config"
1928          with_libganglia="yes"
1929  else if test -d "$withval"
1930  then
1931          GANGLIA_CPPFLAGS="-I$withval/include"
1932          GANGLIA_LDFLAGS="-L$withval/lib"
1933          with_libganglia="yes"
1934  else
1935          with_libganglia="$withval"
1936  fi; fi; fi
1937 ],
1938 [
1939  with_libganglia="yes"
1940 ])
1941
1942 if test "x$with_libganglia" = "xyes"
1943 then
1944         if test "x$with_libganglia_config" != "x"
1945         then
1946                 if test "x$GANGLIA_CPPFLAGS" = "x"
1947                 then
1948                         GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
1949                 fi
1950
1951                 if test "x$GANGLIA_LDFLAGS" = "x"
1952                 then
1953                         GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
1954                 fi
1955
1956                 if test "x$GANGLIA_LIBS" = "x"
1957                 then
1958                         GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
1959                 fi
1960         else
1961                 GANGLIA_LIBS="-lganglia"
1962         fi
1963 fi
1964
1965 SAVE_CPPFLAGS="$CPPFLAGS"
1966 SAVE_LDFLAGS="$LDFLAGS"
1967 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
1968 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
1969
1970 if test "x$with_libganglia" = "xyes"
1971 then
1972         AC_CHECK_HEADERS(gm_protocol.h,
1973         [
1974                 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
1975                           [Define to 1 if you have the <gm_protocol.h> header file.])
1976         ], [with_libganglia="no (gm_protocol.h not found)"])
1977 fi
1978
1979 if test "x$with_libganglia" = "xyes"
1980 then
1981         AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
1982         [
1983                 AC_DEFINE(HAVE_LIBGANGLIA, 1,
1984                           [Define to 1 if you have the ganglia library (-lganglia).])
1985         ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
1986 fi
1987
1988 CPPFLAGS="$SAVE_CPPFLAGS"
1989 LDFLAGS="$SAVE_LDFLAGS"
1990
1991 AC_SUBST(GANGLIA_CPPFLAGS)
1992 AC_SUBST(GANGLIA_LDFLAGS)
1993 AC_SUBST(GANGLIA_LIBS)
1994 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
1995 # }}}
1996
1997 # --with-libgcrypt {{{
1998 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
1999 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
2000 GCRYPT_LIBS="$GCRYPT_LIBS"
2001 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
2002 [
2003  if test -f "$withval" && test -x "$withval"
2004  then
2005          with_libgcrypt_config="$withval"
2006          with_libgcrypt="yes"
2007  else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
2008  then
2009          with_libgcrypt_config="$withval/bin/gcrypt-config"
2010          with_libgcrypt="yes"
2011  else if test -d "$withval"
2012  then
2013          GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
2014          GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
2015          with_libgcrypt="yes"
2016  else
2017          with_libgcrypt_config="gcrypt-config"
2018          with_libgcrypt="$withval"
2019  fi; fi; fi
2020 ],
2021 [
2022  with_libgcrypt_config="libgcrypt-config"
2023  with_libgcrypt="yes"
2024 ])
2025
2026 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
2027 then
2028         if test "x$GCRYPT_CPPFLAGS" = "x"
2029         then
2030                 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
2031         fi
2032
2033         if test "x$GCRYPT_LDFLAGS" = "x"
2034         then
2035                 gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null`
2036                 GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib"
2037         fi
2038
2039         if test "x$GCRYPT_LIBS" = "x"
2040         then
2041                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
2042         fi
2043 fi
2044
2045 SAVE_CPPFLAGS="$CPPFLAGS"
2046 SAVE_LDFLAGS="$LDFLAGS"
2047 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
2048 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
2049
2050 if test "x$with_libgcrypt" = "xyes"
2051 then
2052         if test "x$GCRYPT_CPPFLAGS" != "x"
2053         then
2054                 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
2055         fi
2056         AC_CHECK_HEADERS(gcrypt.h,
2057                 [with_libgcrypt="yes"],
2058                 [with_libgcrypt="no (gcrypt.h not found)"])
2059 fi
2060
2061 if test "x$with_libgcrypt" = "xyes"
2062 then
2063         if test "x$GCRYPT_LDFLAGS" != "x"
2064         then
2065                 AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS])
2066         fi
2067         AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
2068                 [with_libgcrypt="yes"],
2069                 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
2070
2071         if test "$with_libgcrypt" != "no"; then
2072                 m4_ifdef([AM_PATH_LIBGCRYPT],[AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")])
2073                 GCRYPT_CPPFLAGS="$LIBGCRYPT_CPPFLAGS $LIBGCRYPT_CFLAGS"
2074                 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
2075         fi
2076 fi
2077
2078 CPPFLAGS="$SAVE_CPPFLAGS"
2079 LDFLAGS="$SAVE_LDFLAGS"
2080
2081 if test "x$with_libgcrypt" = "xyes"
2082 then
2083         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
2084 fi
2085
2086 AC_SUBST(GCRYPT_CPPFLAGS)
2087 AC_SUBST(GCRYPT_LDFLAGS)
2088 AC_SUBST(GCRYPT_LIBS)
2089 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
2090 # }}}
2091
2092 # --with-libiptc {{{
2093 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
2094 [
2095         if test "x$withval" = "xyes"
2096         then
2097                 with_libiptc="pkgconfig"
2098         else if test "x$withval" = "xno"
2099         then
2100                 with_libiptc="no"
2101         else
2102                 with_libiptc="yes"
2103                 with_libiptc_cflags="-I$withval/include"
2104                 with_libiptc_libs="-L$withval/lib"
2105         fi; fi
2106 ],
2107 [
2108         if test "x$ac_system" = "xLinux"
2109         then
2110                 with_libiptc="pkgconfig"
2111         else
2112                 with_libiptc="no (Linux only)"
2113         fi
2114 ])
2115
2116 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
2117 then
2118         with_libiptc="no (Don't have pkg-config)"
2119 fi
2120
2121 if test "x$with_libiptc" = "xpkgconfig"
2122 then
2123         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
2124         if test $? -ne 0
2125         then
2126                 with_libiptc="no (pkg-config doesn't know libiptc)"
2127         fi
2128 fi
2129 if test "x$with_libiptc" = "xpkgconfig"
2130 then
2131         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
2132         if test $? -ne 0
2133         then
2134                 with_libiptc="no ($PKG_CONFIG failed)"
2135         fi
2136         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
2137         if test $? -ne 0
2138         then
2139                 with_libiptc="no ($PKG_CONFIG failed)"
2140         fi
2141 fi
2142
2143 SAVE_CPPFLAGS="$CPPFLAGS"
2144 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
2145
2146 # check whether the header file for libiptc is available.
2147 if test "x$with_libiptc" = "xpkgconfig"
2148 then
2149         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2150                         [with_libiptc="no (header file missing)"])
2151 fi
2152 # If the header file is available, check for the required type declaractions.
2153 # They may be missing in old versions of libiptc. In that case, they will be
2154 # declared in the iptables plugin.
2155 if test "x$with_libiptc" = "xpkgconfig"
2156 then
2157         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2158 fi
2159 # Check for the iptc_init symbol in the library.
2160 # This could be in iptc or ip4tc
2161 if test "x$with_libiptc" = "xpkgconfig"
2162 then
2163         SAVE_LIBS="$LIBS"
2164         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2165                         [with_libiptc="pkgconfig"],
2166                         [with_libiptc="no"],
2167                         [$with_libiptc_libs])
2168         LIBS="$SAVE_LIBS"
2169 fi
2170 if test "x$with_libiptc" = "xpkgconfig"
2171 then
2172         with_libiptc="yes"
2173 fi
2174
2175 CPPFLAGS="$SAVE_CPPFLAGS"
2176
2177 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2178 if test "x$with_libiptc" = "xyes"
2179 then
2180         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2181         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2182         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2183         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2184 fi
2185 # }}}
2186
2187 # --with-java {{{
2188 with_java_home="$JAVA_HOME"
2189 if test "x$with_java_home" = "x"
2190 then
2191         with_java_home="/usr/lib/jvm"
2192 fi
2193 with_java_vmtype="client"
2194 with_java_cflags=""
2195 with_java_libs=""
2196 JAVAC="$JAVAC"
2197 JAR="$JAR"
2198 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2199 [
2200         if test "x$withval" = "xno"
2201         then
2202                 with_java="no"
2203         else if test "x$withval" = "xyes"
2204         then
2205                 with_java="yes"
2206         else
2207                 with_java_home="$withval"
2208                 with_java="yes"
2209         fi; fi
2210 ],
2211 [with_java="yes"])
2212 if test "x$with_java" = "xyes"
2213 then
2214         if test -d "$with_java_home"
2215         then
2216                 AC_MSG_CHECKING([for jni.h])
2217                 TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2218                 if test "x$TMPVAR" != "x"
2219                 then
2220                         AC_MSG_RESULT([found in $TMPVAR])
2221                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2222                 else
2223                         AC_MSG_RESULT([not found])
2224                 fi
2225
2226                 AC_MSG_CHECKING([for jni_md.h])
2227                 TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2228                 if test "x$TMPVAR" != "x"
2229                 then
2230                         AC_MSG_RESULT([found in $TMPVAR])
2231                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2232                 else
2233                         AC_MSG_RESULT([not found])
2234                 fi
2235
2236                 AC_MSG_CHECKING([for libjvm.so])
2237                 TMPVAR=`find -L "$with_java_home" -name libjvm.so -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2238                 if test "x$TMPVAR" != "x"
2239                 then
2240                         AC_MSG_RESULT([found in $TMPVAR])
2241                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2242                 else
2243                         AC_MSG_RESULT([not found])
2244                 fi
2245
2246                 if test "x$JAVAC" = "x"
2247                 then
2248                         AC_MSG_CHECKING([for javac])
2249                         TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2250                         if test "x$TMPVAR" != "x"
2251                         then
2252                                 JAVAC="$TMPVAR"
2253                                 AC_MSG_RESULT([$JAVAC])
2254                         else
2255                                 AC_MSG_RESULT([not found])
2256                         fi
2257                 fi
2258                 if test "x$JAR" = "x"
2259                 then
2260                         AC_MSG_CHECKING([for jar])
2261                         TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2262                         if test "x$TMPVAR" != "x"
2263                         then
2264                                 JAR="$TMPVAR"
2265                                 AC_MSG_RESULT([$JAR])
2266                         else
2267                                 AC_MSG_RESULT([not found])
2268                         fi
2269                 fi
2270         else if test "x$with_java_home" != "x"
2271         then
2272                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2273         fi; fi
2274 fi
2275
2276 if test "x$JAVA_CPPFLAGS" != "x"
2277 then
2278         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2279 fi
2280 if test "x$JAVA_CFLAGS" != "x"
2281 then
2282         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2283 fi
2284 if test "x$JAVA_LDFLAGS" != "x"
2285 then
2286         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2287 fi
2288 if test "x$JAVAC" = "x"
2289 then
2290         with_javac_path="$PATH"
2291         if test "x$with_java_home" != "x"
2292         then
2293                 with_javac_path="$with_java_home:with_javac_path"
2294                 if test -d "$with_java_home/bin"
2295                 then
2296                         with_javac_path="$with_java_home/bin:with_javac_path"
2297                 fi
2298         fi
2299
2300         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2301 fi
2302 if test "x$JAVAC" = "x"
2303 then
2304         with_java="no (javac not found)"
2305 fi
2306 if test "x$JAR" = "x"
2307 then
2308         with_jar_path="$PATH"
2309         if test "x$with_java_home" != "x"
2310         then
2311                 with_jar_path="$with_java_home:$with_jar_path"
2312                 if test -d "$with_java_home/bin"
2313                 then
2314                         with_jar_path="$with_java_home/bin:$with_jar_path"
2315                 fi
2316         fi
2317
2318         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2319 fi
2320 if test "x$JAR" = "x"
2321 then
2322         with_java="no (jar not found)"
2323 fi
2324
2325 SAVE_CPPFLAGS="$CPPFLAGS"
2326 SAVE_CFLAGS="$CFLAGS"
2327 SAVE_LDFLAGS="$LDFLAGS"
2328 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2329 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2330 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2331
2332 if test "x$with_java" = "xyes"
2333 then
2334         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2335 fi
2336 if test "x$with_java" = "xyes"
2337 then
2338         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2339         [with_java="yes"],
2340         [with_java="no (libjvm not found)"],
2341         [$JAVA_LIBS])
2342 fi
2343 if test "x$with_java" = "xyes"
2344 then
2345         JAVA_LIBS="$JAVA_LIBS -ljvm"
2346         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2347 fi
2348
2349 CPPFLAGS="$SAVE_CPPFLAGS"
2350 CFLAGS="$SAVE_CFLAGS"
2351 LDFLAGS="$SAVE_LDFLAGS"
2352
2353 AC_SUBST(JAVA_CPPFLAGS)
2354 AC_SUBST(JAVA_CFLAGS)
2355 AC_SUBST(JAVA_LDFLAGS)
2356 AC_SUBST(JAVA_LIBS)
2357 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2358 # }}}
2359
2360 # --with-libldap {{{
2361 AC_ARG_WITH(libldap, [AS_HELP_STRING([--with-libldap@<:@=PREFIX@:>@], [Path to libldap.])],
2362 [
2363  if test "x$withval" = "xyes"
2364  then
2365          with_libldap="yes"
2366  else if test "x$withval" = "xno"
2367  then
2368          with_libldap="no"
2369  else
2370          with_libldap="yes"
2371          LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS -I$withval/include"
2372          LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS -L$withval/lib"
2373  fi; fi
2374 ],
2375 [with_libldap="yes"])
2376
2377 SAVE_CPPFLAGS="$CPPFLAGS"
2378 SAVE_LDFLAGS="$LDFLAGS"
2379
2380 CPPFLAGS="$CPPFLAGS $LIBLDAP_CPPFLAGS"
2381 LDFLAGS="$LDFLAGS $LIBLDAP_LDFLAGS"
2382
2383 if test "x$with_libldap" = "xyes"
2384 then
2385         if test "x$LIBLDAP_CPPFLAGS" != "x"
2386         then
2387                 AC_MSG_NOTICE([libldap CPPFLAGS: $LIBLDAP_CPPFLAGS])
2388         fi
2389         AC_CHECK_HEADERS(ldap.h,
2390         [with_libldap="yes"],
2391         [with_libldap="no ('ldap.h' not found)"])
2392 fi
2393 if test "x$with_libldap" = "xyes"
2394 then
2395         if test "x$LIBLDAP_LDFLAGS" != "x"
2396         then
2397                 AC_MSG_NOTICE([libldap LDFLAGS: $LIBLDAP_LDFLAGS])
2398         fi
2399         AC_CHECK_LIB(ldap, ldap_initialize,
2400         [with_libldap="yes"],
2401         [with_libldap="no (symbol 'ldap_initialize' not found)"])
2402
2403 fi
2404
2405 CPPFLAGS="$SAVE_CPPFLAGS"
2406 LDFLAGS="$SAVE_LDFLAGS"
2407
2408 if test "x$with_libldap" = "xyes"
2409 then
2410         BUILD_WITH_LIBLDAP_CPPFLAGS="$LIBLDAP_CPPFLAGS"
2411         BUILD_WITH_LIBLDAP_LDFLAGS="$LIBLDAP_LDFLAGS"
2412         AC_SUBST(BUILD_WITH_LIBLDAP_CPPFLAGS)
2413         AC_SUBST(BUILD_WITH_LIBLDAP_LDFLAGS)
2414 fi
2415 AM_CONDITIONAL(BUILD_WITH_LIBLDAP, test "x$with_libldap" = "xyes")
2416 # }}}
2417
2418 # --with-liblvm2app {{{
2419 with_liblvm2app_cppflags=""
2420 with_liblvm2app_ldflags=""
2421 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2422 [
2423         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2424         then
2425                 with_liblvm2app_cppflags="-I$withval/include"
2426                 with_liblvm2app_ldflags="-L$withval/lib"
2427                 with_liblvm2app="yes"
2428         else
2429                 with_liblvm2app="$withval"
2430         fi
2431 ],
2432 [
2433         with_liblvm2app="yes"
2434 ])
2435 if test "x$with_liblvm2app" = "xyes"
2436 then
2437         SAVE_CPPFLAGS="$CPPFLAGS"
2438         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2439
2440         AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2441
2442         CPPFLAGS="$SAVE_CPPFLAGS"
2443 fi
2444
2445 if test "x$with_liblvm2app" = "xyes"
2446 then
2447         SAVE_CPPFLAGS="$CPPFLAGS"
2448         SAVE_LDFLAGS="$LDFLAGS"
2449         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2450         LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2451
2452         AC_CHECK_LIB(lvm2app, lvm_lv_get_property, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_lv_get_property' not found)"])
2453
2454         CPPFLAGS="$SAVE_CPPFLAGS"
2455         LDFLAGS="$SAVE_LDFLAGS"
2456 fi
2457 if test "x$with_liblvm2app" = "xyes"
2458 then
2459         BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2460         BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2461         BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2462         AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2463         AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2464         AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2465         AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2466 fi
2467 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2468 # }}}
2469
2470 # --with-libmemcached {{{
2471 with_libmemcached_cppflags=""
2472 with_libmemcached_ldflags=""
2473 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2474 [
2475         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2476         then
2477                 with_libmemcached_cppflags="-I$withval/include"
2478                 with_libmemcached_ldflags="-L$withval/lib"
2479                 with_libmemcached="yes"
2480         else
2481                 with_libmemcached="$withval"
2482         fi
2483 ],
2484 [
2485         with_libmemcached="yes"
2486 ])
2487 if test "x$with_libmemcached" = "xyes"
2488 then
2489         SAVE_CPPFLAGS="$CPPFLAGS"
2490         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2491
2492         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2493
2494         CPPFLAGS="$SAVE_CPPFLAGS"
2495 fi
2496 if test "x$with_libmemcached" = "xyes"
2497 then
2498         SAVE_CPPFLAGS="$CPPFLAGS"
2499         SAVE_LDFLAGS="$LDFLAGS"
2500         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2501         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2502
2503         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2504
2505         CPPFLAGS="$SAVE_CPPFLAGS"
2506         LDFLAGS="$SAVE_LDFLAGS"
2507 fi
2508 if test "x$with_libmemcached" = "xyes"
2509 then
2510         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2511         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2512         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2513         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2514         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2515         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2516         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2517 fi
2518 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2519 # }}}
2520
2521 # --with-libmodbus {{{
2522 with_libmodbus_config=""
2523 with_libmodbus_cflags=""
2524 with_libmodbus_libs=""
2525 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2526 [
2527         if test "x$withval" = "xno"
2528         then
2529                 with_libmodbus="no"
2530         else if test "x$withval" = "xyes"
2531         then
2532                 with_libmodbus="use_pkgconfig"
2533         else if test -d "$with_libmodbus/lib"
2534         then
2535                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2536                 with_libmodbus_cflags="-I$withval/include"
2537                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2538                 with_libmodbus="yes"
2539         fi; fi; fi
2540 ],
2541 [with_libmodbus="use_pkgconfig"])
2542
2543 # configure using pkg-config
2544 if test "x$with_libmodbus" = "xuse_pkgconfig"
2545 then
2546         if test "x$PKG_CONFIG" = "x"
2547         then
2548                 with_libmodbus="no (Don't have pkg-config)"
2549         fi
2550 fi
2551 if test "x$with_libmodbus" = "xuse_pkgconfig"
2552 then
2553         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2554         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2555         if test $? -ne 0
2556         then
2557                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2558         fi
2559 fi
2560 if test "x$with_libmodbus" = "xuse_pkgconfig"
2561 then
2562         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2563         if test $? -ne 0
2564         then
2565                 with_libmodbus="no ($PKG_CONFIG failed)"
2566         fi
2567         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2568         if test $? -ne 0
2569         then
2570                 with_libmodbus="no ($PKG_CONFIG failed)"
2571         fi
2572 fi
2573 if test "x$with_libmodbus" = "xuse_pkgconfig"
2574 then
2575         with_libmodbus="yes"
2576 fi
2577
2578 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2579 # the actual checks.
2580 if test "x$with_libmodbus" = "xyes"
2581 then
2582         SAVE_CPPFLAGS="$CPPFLAGS"
2583         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2584
2585         AC_CHECK_HEADERS(modbus.h, [], [with_libmodbus="no (modbus.h not found)"])
2586
2587         CPPFLAGS="$SAVE_CPPFLAGS"
2588 fi
2589 if test "x$with_libmodbus" = "xyes"
2590 then
2591         SAVE_CPPFLAGS="$CPPFLAGS"
2592         SAVE_LDFLAGS="$LDFLAGS"
2593
2594         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2595         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2596
2597         AC_CHECK_LIB(modbus, modbus_connect,
2598                      [with_libmodbus="yes"],
2599                      [with_libmodbus="no (symbol modbus_connect not found)"])
2600
2601         CPPFLAGS="$SAVE_CPPFLAGS"
2602         LDFLAGS="$SAVE_LDFLAGS"
2603 fi
2604 if test "x$with_libmodbus" = "xyes"
2605 then
2606         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2607         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2608         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2609         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2610 fi
2611 # }}}
2612
2613 # --with-libmongoc {{{
2614 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2615 [
2616  if test "x$withval" = "xyes"
2617  then
2618          with_libmongoc="yes"
2619  else if test "x$withval" = "xno"
2620  then
2621          with_libmongoc="no"
2622  else
2623          with_libmongoc="yes"
2624          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2625          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2626  fi; fi
2627 ],
2628 [with_libmongoc="yes"])
2629
2630 SAVE_CPPFLAGS="$CPPFLAGS"
2631 SAVE_LDFLAGS="$LDFLAGS"
2632
2633 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2634 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2635
2636 if test "x$with_libmongoc" = "xyes"
2637 then
2638         if test "x$LIBMONGOC_CPPFLAGS" != "x"
2639         then
2640                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2641         fi
2642         AC_CHECK_HEADERS(mongo.h,
2643         [with_libmongoc="yes"],
2644         [with_libmongoc="no ('mongo.h' not found)"],
2645 [#if HAVE_STDINT_H
2646 # define MONGO_HAVE_STDINT 1
2647 #else
2648 # define MONGO_USE_LONG_LONG_INT 1
2649 #endif
2650 ])
2651 fi
2652 if test "x$with_libmongoc" = "xyes"
2653 then
2654         if test "x$LIBMONGOC_LDFLAGS" != "x"
2655         then
2656                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2657         fi
2658         AC_CHECK_LIB(mongoc, mongo_run_command,
2659         [with_libmongoc="yes"],
2660         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2661 fi
2662
2663 CPPFLAGS="$SAVE_CPPFLAGS"
2664 LDFLAGS="$SAVE_LDFLAGS"
2665
2666 if test "x$with_libmongoc" = "xyes"
2667 then
2668         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2669         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2670         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2671         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2672 fi
2673 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2674 # }}}
2675
2676 # --with-libmosquitto {{{
2677 with_libmosquitto_cppflags=""
2678 with_libmosquitto_libs="-lmosquitto"
2679 AC_ARG_WITH(libmosquitto, [AS_HELP_STRING([--with-libmosquitto@<:@=PREFIX@:>@], [Path to libmosquitto.])],
2680 [
2681         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2682         then
2683                 with_libmosquitto_cppflags="-I$withval/include"
2684                 with_libmosquitto_libs="-L$withval/lib -lmosquitto"
2685                 with_libmosquitto="yes"
2686         else
2687                 with_libmosquitto="$withval"
2688         fi
2689 ],
2690 [
2691         with_libmosquitto="yes"
2692 ])
2693 if test "x$with_libmosquitto" = "xyes"
2694 then
2695         SAVE_CPPFLAGS="$CPPFLAGS"
2696         CPPFLAGS="$with_libmosquitto_cppflags"
2697
2698         AC_CHECK_HEADERS(mosquitto.h, [with_libmosquitto="yes"], [with_libmosquitto="no (mosquitto.h not found)"])
2699
2700         CPPFLAGS="$SAVE_CPPFLAGS"
2701 fi
2702 if test "x$with_libmosquitto" = "xyes"
2703 then
2704         SAVE_LDFLAGS="$LDFLAGS"
2705         SAVE_CPPFLAGS="$CPPFLAGS"
2706         LDFLAGS="$with_libmosquitto_libs"
2707         CPPFLAGS="$with_libmosquitto_cppflags"
2708
2709         AC_CHECK_LIB(mosquitto, mosquitto_connect, [with_libmosquitto="yes"], [with_libmosquitto="no (libmosquitto not found)"])
2710
2711         LDFLAGS="$SAVE_LDFLAGS"
2712         CPPFLAGS="$SAVE_CPPFLAGS"
2713 fi
2714 if test "x$with_libmosquitto" = "xyes"
2715 then
2716         BUILD_WITH_LIBMOSQUITTO_CPPFLAGS="$with_libmosquitto_cppflags"
2717         BUILD_WITH_LIBMOSQUITTO_LIBS="$with_libmosquitto_libs"
2718         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS)
2719         AC_SUBST(BUILD_WITH_LIBMOSQUITTO_LIBS)
2720 fi
2721 # }}}
2722
2723 # --with-libmysql {{{
2724 with_mysql_config="mysql_config"
2725 with_mysql_cflags=""
2726 with_mysql_libs=""
2727 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2728 [
2729         if test "x$withval" = "xno"
2730         then
2731                 with_libmysql="no"
2732         else if test "x$withval" = "xyes"
2733         then
2734                 with_libmysql="yes"
2735         else
2736                 if test -f "$withval" && test -x "$withval";
2737                 then
2738                         with_mysql_config="$withval"
2739                 else if test -x "$withval/bin/mysql_config"
2740                 then
2741                         with_mysql_config="$withval/bin/mysql_config"
2742                 fi; fi
2743                 with_libmysql="yes"
2744         fi; fi
2745 ],
2746 [
2747         with_libmysql="yes"
2748 ])
2749 if test "x$with_libmysql" = "xyes"
2750 then
2751         with_mysql_cflags=`$with_mysql_config --include 2>/dev/null`
2752         mysql_config_status=$?
2753
2754         if test $mysql_config_status -ne 0
2755         then
2756                 with_libmysql="no ($with_mysql_config failed)"
2757         else
2758                 SAVE_CPPFLAGS="$CPPFLAGS"
2759                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2760
2761                 have_mysql_h="no"
2762                 have_mysql_mysql_h="no"
2763                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2764
2765                 if test "x$have_mysql_h" = "xno"
2766                 then
2767                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2768                 fi
2769
2770                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2771                 then
2772                         with_libmysql="no (mysql.h not found)"
2773                 fi
2774
2775                 CPPFLAGS="$SAVE_CPPFLAGS"
2776         fi
2777 fi
2778 if test "x$with_libmysql" = "xyes"
2779 then
2780         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2781         mysql_config_status=$?
2782
2783         if test $mysql_config_status -ne 0
2784         then
2785                 with_libmysql="no ($with_mysql_config failed)"
2786         else
2787                 SAVE_CPPFLAGS="$CPPFLAGS"
2788                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2789                 SAVE_LIBS="$LIBS"
2790                 LIBS="$with_mysql_libs"
2791                 AC_SEARCH_LIBS([mysql_get_server_version],
2792                  [],
2793                  [with_libmysql="yes"],
2794                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2795                  [])
2796                 CPPFLAGS="$SAVE_CPPFLAGS"
2797                 LIBS="$SAVE_LIBS"
2798         fi
2799 fi
2800 if test "x$with_libmysql" = "xyes"
2801 then
2802         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2803         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2804         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2805         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
2806 fi
2807 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
2808 # }}}
2809
2810 # --with-libmnl {{{
2811 with_libmnl_cflags=""
2812 with_libmnl_libs=""
2813 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
2814 [
2815  echo "libmnl: withval = $withval"
2816  if test "x$withval" = "xyes"
2817  then
2818          with_libmnl="yes"
2819  else if test "x$withval" = "xno"
2820  then
2821          with_libmnl="no"
2822  else
2823          if test -d "$withval/include"
2824          then
2825                  with_libmnl_cflags="-I$withval/include"
2826                  with_libmnl_libs="-L$withval/lib -lmnl"
2827                  with_libmnl="yes"
2828          else
2829                  AC_MSG_ERROR("no such directory: $withval/include")
2830          fi
2831  fi; fi
2832 ],
2833 [
2834  if test "x$ac_system" = "xLinux"
2835  then
2836          with_libmnl="yes"
2837  else
2838          with_libmnl="no (Linux only library)"
2839  fi
2840 ])
2841 if test "x$PKG_CONFIG" = "x"
2842 then
2843         with_libmnl="no (Don't have pkg-config)"
2844 fi
2845 if test "x$with_libmnl" = "xyes"
2846 then
2847         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
2848           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
2849           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
2850         fi
2851
2852         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
2853         [
2854          with_libmnl="yes"
2855          break
2856         ], [],
2857 [#include <stdio.h>
2858 #include <sys/types.h>
2859 #include <asm/types.h>
2860 #include <sys/socket.h>
2861 #include <linux/netlink.h>
2862 #include <linux/rtnetlink.h>])
2863         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2864 [#include <stdio.h>
2865 #include <sys/types.h>
2866 #include <asm/types.h>
2867 #include <sys/socket.h>])
2868
2869         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2870 [[
2871 #include <stdio.h>
2872 #include <sys/types.h>
2873 #include <asm/types.h>
2874 #include <sys/socket.h>
2875 #include <linux/netlink.h>
2876 #include <linux/rtnetlink.h>
2877 ]],
2878 [[
2879 int retval = TCA_STATS2;
2880 return (retval);
2881 ]]
2882         )],
2883         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2884
2885         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2886 [[
2887 #include <stdio.h>
2888 #include <sys/types.h>
2889 #include <asm/types.h>
2890 #include <sys/socket.h>
2891 #include <linux/netlink.h>
2892 #include <linux/rtnetlink.h>
2893 ]],
2894 [[
2895 int retval = TCA_STATS;
2896 return (retval);
2897 ]]
2898         )],
2899         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
2900 fi
2901 if test "x$with_libmnl" = "xyes"
2902 then
2903         AC_CHECK_MEMBERS([struct rtnl_link_stats64.tx_window_errors],
2904         [AC_DEFINE(HAVE_RTNL_LINK_STATS64, 1, [Define if struct rtnl_link_stats64 exists and is usable.])],
2905         [],
2906         [
2907         #include <linux/if_link.h>
2908         ])
2909 fi
2910 if test "x$with_libmnl" = "xyes"
2911 then
2912         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
2913                      [with_libmnl="yes"],
2914                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
2915                      [$with_libmnl_libs])
2916 fi
2917 if test "x$with_libmnl" = "xyes"
2918 then
2919         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
2920         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
2921         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
2922         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
2923         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
2924 fi
2925 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
2926 # }}}
2927
2928 # --with-libnetapp {{{
2929 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2930 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
2931 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
2932 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2933 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2934 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2935 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2936 [
2937  if test -d "$withval"
2938  then
2939          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2940          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2941          with_libnetapp="yes"
2942  else
2943          with_libnetapp="$withval"
2944  fi
2945 ],
2946 [
2947  with_libnetapp="yes"
2948 ])
2949
2950 SAVE_CPPFLAGS="$CPPFLAGS"
2951 SAVE_LDFLAGS="$LDFLAGS"
2952 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2953 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2954
2955 if test "x$with_libnetapp" = "xyes"
2956 then
2957         if test "x$LIBNETAPP_CPPFLAGS" != "x"
2958         then
2959                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2960         fi
2961         AC_CHECK_HEADERS(netapp_api.h,
2962                 [with_libnetapp="yes"],
2963                 [with_libnetapp="no (netapp_api.h not found)"])
2964 fi
2965
2966 if test "x$with_libnetapp" = "xyes"
2967 then
2968         if test "x$LIBNETAPP_LDFLAGS" != "x"
2969         then
2970                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2971         fi
2972
2973         if test "x$LIBNETAPP_LIBS" = "x"
2974         then
2975                 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
2976         fi
2977         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2978
2979         AC_CHECK_LIB(netapp, na_server_invoke_elem,
2980                 [with_libnetapp="yes"],
2981                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2982                 [$LIBNETAPP_LIBS])
2983         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
2984 fi
2985
2986 CPPFLAGS="$SAVE_CPPFLAGS"
2987 LDFLAGS="$SAVE_LDFLAGS"
2988
2989 if test "x$with_libnetapp" = "xyes"
2990 then
2991         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
2992 fi
2993
2994 AC_SUBST(LIBNETAPP_CPPFLAGS)
2995 AC_SUBST(LIBNETAPP_LDFLAGS)
2996 AC_SUBST(LIBNETAPP_LIBS)
2997 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
2998 # }}}
2999
3000 # --with-libnetsnmp {{{
3001 with_snmp_config="net-snmp-config"
3002 with_snmp_cflags=""
3003 with_snmp_libs=""
3004 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3005 [
3006         if test "x$withval" = "xno"
3007         then
3008                 with_libnetsnmp="no"
3009         else if test "x$withval" = "xyes"
3010         then
3011                 with_libnetsnmp="yes"
3012         else
3013                 if test -x "$withval"
3014                 then
3015                         with_snmp_config="$withval"
3016                         with_libnetsnmp="yes"
3017                 else
3018                         with_snmp_config="$withval/bin/net-snmp-config"
3019                         with_libnetsnmp="yes"
3020                 fi
3021         fi; fi
3022 ],
3023 [with_libnetsnmp="yes"])
3024 if test "x$with_libnetsnmp" = "xyes"
3025 then
3026         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
3027         snmp_config_status=$?
3028
3029         if test $snmp_config_status -ne 0
3030         then
3031                 with_libnetsnmp="no ($with_snmp_config failed)"
3032         else
3033                 SAVE_CPPFLAGS="$CPPFLAGS"
3034                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
3035
3036                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
3037
3038                 CPPFLAGS="$SAVE_CPPFLAGS"
3039         fi
3040 fi
3041 if test "x$with_libnetsnmp" = "xyes"
3042 then
3043         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
3044         snmp_config_status=$?
3045
3046         if test $snmp_config_status -ne 0
3047         then
3048                 with_libnetsnmp="no ($with_snmp_config failed)"
3049         else
3050                 AC_CHECK_LIB(netsnmp, init_snmp,
3051                 [with_libnetsnmp="yes"],
3052                 [with_libnetsnmp="no (libnetsnmp not found)"],
3053                 [$with_snmp_libs])
3054         fi
3055 fi
3056 if test "x$with_libnetsnmp" = "xyes"
3057 then
3058         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
3059         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
3060         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
3061         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
3062 fi
3063 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
3064 # }}}
3065
3066 # --with-liboconfig {{{
3067 with_own_liboconfig="no"
3068 liboconfig_LDFLAGS="$LDFLAGS"
3069 liboconfig_CPPFLAGS="$CPPFLAGS"
3070 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
3071 [
3072         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3073         then
3074                 if test -d "$withval/lib"
3075                 then
3076                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
3077                 fi
3078                 if test -d "$withval/include"
3079                 then
3080                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
3081                 fi
3082         fi
3083         if test "x$withval" = "xno"
3084         then
3085                 AC_MSG_ERROR("liboconfig is required")
3086         fi
3087 ],
3088 [
3089         with_liboconfig="yes"
3090 ])
3091
3092 save_LDFLAGS="$LDFLAGS"
3093 save_CPPFLAGS="$CPPFLAGS"
3094 LDFLAGS="$liboconfig_LDFLAGS"
3095 CPPFLAGS="$liboconfig_CPPFLAGS"
3096 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
3097 [
3098         with_liboconfig="yes"
3099         with_own_liboconfig="no"
3100 ],
3101 [
3102         with_liboconfig="yes"
3103         with_own_liboconfig="yes"
3104         LDFLAGS="$save_LDFLAGS"
3105         CPPFLAGS="$save_CPPFLAGS"
3106 ])
3107
3108 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
3109 if test "x$with_own_liboconfig" = "xyes"
3110 then
3111         with_liboconfig="yes (shipped version)"
3112 fi
3113 # }}}
3114
3115 # --with-liboping {{{
3116 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
3117 [
3118  if test "x$withval" = "xyes"
3119  then
3120          with_liboping="yes"
3121  else if test "x$withval" = "xno"
3122  then
3123          with_liboping="no"
3124  else
3125          with_liboping="yes"
3126          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
3127          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
3128  fi; fi
3129 ],
3130 [with_liboping="yes"])
3131
3132 SAVE_CPPFLAGS="$CPPFLAGS"
3133 SAVE_LDFLAGS="$LDFLAGS"
3134
3135 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
3136 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
3137
3138 if test "x$with_liboping" = "xyes"
3139 then
3140         if test "x$LIBOPING_CPPFLAGS" != "x"
3141         then
3142                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
3143         fi
3144         AC_CHECK_HEADERS(oping.h,
3145         [with_liboping="yes"],
3146         [with_liboping="no (oping.h not found)"])
3147 fi
3148 if test "x$with_liboping" = "xyes"
3149 then
3150         if test "x$LIBOPING_LDFLAGS" != "x"
3151         then
3152                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
3153         fi
3154         AC_CHECK_LIB(oping, ping_construct,
3155         [with_liboping="yes"],
3156         [with_liboping="no (symbol 'ping_construct' not found)"])
3157 fi
3158
3159 CPPFLAGS="$SAVE_CPPFLAGS"
3160 LDFLAGS="$SAVE_LDFLAGS"
3161
3162 if test "x$with_liboping" = "xyes"
3163 then
3164         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
3165         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
3166         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
3167         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
3168 fi
3169 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
3170 # }}}
3171
3172 # --with-oracle {{{
3173 with_oracle_cppflags=""
3174 with_oracle_libs=""
3175 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
3176 [
3177         if test "x$withval" = "xyes"
3178         then
3179                 if test "x$ORACLE_HOME" = "x"
3180                 then
3181                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
3182                 fi
3183                 with_oracle="yes"
3184         else if test "x$withval" = "xno"
3185         then
3186                 with_oracle="no"
3187         else
3188                 with_oracle="yes"
3189                 ORACLE_HOME="$withval"
3190         fi; fi
3191 ],
3192 [
3193         if test "x$ORACLE_HOME" = "x"
3194         then
3195                 with_oracle="no (ORACLE_HOME is not set)"
3196         else
3197                 with_oracle="yes"
3198         fi
3199 ])
3200 if test "x$ORACLE_HOME" != "x"
3201 then
3202         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
3203
3204         if test -e "$ORACLE_HOME/lib/ldflags"
3205         then
3206                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
3207         fi
3208         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
3209         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
3210 fi
3211 if test "x$with_oracle" = "xyes"
3212 then
3213         SAVE_CPPFLAGS="$CPPFLAGS"
3214         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3215
3216         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
3217
3218         CPPFLAGS="$SAVE_CPPFLAGS"
3219 fi
3220 if test "x$with_oracle" = "xyes"
3221 then
3222         SAVE_CPPFLAGS="$CPPFLAGS"
3223         SAVE_LIBS="$LIBS"
3224         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
3225         LIBS="$LIBS $with_oracle_libs"
3226
3227         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
3228
3229         CPPFLAGS="$SAVE_CPPFLAGS"
3230         LIBS="$SAVE_LIBS"
3231 fi
3232 if test "x$with_oracle" = "xyes"
3233 then
3234         BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
3235         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
3236         AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
3237         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
3238 fi
3239 # }}}
3240
3241 # --with-libowcapi {{{
3242 with_libowcapi_cppflags=""
3243 with_libowcapi_libs="-lowcapi"
3244 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
3245 [
3246         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3247         then
3248                 with_libowcapi_cppflags="-I$withval/include"
3249                 with_libowcapi_libs="-L$withval/lib -lowcapi"
3250                 with_libowcapi="yes"
3251         else
3252                 with_libowcapi="$withval"
3253         fi
3254 ],
3255 [
3256         with_libowcapi="yes"
3257 ])
3258 if test "x$with_libowcapi" = "xyes"
3259 then
3260         SAVE_CPPFLAGS="$CPPFLAGS"
3261         CPPFLAGS="$with_libowcapi_cppflags"
3262
3263         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3264
3265         CPPFLAGS="$SAVE_CPPFLAGS"
3266 fi
3267 if test "x$with_libowcapi" = "xyes"
3268 then
3269         SAVE_LDFLAGS="$LDFLAGS"
3270         SAVE_CPPFLAGS="$CPPFLAGS"
3271         LDFLAGS="$with_libowcapi_libs"
3272         CPPFLAGS="$with_libowcapi_cppflags"
3273
3274         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3275
3276         LDFLAGS="$SAVE_LDFLAGS"
3277         CPPFLAGS="$SAVE_CPPFLAGS"
3278 fi
3279 if test "x$with_libowcapi" = "xyes"
3280 then
3281         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3282         BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
3283         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3284         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3285 fi
3286 # }}}
3287
3288 # --with-libpcap {{{
3289 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3290 [
3291         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3292         then
3293                 LDFLAGS="$LDFLAGS -L$withval/lib"
3294                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3295                 with_libpcap="yes"
3296         else
3297                 with_libpcap="$withval"
3298         fi
3299 ],
3300 [
3301         with_libpcap="yes"
3302 ])
3303 if test "x$with_libpcap" = "xyes"
3304 then
3305         AC_CHECK_LIB(pcap, pcap_open_live,
3306         [
3307                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3308         ], [with_libpcap="no (libpcap not found)"])
3309 fi
3310 if test "x$with_libpcap" = "xyes"
3311 then
3312         AC_CHECK_HEADERS(pcap.h,,
3313                          [with_libpcap="no (pcap.h not found)"])
3314 fi
3315 if test "x$with_libpcap" = "xyes"
3316 then
3317         AC_CACHE_CHECK([whether libpcap has PCAP_ERROR_IFACE_NOT_UP],
3318                        [c_cv_libpcap_have_pcap_error_iface_not_up],
3319                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
3320 [[[
3321 #include <pcap.h>
3322 ]]],
3323 [[[
3324   int val = PCAP_ERROR_IFACE_NOT_UP;
3325   return(val);
3326 ]]]
3327                        )],
3328                        [c_cv_libpcap_have_pcap_error_iface_not_up="yes"],
3329                        [c_cv_libpcap_have_pcap_error_iface_not_up="no"]))
3330 fi
3331 if test "x$c_cv_libpcap_have_pcap_error_iface_not_up" != "xyes"
3332 then
3333                 with_libpcap="no (pcap.h misses PCAP_ERROR_IFACE_NOT_UP)"
3334 fi
3335 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3336 # }}}
3337
3338 # --with-libperl {{{
3339 perl_interpreter="perl"
3340 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3341 [
3342         if test -f "$withval" && test -x "$withval"
3343         then
3344                 perl_interpreter="$withval"
3345                 with_libperl="yes"
3346         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3347         then
3348                 LDFLAGS="$LDFLAGS -L$withval/lib"
3349                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3350                 perl_interpreter="$withval/bin/perl"
3351                 with_libperl="yes"
3352         else
3353                 with_libperl="$withval"
3354         fi; fi
3355 ],
3356 [
3357         with_libperl="yes"
3358 ])
3359
3360 AC_MSG_CHECKING([for perl])
3361 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3362 if test -x "$perl_interpreter"
3363 then
3364         AC_MSG_RESULT([yes ($perl_interpreter)])
3365 else
3366         perl_interpreter=""
3367         AC_MSG_RESULT([no])
3368 fi
3369
3370 AC_SUBST(PERL, "$perl_interpreter")
3371
3372 if test "x$with_libperl" = "xyes" \
3373         && test -n "$perl_interpreter"
3374 then
3375   SAVE_CFLAGS="$CFLAGS"
3376   SAVE_LIBS="$LIBS"
3377 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3378   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3379   PERL_LIBS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3380   CFLAGS="$CFLAGS $PERL_CFLAGS"
3381   LIBS="$LIBS $PERL_LIBS"
3382
3383   AC_CACHE_CHECK([for libperl],
3384     [c_cv_have_libperl],
3385     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3386 [[[
3387 #define PERL_NO_GET_CONTEXT
3388 #include <EXTERN.h>
3389 #include <perl.h>
3390 #include <XSUB.h>
3391 ]]],
3392 [[[
3393        dTHX;
3394        load_module (PERL_LOADMOD_NOIMPORT,
3395                          newSVpv ("Collectd::Plugin::FooBar", 24),
3396                          Nullsv);
3397 ]]]
3398       )],
3399       [c_cv_have_libperl="yes"],
3400       [c_cv_have_libperl="no"]
3401     )
3402   )
3403
3404   if test "x$c_cv_have_libperl" = "xyes"
3405   then
3406           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3407           AC_SUBST(PERL_CFLAGS)
3408           AC_SUBST(PERL_LIBS)
3409   else
3410           with_libperl="no"
3411   fi
3412
3413   CFLAGS="$SAVE_CFLAGS"
3414   LIBS="$SAVE_LIBS"
3415 else if test -z "$perl_interpreter"; then
3416   with_libperl="no (no perl interpreter found)"
3417   c_cv_have_libperl="no"
3418 fi; fi
3419 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3420
3421 if test "x$with_libperl" = "xyes"
3422 then
3423         SAVE_CFLAGS="$CFLAGS"
3424         SAVE_LIBS="$LIBS"
3425         CFLAGS="$CFLAGS $PERL_CFLAGS"
3426         LIBS="$LIBS $PERL_LIBS"
3427
3428         AC_CACHE_CHECK([if perl supports ithreads],
3429                 [c_cv_have_perl_ithreads],
3430                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3431 [[[
3432 #include <EXTERN.h>
3433 #include <perl.h>
3434 #include <XSUB.h>
3435
3436 #if !defined(USE_ITHREADS)
3437 # error "Perl does not support ithreads!"
3438 #endif /* !defined(USE_ITHREADS) */
3439 ]]],
3440 [[[ ]]]
3441                         )],
3442                         [c_cv_have_perl_ithreads="yes"],
3443                         [c_cv_have_perl_ithreads="no"]
3444                 )
3445         )
3446
3447         if test "x$c_cv_have_perl_ithreads" = "xyes"
3448         then
3449                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3450         fi
3451
3452         CFLAGS="$SAVE_CFLAGS"
3453         LIBS="$SAVE_LIBS"
3454 fi
3455
3456 if test "x$with_libperl" = "xyes"
3457 then
3458         SAVE_CFLAGS="$CFLAGS"
3459         SAVE_LIBS="$LIBS"
3460         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3461         # (see issues #41 and #42)
3462         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3463         LIBS="$LIBS $PERL_LIBS"
3464
3465         AC_CACHE_CHECK([for broken Perl_load_module()],
3466                 [c_cv_have_broken_perl_load_module],
3467                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3468 [[[
3469 #define PERL_NO_GET_CONTEXT
3470 #include <EXTERN.h>
3471 #include <perl.h>
3472 #include <XSUB.h>
3473 ]]],
3474 [[[
3475                          dTHX;
3476                          load_module (PERL_LOADMOD_NOIMPORT,
3477                              newSVpv ("Collectd::Plugin::FooBar", 24),
3478                              Nullsv);
3479 ]]]
3480                         )],
3481                         [c_cv_have_broken_perl_load_module="no"],
3482                         [c_cv_have_broken_perl_load_module="yes"]
3483                 )
3484         )
3485
3486         CFLAGS="$SAVE_CFLAGS"
3487         LIBS="$SAVE_LIBS"
3488 fi
3489 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3490                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3491
3492 if test "x$with_libperl" = "xyes"
3493 then
3494         SAVE_CFLAGS="$CFLAGS"
3495         SAVE_LIBS="$LIBS"
3496         CFLAGS="$CFLAGS $PERL_CFLAGS"
3497         LIBS="$LIBS $PERL_LIBS"
3498
3499         AC_CHECK_MEMBER(
3500                 [struct mgvtbl.svt_local],
3501                 [have_struct_mgvtbl_svt_local="yes"],
3502                 [have_struct_mgvtbl_svt_local="no"],
3503                 [
3504 #include <EXTERN.h>
3505 #include <perl.h>
3506 #include <XSUB.h>
3507                 ])
3508
3509         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3510         then
3511                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3512                                   [Define if Perl's struct mgvtbl has member svt_local.])
3513         fi
3514
3515         CFLAGS="$SAVE_CFLAGS"
3516         LIBS="$SAVE_LIBS"
3517 fi
3518 # }}}
3519
3520 # --with-libpq {{{
3521 with_pg_config="pg_config"
3522 with_libpq_includedir=""
3523 with_libpq_libdir=""
3524 with_libpq_cppflags=""
3525 with_libpq_ldflags=""
3526 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3527         [Path to libpq.])],
3528 [
3529         if test "x$withval" = "xno"
3530         then
3531                 with_libpq="no"
3532         else if test "x$withval" = "xyes"
3533         then
3534                 with_libpq="yes"
3535         else
3536                 if test -f "$withval" && test -x "$withval";
3537                 then
3538                         with_pg_config="$withval"
3539                 else if test -x "$withval/bin/pg_config"
3540                 then
3541                         with_pg_config="$withval/bin/pg_config"
3542                 fi; fi
3543                 with_libpq="yes"
3544         fi; fi
3545 ],
3546 [
3547         with_libpq="yes"
3548 ])
3549 if test "x$with_libpq" = "xyes"
3550 then
3551         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3552         pg_config_status=$?
3553
3554         if test $pg_config_status -eq 0
3555         then
3556                 if test -n "$with_libpq_includedir"; then
3557                         for dir in $with_libpq_includedir; do
3558                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3559                         done
3560                 fi
3561         else
3562                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3563         fi
3564
3565         SAVE_CPPFLAGS="$CPPFLAGS"
3566         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3567
3568         AC_CHECK_HEADERS(libpq-fe.h, [],
3569                 [with_libpq="no (libpq-fe.h not found)"], [])
3570
3571         CPPFLAGS="$SAVE_CPPFLAGS"
3572 fi
3573 if test "x$with_libpq" = "xyes"
3574 then
3575         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3576         pg_config_status=$?
3577
3578         if test $pg_config_status -eq 0
3579         then
3580                 if test -n "$with_libpq_libdir"; then
3581                         for dir in $with_libpq_libdir; do
3582                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3583                         done
3584                 fi
3585         else
3586                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3587         fi
3588
3589         SAVE_LDFLAGS="$LDFLAGS"
3590         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3591
3592         AC_CHECK_LIB(pq, PQconnectdb,
3593                 [with_libpq="yes"],
3594                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3595
3596         AC_CHECK_LIB(pq, PQserverVersion,
3597                 [with_libpq="yes"],
3598                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3599
3600         LDFLAGS="$SAVE_LDFLAGS"
3601 fi
3602 if test "x$with_libpq" = "xyes"
3603 then
3604         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3605         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3606         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3607         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3608 fi
3609 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3610 # }}}
3611
3612 # --with-libpthread {{{
3613 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3614 [       if test "x$withval" != "xno" \
3615                 && test "x$withval" != "xyes"
3616         then
3617                 LDFLAGS="$LDFLAGS -L$withval/lib"
3618                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3619                 with_libpthread="yes"
3620         else
3621                 if test "x$withval" = "xno"
3622                 then
3623                         with_libpthread="no (disabled)"
3624                 fi
3625         fi
3626 ], [with_libpthread="yes"])
3627 if test "x$with_libpthread" = "xyes"
3628 then
3629         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3630 fi
3631
3632 if test "x$with_libpthread" = "xyes"
3633 then
3634         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
3635 fi
3636 if test "x$with_libpthread" = "xyes"
3637 then
3638         collect_pthread=1
3639 else
3640         collect_pthread=0
3641 fi
3642 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3643         [Wether or not to use pthread (POSIX threads) library])
3644 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "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="-lMicAccessSDK -lscif -lpthread"
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="-lMicAccessSDK -lscif -lpthread"],
4776                         [with_mic="no (symbol MicInitAPI not found)"],[-lscif -lpthread])
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([ntpd],        [yes],                [NTPd statistics])
5719 AC_PLUGIN([numa],        [$plugin_numa],       [NUMA virtual memory statistics])
5720 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
5721 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
5722 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
5723 AC_PLUGIN([openldap],    [$with_libldap],      [OpenLDAP statistics])
5724 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
5725 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
5726 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
5727 AC_PLUGIN([pf],          [$have_net_pfvar_h],  [BSD packet filter (PF) statistics])
5728 # FIXME: Check for libevent, too.
5729 AC_PLUGIN([pinba],       [$have_protoc_c],     [Pinba statistics])
5730 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
5731 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
5732 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
5733 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
5734 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
5735 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
5736 AC_PLUGIN([redis],       [$with_libhiredis],    [Redis plugin])
5737 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
5738 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
5739 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
5740 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
5741 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
5742 AC_PLUGIN([sigrok],      [$with_libsigrok],    [sigrok acquisition sources])
5743 AC_PLUGIN([smart],       [$with_libatasmart],  [SMART statistics])
5744 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
5745 AC_PLUGIN([statsd],      [yes],                [StatsD plugin])
5746 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
5747 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
5748 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
5749 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
5750 AC_PLUGIN([tail_csv],    [yes],                [Parsing of CSV files])
5751 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
5752 AC_PLUGIN([target_notification], [yes],        [The notification target])
5753 AC_PLUGIN([target_replace], [yes],             [The replace target])
5754 AC_PLUGIN([target_scale],[yes],                [The scale target])
5755 AC_PLUGIN([target_set],  [yes],                [The set target])
5756 AC_PLUGIN([target_v5upgrade], [yes],           [The v5upgrade target])
5757 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
5758 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
5759 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
5760 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
5761 AC_PLUGIN([threshold],   [yes],                [Threshold checking plugin])
5762 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
5763 AC_PLUGIN([turbostat],   [$plugin_turbostat],  [Advanced statistic on Intel cpu states])
5764 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
5765 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
5766 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
5767 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
5768 AC_PLUGIN([varnish],     [$with_libvarnish],   [Varnish cache statistics])
5769 AC_PLUGIN([virt],        [$plugin_virt],       [Virtual machine statistics])
5770 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
5771 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
5772 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
5773 AC_PLUGIN([write_graphite], [yes],             [Graphite / Carbon output plugin])
5774 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
5775 AC_PLUGIN([write_kafka],  [$with_librdkafka],  [Kafka output plugin])
5776 AC_PLUGIN([write_log], [yes],                  [Log output plugin])
5777 AC_PLUGIN([write_mongodb], [$with_libmongoc],  [MongoDB output plugin])
5778 AC_PLUGIN([write_redis], [$with_libhiredis],    [Redis output plugin])
5779 AC_PLUGIN([write_riemann], [$have_protoc_c],   [Riemann output plugin])
5780 AC_PLUGIN([write_sensu], [yes],                [Sensu output plugin])
5781 AC_PLUGIN([write_tsdb],  [yes],                [TSDB output plugin])
5782 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
5783 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
5784 AC_PLUGIN([zone],        [$plugin_zone],       [Solaris container statistics])
5785 AC_PLUGIN([zookeeper],   [yes],                [Zookeeper statistics])
5786
5787 dnl Default configuration file
5788 # Load either syslog or logfile
5789 LOAD_PLUGIN_SYSLOG=""
5790 LOAD_PLUGIN_LOGFILE=""
5791 LOAD_PLUGIN_LOG_LOGSTASH=""
5792
5793 AC_MSG_CHECKING([which default log plugin to load])
5794 default_log_plugin="none"
5795 if test "x$enable_syslog" = "xyes"
5796 then
5797         default_log_plugin="syslog"
5798 else
5799         LOAD_PLUGIN_SYSLOG="##"
5800 fi
5801
5802 if test "x$enable_logfile" = "xyes"
5803 then
5804         if test "x$default_log_plugin" = "xnone"
5805         then
5806                 default_log_plugin="logfile"
5807         else
5808                 LOAD_PLUGIN_LOGFILE="#"
5809         fi
5810 else
5811         LOAD_PLUGIN_LOGFILE="##"
5812 fi
5813
5814 if test "x$enable_log_logstash" = "xyes"
5815 then
5816   LOAD_PLUGIN_LOG_LOGSTASH="#"
5817 else
5818   LOAD_PLUGIN_LOG_LOGSTASH="##"
5819 fi
5820
5821
5822 AC_MSG_RESULT([$default_log_plugin])
5823
5824 AC_SUBST(LOAD_PLUGIN_SYSLOG)
5825 AC_SUBST(LOAD_PLUGIN_LOGFILE)
5826 AC_SUBST(LOAD_PLUGIN_LOG_LOGSTASH)
5827
5828 DEFAULT_LOG_LEVEL="info"
5829 if test "x$enable_debug" = "xyes"
5830 then
5831         DEFAULT_LOG_LEVEL="debug"
5832 fi
5833 AC_SUBST(DEFAULT_LOG_LEVEL)
5834
5835 # Load only one of rrdtool, network, csv in the default config.
5836 LOAD_PLUGIN_RRDTOOL=""
5837 LOAD_PLUGIN_NETWORK=""
5838 LOAD_PLUGIN_CSV=""
5839
5840 AC_MSG_CHECKING([which default write plugin to load])
5841 default_write_plugin="none"
5842 if test "x$enable_rrdtool" = "xyes"
5843 then
5844         default_write_plugin="rrdtool"
5845 else
5846         LOAD_PLUGIN_RRDTOOL="##"
5847 fi
5848
5849 if test "x$enable_network" = "xyes"
5850 then
5851         if test "x$default_write_plugin" = "xnone"
5852         then
5853                 default_write_plugin="network"
5854         else
5855                 LOAD_PLUGIN_NETWORK="#"
5856         fi
5857 else
5858         LOAD_PLUGIN_NETWORK="##"
5859 fi
5860
5861 if test "x$enable_csv" = "xyes"
5862 then
5863         if test "x$default_write_plugin" = "xnone"
5864         then
5865                 default_write_plugin="csv"
5866         else
5867                 LOAD_PLUGIN_CSV="#"
5868         fi
5869 else
5870         LOAD_PLUGIN_CSV="##"
5871 fi
5872 AC_MSG_RESULT([$default_write_plugin])
5873
5874 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5875 AC_SUBST(LOAD_PLUGIN_NETWORK)
5876 AC_SUBST(LOAD_PLUGIN_CSV)
5877
5878 dnl ip_vs.h
5879 if test "x$ac_system" = "xLinux" \
5880         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
5881 then
5882         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5883 fi
5884
5885 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5886 then
5887         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5888 fi
5889
5890 dnl Perl bindings
5891 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
5892 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5893 [
5894         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5895         then
5896                 PERL_BINDINGS_OPTIONS="$withval"
5897                 with_perl_bindings="yes"
5898         else
5899                 with_perl_bindings="$withval"
5900         fi
5901 ],
5902 [
5903         if test -n "$perl_interpreter"
5904         then
5905                 with_perl_bindings="yes"
5906         else
5907                 with_perl_bindings="no (no perl interpreter found)"
5908         fi
5909 ])
5910 if test "x$with_perl_bindings" = "xyes"
5911 then
5912         PERL_BINDINGS="perl"
5913 else
5914         PERL_BINDINGS=""
5915 fi
5916 AC_SUBST(PERL_BINDINGS)
5917 AC_SUBST(PERL_BINDINGS_OPTIONS)
5918
5919 dnl libcollectdclient
5920 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5921 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5922 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5923
5924 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5925
5926 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5927
5928 AC_SUBST(LCC_VERSION_MAJOR)
5929 AC_SUBST(LCC_VERSION_MINOR)
5930 AC_SUBST(LCC_VERSION_PATCH)
5931 AC_SUBST(LCC_VERSION_EXTRA)
5932 AC_SUBST(LCC_VERSION_STRING)
5933
5934 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
5935
5936 AM_CFLAGS="-Wall"
5937 if test "x$enable_werror" != "xno"
5938 then
5939         AM_CFLAGS="$AM_CFLAGS -Werror"
5940 fi
5941 AC_SUBST([AM_CFLAGS])
5942
5943 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])
5944 AC_OUTPUT
5945
5946 if test "x$with_librrd" = "xyes" \
5947         && test "x$librrd_threadsafe" != "xyes"
5948 then
5949         with_librrd="yes (warning: librrd is not thread-safe)"
5950 fi
5951
5952 if test "x$with_libperl" = "xyes"
5953 then
5954         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
5955 else
5956         enable_perl="no (needs libperl)"
5957 fi
5958
5959 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5960 then
5961         enable_perl="no (libperl doesn't support ithreads)"
5962 fi
5963
5964 if test "x$with_perl_bindings" = "xyes" \
5965         && test "x$PERL_BINDINGS_OPTIONS" != "x"
5966 then
5967         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5968 fi
5969
5970 cat <<EOF;
5971
5972 Configuration:
5973   Build:
5974     Platform  . . . . . . $ac_system
5975     CC  . . . . . . . . . $CC
5976     CFLAGS  . . . . . . . $AM_CFLAGS $CFLAGS
5977     CPP . . . . . . . . . $CPP
5978     CPPFLAGS  . . . . . . $CPPFLAGS
5979     LD  . . . . . . . . . $LD
5980     LDFLAGS . . . . . . . $LDFLAGS
5981     YACC  . . . . . . . . $YACC
5982     YFLAGS  . . . . . . . $YFLAGS
5983
5984   Libraries:
5985     intel mic . . . . . . $with_mic
5986     libaquaero5 . . . . . $with_libaquaero5
5987     libatasmart . . . . . $with_libatasmart
5988     libcurl . . . . . . . $with_libcurl
5989     libdbi  . . . . . . . $with_libdbi
5990     libesmtp  . . . . . . $with_libesmtp
5991     libganglia  . . . . . $with_libganglia
5992     libgcrypt . . . . . . $with_libgcrypt
5993     libhal  . . . . . . . $with_libhal
5994     libhiredis  . . . . . $with_libhiredis
5995     libi2c-dev  . . . . . $with_libi2c
5996     libiokit  . . . . . . $with_libiokit
5997     libiptc . . . . . . . $with_libiptc
5998     libjvm  . . . . . . . $with_java
5999     libkstat  . . . . . . $with_kstat
6000     libkvm  . . . . . . . $with_libkvm
6001     libldap . . . . . . . $with_libldap
6002     liblvm2app  . . . . . $with_liblvm2app
6003     libmemcached  . . . . $with_libmemcached
6004     libmnl  . . . . . . . $with_libmnl
6005     libmodbus . . . . . . $with_libmodbus
6006     libmongoc . . . . . . $with_libmongoc
6007     libmosquitto  . . . . $with_libmosquitto
6008     libmysql  . . . . . . $with_libmysql
6009     libnetapp . . . . . . $with_libnetapp
6010     libnetsnmp  . . . . . $with_libnetsnmp
6011     libnotify . . . . . . $with_libnotify
6012     liboconfig  . . . . . $with_liboconfig
6013     libopenipmi . . . . . $with_libopenipmipthread
6014     liboping  . . . . . . $with_liboping
6015     libowcapi . . . . . . $with_libowcapi
6016     libpcap . . . . . . . $with_libpcap
6017     libperfstat . . . . . $with_perfstat
6018     libperl . . . . . . . $with_libperl
6019     libpq . . . . . . . . $with_libpq
6020     libpthread  . . . . . $with_libpthread
6021     librabbitmq . . . . . $with_librabbitmq
6022     librdkafka  . . . . . $with_librdkafka
6023     librouteros . . . . . $with_librouteros
6024     librrd  . . . . . . . $with_librrd
6025     libsensors  . . . . . $with_libsensors
6026     libsigrok   . . . . . $with_libsigrok
6027     libstatgrab . . . . . $with_libstatgrab
6028     libtokyotyrant  . . . $with_libtokyotyrant
6029     libudev . . . . . . . $with_libudev
6030     libupsclient  . . . . $with_libupsclient
6031     libvarnish  . . . . . $with_libvarnish
6032     libvirt . . . . . . . $with_libvirt
6033     libxml2 . . . . . . . $with_libxml2
6034     libxmms . . . . . . . $with_libxmms
6035     libyajl . . . . . . . $with_libyajl
6036     oracle  . . . . . . . $with_oracle
6037     protobuf-c  . . . . . $have_protoc_c
6038     python  . . . . . . . $with_python
6039
6040   Features:
6041     daemon mode . . . . . $enable_daemon
6042     debug . . . . . . . . $enable_debug
6043
6044   Bindings:
6045     perl  . . . . . . . . $with_perl_bindings
6046
6047   Modules:
6048     aggregation . . . . . $enable_aggregation
6049     amqp    . . . . . . . $enable_amqp
6050     apache  . . . . . . . $enable_apache
6051     apcups  . . . . . . . $enable_apcups
6052     apple_sensors . . . . $enable_apple_sensors
6053     aquaero . . . . . . . $enable_aquaero
6054     ascent  . . . . . . . $enable_ascent
6055     barometer . . . . . . $enable_barometer
6056     battery . . . . . . . $enable_battery
6057     bind  . . . . . . . . $enable_bind
6058     ceph  . . . . . . . . $enable_ceph
6059     cgroups . . . . . . . $enable_cgroups
6060     conntrack . . . . . . $enable_conntrack
6061     contextswitch . . . . $enable_contextswitch
6062     cpu . . . . . . . . . $enable_cpu
6063     cpufreq . . . . . . . $enable_cpufreq
6064     csv . . . . . . . . . $enable_csv
6065     curl  . . . . . . . . $enable_curl
6066     curl_json . . . . . . $enable_curl_json
6067     curl_xml  . . . . . . $enable_curl_xml
6068     dbi . . . . . . . . . $enable_dbi
6069     df  . . . . . . . . . $enable_df
6070     disk  . . . . . . . . $enable_disk
6071     dns . . . . . . . . . $enable_dns
6072     drbd  . . . . . . . . $enable_drbd
6073     email . . . . . . . . $enable_email
6074     entropy . . . . . . . $enable_entropy
6075     ethstat . . . . . . . $enable_ethstat
6076     exec  . . . . . . . . $enable_exec
6077     fhcount . . . . . . . $enable_fhcount
6078     filecount . . . . . . $enable_filecount
6079     fscache . . . . . . . $enable_fscache
6080     gmond . . . . . . . . $enable_gmond
6081     hddtemp . . . . . . . $enable_hddtemp
6082     interface . . . . . . $enable_interface
6083     ipc . . . . . . . . . $enable_ipc
6084     ipmi  . . . . . . . . $enable_ipmi
6085     iptables  . . . . . . $enable_iptables
6086     ipvs  . . . . . . . . $enable_ipvs
6087     irq . . . . . . . . . $enable_irq
6088     java  . . . . . . . . $enable_java
6089     load  . . . . . . . . $enable_load
6090     logfile . . . . . . . $enable_logfile
6091     log_logstash  . . . . $enable_log_logstash
6092     lpar  . . . . . . . . $enable_lpar
6093     lvm . . . . . . . . . $enable_lvm
6094     madwifi . . . . . . . $enable_madwifi
6095     match_empty_counter . $enable_match_empty_counter
6096     match_hashed  . . . . $enable_match_hashed
6097     match_regex . . . . . $enable_match_regex
6098     match_timediff  . . . $enable_match_timediff
6099     match_value . . . . . $enable_match_value
6100     mbmon . . . . . . . . $enable_mbmon
6101     md  . . . . . . . . . $enable_md
6102     memcachec . . . . . . $enable_memcachec
6103     memcached . . . . . . $enable_memcached
6104     memory  . . . . . . . $enable_memory
6105     mic . . . . . . . . . $enable_mic
6106     modbus  . . . . . . . $enable_modbus
6107     mqtt  . . . . . . . . $enable_mqtt
6108     multimeter  . . . . . $enable_multimeter
6109     mysql . . . . . . . . $enable_mysql
6110     netapp  . . . . . . . $enable_netapp
6111     netlink . . . . . . . $enable_netlink
6112     network . . . . . . . $enable_network
6113     nfs . . . . . . . . . $enable_nfs
6114     nginx . . . . . . . . $enable_nginx
6115     notify_desktop  . . . $enable_notify_desktop
6116     notify_email  . . . . $enable_notify_email
6117     ntpd  . . . . . . . . $enable_ntpd
6118     numa  . . . . . . . . $enable_numa
6119     nut . . . . . . . . . $enable_nut
6120     olsrd . . . . . . . . $enable_olsrd
6121     onewire . . . . . . . $enable_onewire
6122     openldap  . . . . . . $enable_openldap
6123     openvpn . . . . . . . $enable_openvpn
6124     oracle  . . . . . . . $enable_oracle
6125     perl  . . . . . . . . $enable_perl
6126     pf  . . . . . . . . . $enable_pf
6127     pinba . . . . . . . . $enable_pinba
6128     ping  . . . . . . . . $enable_ping
6129     postgresql  . . . . . $enable_postgresql
6130     powerdns  . . . . . . $enable_powerdns
6131     processes . . . . . . $enable_processes
6132     protocols . . . . . . $enable_protocols
6133     python  . . . . . . . $enable_python
6134     redis . . . . . . . . $enable_redis
6135     routeros  . . . . . . $enable_routeros
6136     rrdcached . . . . . . $enable_rrdcached
6137     rrdtool . . . . . . . $enable_rrdtool
6138     sensors . . . . . . . $enable_sensors
6139     serial  . . . . . . . $enable_serial
6140     sigrok  . . . . . . . $enable_sigrok
6141     smart . . . . . . . . $enable_smart
6142     snmp  . . . . . . . . $enable_snmp
6143     statsd  . . . . . . . $enable_statsd
6144     swap  . . . . . . . . $enable_swap
6145     syslog  . . . . . . . $enable_syslog
6146     table . . . . . . . . $enable_table
6147     tail_csv  . . . . . . $enable_tail_csv
6148     tail  . . . . . . . . $enable_tail
6149     tape  . . . . . . . . $enable_tape
6150     target_notification . $enable_target_notification
6151     target_replace  . . . $enable_target_replace
6152     target_scale  . . . . $enable_target_scale
6153     target_set  . . . . . $enable_target_set
6154     target_v5upgrade  . . $enable_target_v5upgrade
6155     tcpconns  . . . . . . $enable_tcpconns
6156     teamspeak2  . . . . . $enable_teamspeak2
6157     ted . . . . . . . . . $enable_ted
6158     thermal . . . . . . . $enable_thermal
6159     threshold . . . . . . $enable_threshold
6160     tokyotyrant . . . . . $enable_tokyotyrant
6161     turbostat . . . . . . $enable_turbostat
6162     unixsock  . . . . . . $enable_unixsock
6163     uptime  . . . . . . . $enable_uptime
6164     users . . . . . . . . $enable_users
6165     uuid  . . . . . . . . $enable_uuid
6166     varnish . . . . . . . $enable_varnish
6167     virt  . . . . . . . . $enable_virt
6168     vmem  . . . . . . . . $enable_vmem
6169     vserver . . . . . . . $enable_vserver
6170     wireless  . . . . . . $enable_wireless
6171     write_graphite  . . . $enable_write_graphite
6172     write_http  . . . . . $enable_write_http
6173     write_kafka . . . . . $enable_write_kafka
6174     write_log . . . . . . $enable_write_log
6175     write_mongodb . . . . $enable_write_mongodb
6176     write_redis . . . . . $enable_write_redis
6177     write_riemann . . . . $enable_write_riemann
6178     write_sensu . . . . . $enable_write_sensu
6179     write_tsdb  . . . . . $enable_write_tsdb
6180     xmms  . . . . . . . . $enable_xmms
6181     zfs_arc . . . . . . . $enable_zfs_arc
6182     zone  . . . . . . . . $enable_zone
6183     zookeeper . . . . . . $enable_zookeeper
6184
6185 EOF
6186
6187 if test "x$dependency_error" = "xyes"; then
6188         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
6189 fi
6190
6191 if test "x$dependency_warning" = "xyes"; then
6192         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
6193 fi
6194
6195 # vim: set fdm=marker :