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