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