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