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