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