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