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