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