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