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