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