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