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