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