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