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