1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, m4_esyscmd(./version-gen.sh))
3 AC_CONFIG_SRCDIR(src/collectd.c)
4 AC_CONFIG_HEADERS(src/config.h)
5 AM_INIT_AUTOMAKE(dist-bzip2)
8 AC_PREFIX_DEFAULT("/opt/collectd")
13 # Checks for programs.
21 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
25 AC_LIBLTDL_CONVENIENCE
33 AC_CONFIG_SUBDIRS(libltdl)
35 AC_MSG_CHECKING([for kernel type ($host_os)])
38 AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
42 AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
54 AC_MSG_RESULT([$ac_system])
56 if test "x$ac_system" = "xLinux"
58 AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
59 if test -z "$KERNEL_DIR"
61 KERNEL_DIR="/lib/modules/`uname -r`/source"
64 KERNEL_CFLAGS="-I$KERNEL_DIR/include"
65 AC_SUBST(KERNEL_CFLAGS)
68 if test "x$ac_system" = "xSolaris"
70 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
74 # Checks for header files.
80 AC_CHECK_HEADERS(stdio.h stdint.h stdbool.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)
83 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
88 # include <sys/types.h>
91 AC_CHECK_HEADERS(netinet/in.h, [], [],
96 # include <sys/types.h>
98 #if HAVE_NETINET_IN_SYSTM_H
99 # include <netinet/in_systm.h>
102 AC_CHECK_HEADERS(netinet/ip.h, [], [],
107 # include <sys/types.h>
109 #if HAVE_NETINET_IN_SYSTM_H
110 # include <netinet/in_systm.h>
112 #if HAVE_NETINET_IN_H
113 # include <netinet/in.h>
116 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
121 # include <sys/types.h>
123 #if HAVE_NETINET_IN_SYSTM_H
124 # include <netinet/in_systm.h>
126 #if HAVE_NETINET_IN_H
127 # include <netinet/in.h>
129 #if HAVE_NETINET_IP_H
130 # include <netinet/ip.h>
133 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
138 # include <sys/types.h>
140 #if HAVE_NETINET_IN_SYSTM_H
141 # include <netinet/in_systm.h>
143 #if HAVE_NETINET_IN_H
144 # include <netinet/in.h>
146 #if HAVE_NETINET_IP_H
147 # include <netinet/ip.h>
150 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
155 # include <sys/types.h>
157 #if HAVE_NETINET_IN_SYSTM_H
158 # include <netinet/in_systm.h>
160 #if HAVE_NETINET_IN_H
161 # include <netinet/in.h>
164 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
169 # include <sys/types.h>
171 #if HAVE_NETINET_IN_SYSTM_H
172 # include <netinet/in_systm.h>
174 #if HAVE_NETINET_IN_H
175 # include <netinet/in.h>
177 #if HAVE_NETINET_IP6_H
178 # include <netinet/ip6.h>
181 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
186 # include <sys/types.h>
188 #if HAVE_NETINET_IN_SYSTM_H
189 # include <netinet/in_systm.h>
191 #if HAVE_NETINET_IN_H
192 # include <netinet/in.h>
194 #if HAVE_NETINET_IP_H
195 # include <netinet/ip.h>
198 AC_CHECK_HEADERS(netinet/udp.h, [], [],
203 # include <sys/types.h>
205 #if HAVE_NETINET_IN_SYSTM_H
206 # include <netinet/in_systm.h>
208 #if HAVE_NETINET_IN_H
209 # include <netinet/in.h>
211 #if HAVE_NETINET_IP_H
212 # include <netinet/ip.h>
217 AC_CHECK_HEADERS(sys/dkstat.h)
218 if test "x$ac_system" = "xDarwin"
220 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)
221 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
223 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
226 # include <sys/types.h>
229 # include <sys/param.h>
234 AC_CHECK_HEADERS(linux/major.h libgen.h)
236 # For the battery plugin
237 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
239 #if HAVE_IOKIT_IOKITLIB_H
240 # include <IOKit/IOKitLib.h>
242 #if HAVE_IOKIT_IOTYPES_H
243 # include <IOKit/IOTypes.h>
247 # For the swap module
248 have_sys_swap_h="yes"
249 AC_CHECK_HEADERS(sys/swap.h, [], [have_sys_swap_h="no"],
252 # include <sys/types.h>
255 # include <sys/param.h>
259 if test "x$have_sys_swap_h$ac_system" = "xnoSolaris"
261 AC_MSG_NOTICE([Solaris detected and sys/swap.h not found: Try building a 64bit binary.])
265 # For the processes plugin
267 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
269 # For interface plugin
270 AC_CHECK_HEADERS(ifaddrs.h)
271 AC_CHECK_HEADERS(net/if.h, [], [],
274 # include <sys/types.h>
276 #if HAVE_SYS_SOCKET_H
277 # include <sys/socket.h>
280 AC_CHECK_HEADERS(linux/if.h, [], [],
283 # include <sys/types.h>
285 #if HAVE_SYS_SOCKET_H
286 # include <sys/socket.h>
289 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
292 # include <sys/types.h>
294 #if HAVE_SYS_SOCKET_H
295 # include <sys/socket.h>
298 # include <linux/if.h>
303 have_net_ip_vs_h="no"
305 if test "x$ac_system" = "xLinux"
308 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
310 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
311 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
317 AC_CHECK_HEADERS(sys/ucred.h, [], [],
320 # include <sys/types.h>
323 # include <sys/param.h>
327 # For mount interface
328 AC_CHECK_HEADERS(sys/mount.h, [], [],
331 # include <sys/types.h>
334 # include <sys/param.h>
338 # For the email plugin
339 AC_CHECK_HEADERS(linux/un.h, [], [],
341 #if HAVE_SYS_SOCKET_H
342 # include <sys/socket.h>
346 AC_CHECK_HEADERS(pwd.h grp.h sys/un.h ctype.h limits.h sys/quota.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)
349 AC_CHECK_HEADERS(arpa/nameser.h)
350 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
352 #if HAVE_ARPA_NAMESER_H
353 # include <arpa/nameser.h>
357 AC_CHECK_HEADERS(net/if_arp.h, [], [],
358 [#if HAVE_SYS_SOCKET_H
359 # include <sys/socket.h>
362 AC_CHECK_HEADERS(net/ppp_defs.h)
363 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
364 [#if HAVE_NET_PPP_DEFS_H
365 # include <net/ppp_defs.h>
368 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
373 # include <sys/types.h>
375 #if HAVE_SYS_SOCKET_H
376 # include <sys/socket.h>
381 #if HAVE_NETINET_IN_H
382 # include <netinet/in.h>
386 # For the multimeter plugin
388 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
391 # Checks for typedefs, structures, and compiler characteristics.
400 # Checks for library functions.
402 AC_PROG_GCC_TRADITIONAL
403 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog)
407 AC_CACHE_CHECK([for strtok_r],
408 [have_strtok_r_default],
417 char buffer[] = "foo,bar,baz";
424 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
427 printf ("token = %s;\n", token);
430 [have_strtok_r_default="yes"],
431 [have_strtok_r_default="no"]
435 if test "x$have_strtok_r_default" = "xno"
437 SAVE_CFLAGS="$CFLAGS"
438 CFLAGS="$CFLAGS -D_REENTRANT=1"
440 AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
441 [have_strtok_r_reentrant],
450 char buffer[] = "foo,bar,baz";
457 while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
460 printf ("token = %s;\n", token);
463 [have_strtok_r_reentrant="yes"],
464 [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
469 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
471 socket_needs_socket="no"
472 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
473 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
475 nanosleep_needs_rt="no"
476 AC_CHECK_FUNCS(nanosleep, [], AC_CHECK_LIB(rt, nanosleep, [nanosleep_needs_rt="yes"], AC_MSG_ERROR(cannot find nanosleep)))
477 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
479 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
480 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
481 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
482 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
483 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
484 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
485 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
486 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
487 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
488 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
491 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
494 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
496 if test "x$withval" = "xno"; then
498 else if test "x$withval" = "xyes"; then
505 if test "x$nan_type" = "xnone"; then
506 AC_CACHE_CHECK([whether NAN is defined by default],
513 static float foo = NAN;
521 [have_nan_default="yes"],
522 [have_nan_default="no"]
525 if test "x$have_nan_default" = "xyes"
530 if test "x$nan_type" = "xnone"; then
531 AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
537 #define __USE_ISOC99 1
539 static float foo = NAN;
547 [have_nan_isoc="yes"],
551 if test "x$have_nan_isoc" = "xyes"
556 if test "x$nan_type" = "xnone"; then
557 AC_CACHE_CHECK([whether NAN can be defined by 0/0],
567 #define NAN (0.0 / 0.0)
569 # define isnan(f) ((f) != (f))
571 static float foo = NAN;
579 [have_nan_zero="yes"],
583 if test "x$have_nan_zero" = "xyes"
589 if test "x$nan_type" = "xdefault"; then
590 AC_DEFINE(NAN_STATIC_DEFAULT, 1,
591 [Define if NAN is defined by default and can initialize static variables.])
592 else if test "x$nan_type" = "xisoc99"; then
593 AC_DEFINE(NAN_STATIC_ISOC, 1,
594 [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
595 else if test "x$nan_type" = "xzero"; then
596 AC_DEFINE(NAN_ZERO_ZERO, 1,
597 [Define if NAN can be defined as (0.0 / 0.0)])
599 AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
602 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
604 if test "x$withval" = "xnothing"; then
605 fp_layout_type="nothing"
606 else if test "x$withval" = "xendianflip"; then
607 fp_layout_type="endianflip"
608 else if test "x$withval" = "xintswap"; then
609 fp_layout_type="intswap"
611 AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
614 [fp_layout_type="unknown"])
616 if test "x$fp_layout_type" = "xunknown"; then
617 AC_CACHE_CHECK([if doubles are stored in x86 representation],
618 [fp_layout_need_nothing],
629 # include <stdbool.h>
639 memcpy ((void *) &i0, (void *) &d, 8);
642 memcpy ((void *) c, (void *) &i1, 8);
644 if ((c[0] == 0x2f) && (c[1] == 0x25)
645 && (c[2] == 0xc0) && (c[3] == 0xc7)
646 && (c[4] == 0x43) && (c[5] == 0x2b)
647 && (c[6] == 0x1f) && (c[7] == 0x5b))
652 [fp_layout_need_nothing="yes"],
653 [fp_layout_need_nothing="no"]
656 if test "x$fp_layout_need_nothing" = "xyes"; then
657 fp_layout_type="nothing"
660 if test "x$fp_layout_type" = "xunknown"; then
661 AC_CACHE_CHECK([if endianflip converts to x86 representation],
662 [fp_layout_need_endianflip],
673 # include <stdbool.h>
675 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
676 (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
677 (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
678 (((uint64_t)(A) & 0x000000ff00000000LL) >> 8) | \
679 (((uint64_t)(A) & 0x00000000ff000000LL) << 8) | \
680 (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
681 (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
682 (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
691 memcpy ((void *) &i0, (void *) &d, 8);
693 i1 = endianflip (i0);
694 memcpy ((void *) c, (void *) &i1, 8);
696 if ((c[0] == 0x2f) && (c[1] == 0x25)
697 && (c[2] == 0xc0) && (c[3] == 0xc7)
698 && (c[4] == 0x43) && (c[5] == 0x2b)
699 && (c[6] == 0x1f) && (c[7] == 0x5b))
704 [fp_layout_need_endianflip="yes"],
705 [fp_layout_need_endianflip="no"]
708 if test "x$fp_layout_need_endianflip" = "xyes"; then
709 fp_layout_type="endianflip"
712 if test "x$fp_layout_type" = "xunknown"; then
713 AC_CACHE_CHECK([if intswap converts to x86 representation],
714 [fp_layout_need_intswap],
725 # include <stdbool.h>
727 #define intswap(A) ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
728 (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
737 memcpy ((void *) &i0, (void *) &d, 8);
740 memcpy ((void *) c, (void *) &i1, 8);
742 if ((c[0] == 0x2f) && (c[1] == 0x25)
743 && (c[2] == 0xc0) && (c[3] == 0xc7)
744 && (c[4] == 0x43) && (c[5] == 0x2b)
745 && (c[6] == 0x1f) && (c[7] == 0x5b))
750 [fp_layout_need_intswap="yes"],
751 [fp_layout_need_intswap="no"]
754 if test "x$fp_layout_need_intswap" = "xyes"; then
755 fp_layout_type="intswap"
759 if test "x$fp_layout_type" = "xnothing"; then
760 AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
761 [Define if doubles are stored in x86 representation.])
762 else if test "x$fp_layout_type" = "xendianflip"; then
763 AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
764 [Define if endianflip is needed to convert to x86 representation.])
765 else if test "x$fp_layout_type" = "xintswap"; then
766 AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
767 [Define if intswap is needed to convert to x86 representation.])
769 AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
773 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
775 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
777 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
780 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
781 if test "x$have_getmntent" = "xno"; then
782 AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
784 if test "x$have_getmntent" = "xno"; then
785 AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
787 if test "x$have_getmntent" = "xno"; then
788 AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
791 if test "x$have_getmntent" = "xc"; then
792 AC_CACHE_CHECK([whether getmntent takes one argument],
793 [have_one_getmntent],
795 AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
797 #include "$srcdir/src/utils_mount.h"]],
801 fh = setmntent ("/etc/mtab", "r");
805 [have_one_getmntent="yes"],
806 [have_one_getmntent="no"]
809 AC_CACHE_CHECK([whether getmntent takes two arguments],
810 [have_two_getmntent],
812 AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
813 #include <sys/mnttab.h>
814 #include "$srcdir/src/utils_mount.h"]],
819 fh = fopen ("/etc/mnttab", "r");
820 status = getmntent (fh, &mt);
823 [have_two_getmntent="yes"],
824 [have_two_getmntent="no"]
829 # Check for different versions of `getmntent' here..
831 if test "x$have_getmntent" = "xc"; then
832 if test "x$have_one_getmntent" = "xyes"; then
833 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
834 [Define if the function getmntent exists and takes one argument.])
836 if test "x$have_two_getmntent" = "xyes"; then
837 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
838 [Define if the function getmntent exists and takes two arguments.])
841 if test "x$have_getmntent" = "xsun"; then
842 AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
843 [Define if the function getmntent exists. It's the version from libsun.])
845 if test "x$have_getmntent" = "xseq"; then
846 AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
847 [Define if the function getmntent exists. It's the version from libseq.])
849 if test "x$have_getmntent" = "xgen"; then
850 AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
851 [Define if the function getmntent exists. It's the version from libgen.])
854 # Check for structures
855 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
856 [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
859 #include <sys/types.h>
860 #include <sys/socket.h>
863 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
864 [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
867 #include <sys/types.h>
868 #include <sys/socket.h>
869 #include <linux/if.h>
870 #include <linux/netdevice.h>
873 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
878 # include <sys/types.h>
880 #if HAVE_NETINET_IN_SYSTM_H
881 # include <netinet/in_systm.h>
883 #if HAVE_NETINET_IN_H
884 # include <netinet/in.h>
886 #if HAVE_NETINET_IP_H
887 # include <netinet/ip.h>
889 #if HAVE_NETINET_UDP_H
890 # include <netinet/udp.h>
893 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
898 # include <sys/types.h>
900 #if HAVE_NETINET_IN_SYSTM_H
901 # include <netinet/in_systm.h>
903 #if HAVE_NETINET_IN_H
904 # include <netinet/in.h>
906 #if HAVE_NETINET_IP_H
907 # include <netinet/ip.h>
909 #if HAVE_NETINET_UDP_H
910 # include <netinet/udp.h>
914 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
924 # Checks for libraries begin here
927 AC_CHECK_LIB(resolv, res_search,
929 AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
931 [with_libresolv="no"])
932 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
934 dnl Check for HAL (hardware abstraction library)
936 AC_CHECK_LIB(hal,libhal_device_property_exists,
937 [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
939 if test "x$with_libhal" = "xyes"; then
940 if test "x$PKG_CONFIG" != "x"; then
941 BUILD_WITH_LIBHAL_CFLAGS="`pkg-config --cflags hal`"
942 BUILD_WITH_LIBHAL_LIBS="`pkg-config --libs hal`"
943 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
944 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
948 m4_divert_once([HELP_WITH], [
949 collectd additional packages:])
951 if test "x$ac_system" = "xSolaris"
956 with_kstat="no (Solaris only)"
957 with_devinfo="no (Solaris only)"
960 if test "x$with_kstat" = "xyes"
962 AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
964 if test "x$with_kstat" = "xyes"
966 AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
967 AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
969 if test "x$with_kstat" = "xyes"
971 AC_DEFINE(HAVE_LIBKSTAT, 1,
972 [Define to 1 if you have the 'kstat' library (-lkstat)])
974 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
975 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
978 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
985 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
988 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
989 if test "x$with_kvm_getprocs" = "xyes"
991 AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
992 [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
995 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
997 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
998 if test "x$with_kvm_getswapinfo" = "xyes"
1000 AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1001 [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1004 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1006 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1007 if test "x$with_kvm_nlist" = "xyes"
1009 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1010 [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1013 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1015 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1016 if test "x$with_kvm_openfiles" = "xyes"
1018 AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1019 [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1022 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1024 # --with-libcurl {{{
1025 with_curl_config="curl-config"
1028 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1030 if test "x$withval" = "xno"
1033 else if test "x$withval" = "xyes"
1037 if test -f "$withval" && test -x "$withval"
1039 with_curl_config="$withval"
1041 else if test -x "$withval/bin/curl-config"
1043 with_curl_config="$withval/bin/curl-config"
1052 if test "x$with_libcurl" = "xyes"
1054 with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1055 curl_config_status=$?
1057 if test $curl_config_status -ne 0
1059 with_libcurl="no ($with_curl_config failed)"
1061 SAVE_CPPFLAGS="$CPPFLAGS"
1062 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1064 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1066 CPPFLAGS="$SAVE_CPPFLAGS"
1069 if test "x$with_libcurl" = "xyes"
1071 with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1072 curl_config_status=$?
1074 if test $curl_config_status -ne 0
1076 with_libcurl="no ($with_curl_config failed)"
1078 AC_CHECK_LIB(curl, curl_easy_init,
1079 [with_libcurl="yes"],
1080 [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1084 if test "x$with_libcurl" = "xyes"
1086 BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1087 BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1088 AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1089 AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1091 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1095 with_libdbi_cppflags=""
1096 with_libdbi_ldflags=""
1097 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1099 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1101 with_libdbi_cppflags="-I$withval/include"
1102 with_libdbi_ldflags="-L$withval/lib"
1105 with_libdbi="$withval"
1111 if test "x$with_libdbi" = "xyes"
1113 SAVE_CPPFLAGS="$CPPFLAGS"
1114 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1116 AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1118 CPPFLAGS="$SAVE_CPPFLAGS"
1120 if test "x$with_libdbi" = "xyes"
1122 SAVE_CPPFLAGS="$CPPFLAGS"
1123 SAVE_LDFLAGS="$LDFLAGS"
1124 CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1125 LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1127 AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1129 CPPFLAGS="$SAVE_CPPFLAGS"
1130 LDFLAGS="$SAVE_LDFLAGS"
1132 if test "x$with_libdbi" = "xyes"
1134 BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1135 BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1136 BUILD_WITH_LIBDBI_LIBS="-ldbi"
1137 AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1138 AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1139 AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1141 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1144 # --with-libesmtp {{{
1145 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1147 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1149 LDFLAGS="$LDFLAGS -L$withval/lib"
1150 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1153 with_libesmtp="$withval"
1159 if test "x$with_libesmtp" = "xyes"
1161 AC_CHECK_LIB(esmtp, smtp_create_session,
1163 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1164 ], [with_libesmtp="no (libesmtp not found)"])
1166 if test "x$with_libesmtp" = "xyes"
1168 AC_CHECK_HEADERS(libesmtp.h,
1170 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1171 ], [with_libesmtp="no (libesmtp.h not found)"])
1173 if test "x$with_libesmtp" = "xyes"
1179 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1180 [Wether or not to use the esmtp library])
1181 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1184 # --with-libiptc {{{
1185 with_own_libiptc="no"
1186 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1188 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1190 LDFLAGS="$LDFLAGS -L$withval/lib"
1191 CPPFLAGS="$CPPFLAGS -I$withval/include"
1194 with_libiptc="$withval"
1198 if test "x$ac_system" = "xLinux"
1202 with_libiptc="no (Linux only)"
1205 if test "x$with_libiptc" = "xyes"
1207 AC_CHECK_LIB(iptc, iptc_init,
1209 AC_DEFINE(HAVE_LIBIPTC, 1, [Define to 1 if you have the iptc library (-liptc).])
1213 with_own_libiptc="yes"
1216 if test "x$with_libiptc" = "xyes" -a "x$with_own_libiptc" != "xyes"
1218 AC_CHECK_HEADERS(libiptc/libiptc.h,
1220 AC_DEFINE(HAVE_LIBIPTC_LIBIPTC_H, 1, [Define to 1 if you have the <libiptc/libiptc.h> header file.])
1224 with_own_libiptc="yes"
1227 if test "x$with_libiptc" = "xyes"
1230 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
1232 AC_CHECK_HEADERS(linux/netfilter_ipv4/ip_tables.h linux/netfilter_ipv6/ip6_tables.h, [],
1234 with_libiptc="no (Linux iptables headers not found - check KERNEL_DIR)"
1235 with_own_libiptc="no"
1238 #include "$srcdir/src/libiptc/ipt_kernel_headers.h"
1243 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
1244 AM_CONDITIONAL(BUILD_WITH_OWN_LIBIPTC, test "x$with_own_libiptc" = "xyes")
1245 if test "x$with_own_libiptc" = "xyes"
1247 AC_DEFINE(OWN_LIBIPTC, 1, [Define to 1 if we use the shipped iptc library.])
1251 # --with-libmysql {{{
1252 with_mysql_config="mysql_config"
1253 with_mysql_cflags=""
1255 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
1257 if test "x$withval" = "xno"
1260 else if test "x$withval" = "xyes"
1264 if test -f "$withval" && test -x "$withval";
1266 with_mysql_config="$withval"
1267 else if test -x "$withval/bin/mysql_config"
1269 with_mysql_config="$withval/bin/mysql_config"
1277 if test "x$with_libmysql" = "xyes"
1279 with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
1280 mysql_config_status=$?
1282 if test $mysql_config_status -ne 0
1284 with_libmysql="no ($with_mysql_config failed)"
1286 SAVE_CPPFLAGS="$CPPFLAGS"
1287 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
1290 have_mysql_mysql_h="no"
1291 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
1293 if test "x$have_mysql_h" = "xno"
1295 AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
1298 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
1300 with_libmysql="no (mysql.h not found)"
1303 CPPFLAGS="$SAVE_CPPFLAGS"
1306 if test "x$with_libmysql" = "xyes"
1308 with_mysql_libs=`$with_mysql_config --libs 2>/dev/null`
1309 mysql_config_status=$?
1311 if test $mysql_config_status -ne 0
1313 with_libmysql="no ($with_mysql_config failed)"
1315 AC_CHECK_LIB(mysqlclient, mysql_init,
1316 [with_libmysql="yes"],
1317 [with_libmysql="no (symbol 'mysql_init' not found)"],
1321 if test "x$with_libmysql" = "xyes"
1323 BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
1324 BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
1325 AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
1326 AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
1328 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
1331 # --with-libnetlink {{{
1332 with_libnetlink_cflags=""
1333 with_libnetlink_libs="-lnetlink"
1334 AC_ARG_WITH(libnetlink, [AS_HELP_STRING([--with-libnetlink@<:@=PREFIX@:>@], [Path to libnetlink.])],
1336 echo "libnetlink: withval = $withval"
1337 if test "x$withval" = "xyes"
1339 with_libnetlink="yes"
1340 else if test "x$withval" = "xno"
1342 with_libnetlink="no"
1344 if test -d "$withval/include"
1346 with_libnetlink_cflags="-I$withval/include"
1347 with_libnetlink_libs="-L$withval/lib -lnetlink"
1348 with_libnetlink="yes"
1350 AC_MSG_ERROR("no such directory: $withval/include")
1355 if test "x$ac_system" = "xLinux"
1357 with_libnetlink="yes"
1359 with_libnetlink="no (Linux only library)"
1362 if test "x$with_libnetlink" = "xyes"
1365 CFLAGS="$CFLAGS $with_libnetlink_cflags"
1367 with_libnetlink="no (libnetlink.h not found)"
1369 AC_CHECK_HEADERS(libnetlink.h iproute/libnetlink.h linux/libnetlink.h,
1371 with_libnetlink="yes"
1375 #include <sys/types.h>
1376 #include <asm/types.h>
1377 #include <sys/socket.h>
1378 #include <linux/netlink.h>
1379 #include <linux/rtnetlink.h>])
1380 AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
1382 #include <sys/types.h>
1383 #include <asm/types.h>
1384 #include <sys/socket.h>])
1388 #include <sys/types.h>
1389 #include <asm/types.h>
1390 #include <sys/socket.h>
1391 #include <linux/netlink.h>
1392 #include <linux/rtnetlink.h>
1396 int retval = TCA_STATS2;
1399 [AC_DEFINE([HAVE_TCA_STATS2], 1, [True if the enum-member TCA_STATS2 exists])]
1404 #include <sys/types.h>
1405 #include <asm/types.h>
1406 #include <sys/socket.h>
1407 #include <linux/netlink.h>
1408 #include <linux/rtnetlink.h>
1412 int retval = TCA_STATS;
1415 [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])]
1418 CFLAGS="$SAVE_CFLAGS"
1420 if test "x$with_libnetlink" = "xyes"
1422 AC_CHECK_LIB(netlink, rtnl_open,
1423 [with_libnetlink="yes"],
1424 [with_libnetlink="no (symbol 'rtnl_open' not found)"],
1425 [$with_libnetlink_libs])
1427 if test "x$with_libnetlink" = "xyes"
1429 BUILD_WITH_LIBNETLINK_CFLAGS="$with_libnetlink_cflags"
1430 BUILD_WITH_LIBNETLINK_LIBS="$with_libnetlink_libs"
1431 AC_SUBST(BUILD_WITH_LIBNETLINK_CFLAGS)
1432 AC_SUBST(BUILD_WITH_LIBNETLINK_LIBS)
1434 AM_CONDITIONAL(BUILD_WITH_LIBNETLINK, test "x$with_libnetlink" = "xyes")
1437 # --with-libnetsnmp {{{
1438 with_snmp_config="net-snmp-config"
1441 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
1443 if test "x$withval" = "xno"
1445 with_libnetsnmp="no"
1446 else if test "x$withval" = "xyes"
1448 with_libnetsnmp="yes"
1450 if test -x "$withval"
1452 with_snmp_config="$withval"
1453 with_libnetsnmp="yes"
1455 with_snmp_config="$withval/bin/net-snmp-config"
1456 with_libnetsnmp="yes"
1460 [with_libnetsnmp="yes"])
1461 if test "x$with_libnetsnmp" = "xyes"
1463 with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
1464 snmp_config_status=$?
1466 if test $snmp_config_status -ne 0
1468 with_libnetsnmp="no ($with_snmp_config failed)"
1470 SAVE_CPPFLAGS="$CPPFLAGS"
1471 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
1473 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
1475 CPPFLAGS="$SAVE_CPPFLAGS"
1478 if test "x$with_libnetsnmp" = "xyes"
1480 with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
1481 snmp_config_status=$?
1483 if test $snmp_config_status -ne 0
1485 with_libnetsnmp="no ($with_snmp_config failed)"
1487 AC_CHECK_LIB(netsnmp, init_snmp,
1488 [with_libnetsnmp="yes"],
1489 [with_libnetsnmp="no (libnetsnmp not found)"],
1493 if test "x$with_libnetsnmp" = "xyes"
1495 BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
1496 BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
1497 AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
1498 AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
1500 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
1503 # --with-liboconfig {{{
1504 with_own_liboconfig="no"
1505 liboconfig_LDFLAGS="$LDFLAGS"
1506 liboconfig_CPPFLAGS="$CPPFLAGS"
1507 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
1509 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1511 if test -d "$withval/lib"
1513 liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
1515 if test -d "$withval/include"
1517 liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
1520 if test "x$withval" = "xno"
1522 AC_MSG_ERROR("liboconfig is required")
1526 with_liboconfig="yes"
1529 save_LDFLAGS="$LDFLAGS"
1530 save_CPPFLAGS="$CPPFLAGS"
1531 LDFLAGS="$liboconfig_LDFLAGS"
1532 CPPFLAGS="$liboconfig_CPPFLAGS"
1533 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
1535 with_liboconfig="yes"
1536 with_own_liboconfig="no"
1539 with_liboconfig="yes"
1540 with_own_liboconfig="yes"
1541 LDFLAGS="$save_LDFLAGS"
1542 CPPFLAGS="$save_CPPFLAGS"
1545 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
1546 if test "x$with_own_liboconfig" = "xyes"
1548 with_liboconfig="yes (shipped version)"
1552 # --with-liboping {{{
1553 with_own_liboping="no"
1554 liboping_LDFLAGS="$LDFLAGS"
1555 liboping_CPPFLAGS="$CPPFLAGS"
1556 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
1558 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1560 if test -d "$withval/lib"
1562 liboping_LDFLAGS="$LDFLAGS -L$withval/lib"
1564 if test -d "$withval/include"
1566 liboping_CPPFLAGS="$CPPFLAGS -I$withval/include"
1569 if test "x$withval" = "xno"
1572 with_own_liboping="no"
1573 else if test "x$withval" = "xyes"
1582 if test "x$with_liboping" = "xyes"
1584 save_LDFLAGS="$LDFLAGS"
1585 save_CPPFLAGS="$CPPFLAGS"
1586 LDFLAGS="$liboping_LDFLAGS"
1587 CPPFLAGS="$liboping_CPPFLAGS"
1588 AC_CHECK_LIB(oping, ping_construct,
1591 with_own_liboping="no"
1595 with_own_liboping="yes"
1596 LDFLAGS="$save_LDFLAGS"
1597 CPPFLAGS="$save_CPPFLAGS"
1600 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
1601 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOPING, test "x$with_own_liboping" = "xyes")
1605 with_oracle_cppflags=""
1607 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
1609 if test "x$withval" = "xyes"
1611 if test "x$ORACLE_HOME" = "x"
1613 AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
1616 else if test "x$withval" = "xno"
1621 ORACLE_HOME="$withval"
1625 if test "x$ORACLE_HOME" = "x"
1627 with_oracle="no (ORACLE_HOME is not set)"
1632 if test "x$ORACLE_HOME" != "x"
1634 with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
1636 if test -e "$ORACLE_HOME/lib/ldflags"
1638 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
1640 #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
1641 with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
1643 if test "x$with_oracle" = "xyes"
1645 SAVE_CPPFLAGS="$CPPFLAGS"
1646 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
1648 AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
1650 CPPFLAGS="$SAVE_CPPFLAGS"
1652 if test "x$with_oracle" = "xyes"
1654 SAVE_CPPFLAGS="$CPPFLAGS"
1655 SAVE_LDFLAGS="$LDFLAGS"
1656 CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
1657 LDFLAGS="$LDFLAGS $with_oracle_libs"
1659 AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
1661 CPPFLAGS="$SAVE_CPPFLAGS"
1662 LDFLAGS="$SAVE_LDFLAGS"
1664 if test "x$with_oracle" = "xyes"
1666 BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
1667 BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
1668 AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
1669 AC_SUBST(BUILD_WITH_ORACLE_LIBS)
1673 # --with-libowcapi {{{
1674 with_libowcapi_cppflags=""
1675 with_libowcapi_libs="-lowcapi"
1676 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
1678 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1680 with_libowcapi_cppflags="-I$withval/include"
1681 with_libowcapi_libs="-L$withval/lib -lowcapi"
1682 with_libowcapi="yes"
1684 with_libowcapi="$withval"
1688 with_libowcapi="yes"
1690 if test "x$with_libowcapi" = "xyes"
1692 SAVE_CPPFLAGS="$CPPFLAGS"
1693 CPPFLAGS="$with_libowcapi_cppflags"
1695 AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
1697 CPPFLAGS="$SAVE_CPPFLAGS"
1699 if test "x$with_libowcapi" = "xyes"
1701 SAVE_LDFLAGS="$LDFLAGS"
1702 SAVE_CPPFLAGS="$CPPFLAGS"
1703 LDFLAGS="$with_libowcapi_libs"
1704 CPPFLAGS="$with_libowcapi_cppflags"
1706 AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
1708 LDFLAGS="$SAVE_LDFLAGS"
1709 CPPFLAGS="$SAVE_CPPFLAGS"
1711 if test "x$with_libowcapi" = "xyes"
1713 BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
1714 BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
1715 AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
1716 AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
1720 # --with-libpcap {{{
1721 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
1723 if test "x$withval" != "xno" && test "x$withval" != "xyes"
1725 LDFLAGS="$LDFLAGS -L$withval/lib"
1726 CPPFLAGS="$CPPFLAGS -I$withval/include"
1729 with_libpcap="$withval"
1735 if test "x$with_libpcap" = "xyes"
1737 AC_CHECK_LIB(pcap, pcap_open_live,
1739 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
1740 ], [with_libpcap="no (libpcap not found)"])
1742 if test "x$with_libpcap" = "xyes"
1744 AC_CHECK_HEADERS(pcap.h,
1746 AC_DEFINE(HAVE_PCAP_H, 1, [Define to 1 if you have the <pcap.h> header file.])
1747 ], [with_libpcap="no (pcap.h not found)"])
1749 if test "x$with_libpcap" = "xyes"
1755 AC_DEFINE_UNQUOTED(COLLECT_LIBPCAP, [$collect_libpcap],
1756 [Wether or not to use the pcap library])
1757 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
1760 # --with-libpcre {{{
1761 with_pcre_config="pcre-config"
1764 AC_ARG_WITH(libpcre, [AS_HELP_STRING([--with-libpcre@<:@=PREFIX@:>@],
1765 [Path to libpcre.])],
1767 if test "x$withval" = "xno"
1770 else if test "x$withval" = "xyes"
1774 if test -f "$withval" && test -x "$withval"
1776 with_pcre_config="$withval"
1777 else if test -x "$withval/bin/pcre-config"
1779 with_pcre_config="$withval/bin/pcre-config"
1788 if test "x$with_libpcre" = "xyes"
1790 with_pcre_cflags=`$with_pcre_config --cflags 2>/dev/null`
1791 pcre_config_status=$?
1793 if test $pcre_config_status -ne 0
1795 with_libpcre="no ($with_pcre_config failed)"
1797 SAVE_CPPFLAGS="$CPPFLAGS"
1798 CPPFLAGS="$CPPFLAGS $with_pcre_cflags"
1800 AC_CHECK_HEADERS(pcre.h, [], [with_libpcre="no (pcre.h not found)"], [])
1802 CPPFLAGS="$SAVE_CPPFLAGS"
1806 if test "x$with_libpcre" = "xyes"
1808 with_pcre_libs=`$with_pcre_config --libs 2>/dev/null`
1809 pcre_config_status=$?
1811 if test $pcre_config_status -ne 0
1813 with_libpcre="no ($with_pcre_config failed)"
1815 AC_CHECK_LIB(pcre, pcre_compile,
1816 [with_libpcre="yes"],
1817 [with_libpcre="no (symbol 'pcre_compile' not found)"],
1822 if test "x$with_libpcre" = "xyes"
1824 BUILD_WITH_LIBPCRE_CFLAGS="$with_pcre_cflags"
1825 BUILD_WITH_LIBPCRE_LIBS="$with_pcre_libs"
1826 AC_SUBST(BUILD_WITH_LIBPCRE_CFLAGS)
1827 AC_SUBST(BUILD_WITH_LIBPCRE_LIBS)
1829 AM_CONDITIONAL(BUILD_WITH_LIBPCRE, test "x$with_libpcre" = "xyes")
1832 # --with-libperl {{{
1833 perl_interpreter="perl"
1834 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
1836 if test -x "$withval"
1838 perl_interpreter="$withval"
1840 else if test "x$withval" != "xno" && test "x$withval" != "xyes"
1842 LDFLAGS="$LDFLAGS -L$withval/lib"
1843 CPPFLAGS="$CPPFLAGS -I$withval/include"
1844 perl_interpreter="$withval/bin/perl"
1847 with_libperl="$withval"
1854 AC_MSG_CHECKING([for perl])
1855 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
1856 if test -x "$perl_interpreter"
1858 AC_MSG_RESULT([yes ($perl_interpreter)])
1864 AC_SUBST(PERL, "$perl_interpreter")
1866 if test "x$with_libperl" = "xyes" \
1867 && test -n "$perl_interpreter"
1870 SAVE_LDFLAGS=$LDFLAGS
1871 PERL_CFLAGS=`$perl_interpreter -MExtUtils::Embed -e ccopts`
1872 PERL_LDFLAGS=`$perl_interpreter -MExtUtils::Embed -e ldopts`
1873 CFLAGS="$CFLAGS $PERL_CFLAGS"
1874 LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
1876 AC_CACHE_CHECK([for libperl],
1881 #define PERL_NO_GET_CONTEXT
1888 load_module (PERL_LOADMOD_NOIMPORT,
1889 newSVpv ("Collectd::Plugin::FooBar", 24),
1892 [have_libperl="yes"],
1897 if test "x$have_libperl" = "xyes"
1899 AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
1900 AC_SUBST(PERL_CFLAGS)
1901 AC_SUBST(PERL_LDFLAGS)
1907 LDFLAGS=$SAVE_LDFLAGS
1908 else if test -z "$perl_interpreter"; then
1909 with_libperl="no (no perl interpreter found)"
1912 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
1914 if test "x$with_libperl" = "xyes"
1917 SAVE_LDFLAGS=$LDFLAGS
1918 CFLAGS="$CFLAGS $PERL_CFLAGS"
1919 LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
1921 AC_CACHE_CHECK([if perl supports ithreads],
1922 [have_perl_ithreads],
1930 #if !defined(USE_ITHREADS)
1931 # error "Perl does not support ithreads!"
1932 #endif /* !defined(USE_ITHREADS) */
1935 [have_perl_ithreads="yes"],
1936 [have_perl_ithreads="no"]
1940 if test "x$have_perl_ithreads" = "xyes"
1942 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
1946 LDFLAGS=$SAVE_LDFLAGS
1951 with_pg_config="pg_config"
1952 with_libpq_includedir=""
1953 with_libpq_libdir=""
1954 with_libpq_cppflags=""
1955 with_libpq_ldflags=""
1956 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
1959 if test "x$withval" = "xno"
1962 else if test "x$withval" = "xyes"
1966 if test -f "$withval" && test -x "$withval";
1968 with_pg_config="$withval"
1969 else if test -x "$withval/bin/pg_config"
1971 with_pg_config="$withval/bin/pg_config"
1979 if test "x$with_libpq" = "xyes"
1981 with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
1984 if test $pg_config_status -eq 0
1986 if test -n "$with_libpq_includedir"; then
1987 for dir in $with_libpq_includedir; do
1988 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
1992 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
1995 SAVE_CPPFLAGS="$CPPFLAGS"
1996 CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
1998 AC_CHECK_HEADERS(libpq-fe.h, [],
1999 [with_libpq="no (libpq-fe.h not found)"], [])
2001 CPPFLAGS="$SAVE_CPPFLAGS"
2003 if test "x$with_libpq" = "xyes"
2005 with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
2008 if test $pg_config_status -eq 0
2010 if test -n "$with_libpq_libdir"; then
2011 for dir in $with_libpq_libdir; do
2012 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
2016 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
2019 SAVE_LDFLAGS="$LDFLAGS"
2020 LDFLAGS="$LDFLAGS $with_libpq_ldflags"
2022 AC_CHECK_LIB(pq, PQconnectdb,
2024 [with_libpq="no (symbol 'PQconnectdb' not found)"])
2026 LDFLAGS="$SAVE_LDFLAGS"
2028 if test "x$with_libpq" = "xyes"
2030 BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
2031 BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
2032 AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
2033 AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
2035 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
2038 # --with-libpthread {{{
2039 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
2040 [ if test "x$withval" != "xno" \
2041 && test "x$withval" != "xyes"
2043 LDFLAGS="$LDFLAGS -L$withval/lib"
2044 CPPFLAGS="$CPPFLAGS -I$withval/include"
2045 with_libpthread="yes"
2047 if test "x$withval" = "xno"
2049 with_libpthread="no (disabled)"
2052 ], [with_libpthread="yes"])
2053 if test "x$with_libpthread" = "xyes"
2055 AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
2057 if test "x$with_libpthread" = "xyes"
2059 AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
2061 if test "x$with_libpthread" = "xyes"
2067 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
2068 [Wether or not to use pthread (POSIX threads) library])
2069 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
2073 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
2076 librrd_threadsafe="yes"
2077 librrd_rrdc_update="no"
2078 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
2079 [ if test "x$withval" != "xno" && test "x$withval" != "xyes"
2081 librrd_cflags="-I$withval/include"
2082 librrd_ldflags="-L$withval/lib"
2085 with_librrd="$withval"
2087 ], [with_librrd="yes"])
2088 if test "x$with_librrd" = "xyes"
2090 SAVE_CPPFLAGS="$CPPFLAGS"
2091 SAVE_LDFLAGS="$LDFLAGS"
2093 CPPFLAGS="$CPPFLAGS $librrd_cflags"
2094 LDFLAGS="$LDFLAGS $librrd_ldflags"
2096 AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
2098 CPPFLAGS="$SAVE_CPPFLAGS"
2099 LDFLAGS="$SAVE_LDFLAGS"
2101 if test "x$with_librrd" = "xyes"
2103 SAVE_CPPFLAGS="$CPPFLAGS"
2104 SAVE_LDFLAGS="$LDFLAGS"
2106 CPPFLAGS="$CPPFLAGS $librrd_cflags"
2107 LDFLAGS="$LDFLAGS $librrd_ldflags"
2109 AC_CHECK_LIB(rrd_th, rrd_update_r,
2111 librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
2113 [librrd_threadsafe="no"
2114 AC_CHECK_LIB(rrd, rrd_update,
2116 librrd_ldflags="$librrd_ldflags -lrrd -lm"
2118 [with_librrd="no (symbol 'rrd_update' not found)"],
2123 if test "x$librrd_threadsafe" = "xyes"
2125 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
2127 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
2130 CPPFLAGS="$SAVE_CPPFLAGS"
2131 LDFLAGS="$SAVE_LDFLAGS"
2133 if test "x$with_librrd" = "xyes"
2135 BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
2136 BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
2137 AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
2138 AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
2140 if test "x$librrd_threadsafe" = "xyes"
2142 AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
2146 # --with-libsensors {{{
2147 with_sensors_cflags=""
2148 with_sensors_ldflags=""
2149 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
2151 if test "x$withval" = "xno"
2153 with_libsensors="no"
2155 with_libsensors="yes"
2156 if test "x$withval" != "xyes"
2158 with_sensors_cflags="-I$withval/include"
2159 with_sensors_ldflags="-L$withval/lib"
2160 with_libsensors="yes"
2165 if test "x$ac_system" = "xLinux"
2167 with_libsensors="yes"
2169 with_libsensors="no (Linux only library)"
2172 if test "x$with_libsensors" = "xyes"
2174 SAVE_CPPFLAGS="$CPPFLAGS"
2175 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
2177 # AC_CHECK_HEADERS(sensors/sensors.h,
2179 # AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
2181 # [with_libsensors="no (sensors/sensors.h not found)"])
2182 AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
2184 CPPFLAGS="$SAVE_CPPFLAGS"
2186 if test "x$with_libsensors" = "xyes"
2188 SAVE_CPPFLAGS="$CPPFLAGS"
2189 SAVE_LDFLAGS="$LDFLAGS"
2190 CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
2191 LDFLAGS="$LDFLAGS $with_sensors_ldflags"
2193 AC_CHECK_LIB(sensors, sensors_init,
2195 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
2197 [with_libsensors="no (libsensors not found)"])
2199 CPPFLAGS="$SAVE_CPPFLAGS"
2200 LDFLAGS="$SAVE_LDFLAGS"
2202 if test "x$with_libsensors" = "xyes"
2204 BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
2205 BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
2206 AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
2207 AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
2209 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
2212 # --with-libstatgrab {{{
2213 with_libstatgrab_cflags=""
2214 with_libstatgrab_ldflags=""
2215 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
2217 if test "x$withval" != "xno" \
2218 && test "x$withval" != "xyes"
2220 with_libstatgrab_cflags="-I$withval/include"
2221 with_libstatgrab_ldflags="-L$withval/lib"
2222 with_libstatgrab="yes"
2224 with_libstatgrab="$withval"
2228 if test "x$ac_system" = "xunknown"
2230 with_libstatgrab="yes"
2232 with_libstatgrab="no"
2235 with_libstatgrab_pkg_config="yes"
2236 if test "x$with_libstatgrab" = "xyes" \
2237 && test "x$PKG_CONFIG" != "x"
2239 AC_MSG_CHECKING([pkg-config for libstatgrab])
2241 $PKG_CONFIG --exists libstatgrab 2>/dev/null
2244 with_libstatgrab_pkg_config="no"
2245 temp_result="not found"
2247 AC_MSG_RESULT([$temp_result])
2249 AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
2250 with_libstatgrab_pkg_config="no"
2251 with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
2254 if test "x$with_libstatgrab" = "xyes" \
2255 && test "x$with_libstatgrab_pkg_config" = "xyes" \
2256 && test "x$with_libstatgrab_cflags" = "x"
2258 AC_MSG_CHECKING([for libstatgrab CFLAGS])
2259 temp_result="`$PKG_CONFIG --cflags libstatgrab`"
2262 with_libstatgrab_cflags="$temp_result"
2264 with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
2265 temp_result="$PKG_CONFIG --cflags libstatgrab failed"
2267 AC_MSG_RESULT([$temp_result])
2270 if test "x$with_libstatgrab" = "xyes" \
2271 && test "x$with_libstatgrab_pkg_config" = "xyes" \
2272 && test "x$with_libstatgrab_ldflags" = "x"
2274 AC_MSG_CHECKING([for libstatgrab LDFLAGS])
2275 temp_result="`$PKG_CONFIG --libs libstatgrab`"
2278 with_libstatgrab_ldflags="$temp_result"
2280 with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
2281 temp_result="$PKG_CONFIG --libs libstatgrab failed"
2283 AC_MSG_RESULT([$temp_result])
2286 if test "x$with_libstatgrab" = "xyes"
2288 SAVE_CPPFLAGS="$CPPFLAGS"
2289 CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
2291 AC_CHECK_HEADERS(statgrab.h,
2292 [with_libstatgrab="yes"],
2293 [with_libstatgrab="no (statgrab.h not found)"])
2295 CPPFLAGS="$SAVE_CPPFLAGS"
2298 if test "x$with_libstatgrab" = "xyes"
2300 SAVE_CFLAGS="$CFLAGS"
2301 SAVE_LDFLAGS="$LDFLAGS"
2303 CFLAGS="$CFLAGS $with_libstatgrab_cflags"
2304 LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
2306 AC_CHECK_LIB(statgrab, sg_init,
2307 [with_libstatgrab="yes"],
2308 [with_libstatgrab="no (symbol sg_init not found)"])
2310 CFLAGS="$SAVE_CFLAGS"
2311 LDFLAGS="$SAVE_LDFLAGS"
2314 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
2315 if test "x$with_libstatgrab" = "xyes"
2317 AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
2318 BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
2319 BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
2320 AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
2321 AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
2325 # --with-libxmms {{{
2326 with_xmms_config="xmms-config"
2329 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
2331 if test "x$withval" != "xno" \
2332 && test "x$withval" != "xyes"
2334 if test -f "$withval" && test -x "$withval";
2336 with_xmms_config="$withval"
2337 else if test -x "$withval/bin/xmms-config"
2339 with_xmms_config="$withval/bin/xmms-config"
2342 else if test "x$withval" = "xno"
2352 if test "x$with_libxmms" = "xyes"
2354 with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
2355 xmms_config_status=$?
2357 if test $xmms_config_status -ne 0
2362 if test "x$with_libxmms" = "xyes"
2364 with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
2365 xmms_config_status=$?
2367 if test $xmms_config_status -ne 0
2372 if test "x$with_libxmms" = "xyes"
2374 AC_CHECK_LIB(xmms, xmms_remote_get_info,
2376 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
2377 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
2378 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
2379 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
2386 with_libxmms_numeric=0
2387 if test "x$with_libxmms" = "xyes"
2389 with_libxmms_numeric=1
2391 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
2392 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
2395 # pkg-config --exists 'libupsclient' {{{
2396 with_libupsclient="no (pkg-config isn't available)"
2397 with_libupsclient_cflags=""
2398 with_libupsclient_libs=""
2399 if test "x$PKG_CONFIG" != "x"
2401 pkg-config --exists 'libupsclient' 2>/dev/null
2404 with_libupsclient="yes"
2406 with_libupsclient="no (pkg-config doesn't know library)"
2409 if test "x$with_libupsclient" = "xyes"
2411 with_libupsclient_cflags="`pkg-config --cflags 'libupsclient'`"
2414 with_libupsclient="no"
2416 with_libupsclient_libs="`pkg-config --libs 'libupsclient'`"
2419 with_libupsclient="no"
2422 if test "x$with_libupsclient" = "xyes"
2424 SAVE_CPPFLAGS="$CPPFLAGS"
2425 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
2427 AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
2429 CPPFLAGS="$SAVE_CPPFLAGS"
2431 if test "x$with_libupsclient" = "xyes"
2433 SAVE_CPPFLAGS="$CPPFLAGS"
2434 SAVE_LDFLAGS="$LDFLAGS"
2436 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
2437 LDFLAGS="$LDFLAGS $with_libupsclient_libs"
2439 AC_CHECK_LIB(upsclient, upscli_connect,
2440 [with_libupsclient="yes"],
2441 [with_libupsclient="no (symbol upscli_connect not found)"])
2443 CPPFLAGS="$SAVE_CPPFLAGS"
2444 LDFLAGS="$SAVE_LDFLAGS"
2446 if test "x$with_libupsclient" = "xyes"
2448 SAVE_CPPFLAGS="$CPPFLAGS"
2449 CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
2451 AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
2452 [#include <stdlib.h>
2454 #include <upsclient.h>])
2456 CPPFLAGS="$SAVE_CPPFLAGS"
2458 if test "x$with_libupsclient" = "xyes"
2460 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
2461 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
2462 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
2463 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
2467 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
2468 with_libxml2="no (pkg-config isn't available)"
2469 with_libxml2_cflags=""
2470 with_libxml2_ldflags=""
2471 with_libvirt="no (pkg-config isn't available)"
2472 with_libvirt_cflags=""
2473 with_libvirt_ldflags=""
2474 if test "x$PKG_CONFIG" != "x"
2476 pkg-config --exists 'libxml-2.0' 2>/dev/null
2481 with_libxml2="no (pkg-config doesn't know library)"
2484 pkg-config --exists libvirt 2>/dev/null
2489 with_libvirt="no (pkg-config doesn't know library)"
2492 if test "x$with_libxml2" = "xyes"
2494 with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
2499 with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
2505 if test "x$with_libxml2" = "xyes"
2507 SAVE_CPPFLAGS="$CPPFLAGS"
2508 CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
2510 AC_CHECK_HEADERS(libxml/parser.h, [],
2511 [with_libxml2="no (libxml/parser.h not found)"])
2513 CPPFLAGS="$SAVE_CPPFLAGS"
2515 if test "x$with_libxml2" = "xyes"
2517 SAVE_CFLAGS="$CFLAGS"
2518 SAVE_LDFLAGS="$LDFLAGS"
2520 CFLAGS="$CFLAGS $with_libxml2_cflags"
2521 LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
2523 AC_CHECK_LIB(xml2, xmlXPathEval,
2524 [with_libxml2="yes"],
2525 [with_libxml2="no (symbol xmlXPathEval not found)"])
2527 CFLAGS="$SAVE_CFLAGS"
2528 LDFLAGS="$SAVE_LDFLAGS"
2530 dnl Add the right compiler flags and libraries.
2531 if test "x$with_libxml2" = "xyes"; then
2532 BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
2533 BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
2534 AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
2535 AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
2537 if test "x$with_libvirt" = "xyes"
2539 with_libvirt_cflags="`pkg-config --cflags libvirt`"
2544 with_libvirt_ldflags="`pkg-config --libs libvirt`"
2550 if test "x$with_libvirt" = "xyes"
2552 SAVE_CPPFLAGS="$CPPFLAGS"
2553 CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
2555 AC_CHECK_HEADERS(libvirt/libvirt.h, [],
2556 [with_libvirt="no (libvirt/libvirt.h not found)"])
2558 CPPFLAGS="$SAVE_CPPFLAGS"
2560 if test "x$with_libvirt" = "xyes"
2562 SAVE_CFLAGS="$CFLAGS"
2563 SAVE_LDFLAGS="$LDFLAGS"
2565 CFLAGS="$CFLAGS $with_libvirt_cflags"
2566 LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
2568 AC_CHECK_LIB(virt, virDomainBlockStats,
2569 [with_libvirt="yes"],
2570 [with_libvirt="no (symbol virDomainBlockStats not found)"])
2572 CFLAGS="$SAVE_CFLAGS"
2573 LDFLAGS="$SAVE_LDFLAGS"
2575 dnl Add the right compiler flags and libraries.
2576 if test "x$with_libvirt" = "xyes"; then
2577 BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
2578 BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
2579 AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
2580 AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
2584 # $PKG_CONFIG --exists OpenIPMIpthread {{{
2585 with_libopenipmipthread="yes"
2586 with_libopenipmipthread_cflags=""
2587 with_libopenipmipthread_libs=""
2589 AC_MSG_CHECKING([for pkg-config])
2591 if test "x$PKG_CONFIG" = "x"
2593 with_libopenipmipthread="no"
2596 temp_result="$PKG_CONFIG"
2598 AC_MSG_RESULT([$temp_result])
2600 if test "x$with_libopenipmipthread" = "xyes"
2602 AC_MSG_CHECKING([for libOpenIPMIpthread])
2603 $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
2606 with_libopenipmipthread="no ($PKG_CONFIG doesn't know OpenIPMIpthread)"
2608 AC_MSG_RESULT([$with_libopenipmipthread])
2611 if test "x$with_libopenipmipthread" = "xyes"
2613 AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
2614 temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
2617 with_libopenipmipthread_cflags="$temp_result"
2619 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
2620 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
2622 AC_MSG_RESULT([$temp_result])
2625 if test "x$with_libopenipmipthread" = "xyes"
2627 AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
2628 temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
2631 with_libopenipmipthread_ldflags="$temp_result"
2633 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
2634 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
2636 AC_MSG_RESULT([$temp_result])
2639 if test "x$with_libopenipmipthread" = "xyes"
2641 SAVE_CPPFLAGS="$CPPFLAGS"
2642 CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
2644 AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
2645 [with_libopenipmipthread="yes"],
2646 [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
2647 [#include <OpenIPMI/ipmiif.h>
2648 #include <OpenIPMI/ipmi_err.h>
2649 #include <OpenIPMI/ipmi_posix.h>
2650 #include <OpenIPMI/ipmi_conn.h>
2653 CPPFLAGS="$SAVE_CPPFLAGS"
2656 if test "x$with_libopenipmipthread" = "xyes"
2658 BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
2659 BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
2660 AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
2661 AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
2665 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
2666 [with_libnotify="yes"],
2667 [with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"])
2669 # Check for enabled/disabled features
2672 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
2673 # ------------------------------------------------------------
2675 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
2680 m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
2685 m4_define([EnDis],[disabled])dnl
2686 m4_define([YesNo],[no])dnl
2692 m4_define([EnDis],[enabled])dnl
2693 m4_define([YesNo],[yes])dnl
2696 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
2700 m4_if([$3], [feature], [],
2704 AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
2710 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
2712 enable_$1='[YesNo]'dnl
2714 if test "x$enable_$1" = "xno"
2718 if test "x$enable_$1" = "xyes"
2722 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
2727 AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
2728 AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
2730 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
2732 # AC_PLUGIN(name, default, info)
2733 # ------------------------------------------------------------
2739 AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
2741 if test "x$enableval" = "xyes"
2749 if test "x$2" = "xyes"
2756 if test "x$enable_plugin" = "xyes"
2758 if test "x$2" = "xyes"
2760 AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
2761 else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
2762 dependency_error="yes"
2763 enable_plugin="no (dependency error)"
2766 AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
2767 enable_$1="$enable_plugin"
2769 )# AC_PLUGIN(name, default, info)
2771 m4_divert_once([HELP_ENABLE], [
2772 collectd features:])
2773 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
2774 AC_COLLECTD([debug], [enable], [feature], [debugging])
2775 AC_COLLECTD([daemon], [disable], [feature], [daemon mode])
2776 AC_COLLECTD([getifaddrs],[enable], [feature], [getifaddrs under Linux])
2778 dependency_error="no"
2786 plugin_interface="no"
2793 plugin_multimeter="no"
2796 plugin_processes="no"
2800 plugin_tcpconns="no"
2805 plugin_wireless="no"
2808 if test "x$ac_system" = "xLinux"
2810 plugin_battery="yes"
2812 plugin_cpufreq="yes"
2814 plugin_entropy="yes"
2815 plugin_interface="yes"
2820 plugin_processes="yes"
2823 plugin_tcpconns="yes"
2824 plugin_thermal="yes"
2826 plugin_vserver="yes"
2827 plugin_wireless="yes"
2829 if test "x$have_net_ip_vs_h" = "xyes" -o "x$have_ip_vs_h" = "xyes"
2835 if test "x$ac_system" = "xOpenBSD"
2837 plugin_tcpconns="yes"
2841 if test "x$with_libiokit" = "xyes"
2843 plugin_battery="yes"
2848 if test "x$with_devinfo$with_kstat" = "xyesyes"
2852 plugin_interface="yes"
2857 if test "x$have_sys_swap_h$with_kstat$ac_system" = "xyesyesSolaris"
2863 if test "x$with_libstatgrab" = "xyes"
2867 plugin_interface="yes"
2874 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
2879 if test "x$with_libopenipmipthread" = "xyes"
2884 if test "x$have_processor_info" = "xyes"
2888 if test "x$have_sysctlbyname" = "xyes"
2892 plugin_tcpconns="yes"
2895 if test "x$have_statfs" = "xyes"
2899 if test "x$have_statvfs" = "xyes"
2904 if test "x$have_getifaddrs" = "xyes"
2906 plugin_interface="yes"
2909 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
2911 plugin_libvirt="yes"
2914 if test "x$have_getloadavg" = "xyes"
2919 if test "x$have_libperl$have_perl_ithreads" = "xyesyes"
2924 # Mac OS X memory interface
2925 if test "x$have_host_statistics" = "xyes"
2930 if test "x$have_termios_h" = "xyes"
2932 plugin_multimeter="yes"
2935 if test "x$have_thread_info" = "xyes"
2937 plugin_processes="yes"
2940 if test "x$with_kvm_getprocs" = "xyes"
2942 plugin_processes="yes"
2945 if test "x$with_kvm_getswapinfo" = "xyes"
2950 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
2952 plugin_tcpconns="yes"
2955 if test "x$have_getutent" = "xyes"
2959 if test "x$have_getutxent" = "xyes"
2964 # FIXME: sysctl for swap plugin
2966 m4_divert_once([HELP_ENABLE], [
2969 AC_PLUGIN([apache], [$with_libcurl], [Apache httpd statistics])
2970 AC_PLUGIN([apcups], [yes], [Statistics of UPSes by APC])
2971 AC_PLUGIN([apple_sensors], [$with_libiokit], [Apple's hardware sensors])
2972 AC_PLUGIN([ascent], [$plugin_ascent], [AscentEmu player statistics])
2973 AC_PLUGIN([battery], [$plugin_battery], [Battery statistics])
2974 AC_PLUGIN([cpu], [$plugin_cpu], [CPU usage statistics])
2975 AC_PLUGIN([cpufreq], [$plugin_cpufreq], [CPU frequency statistics])
2976 AC_PLUGIN([csv], [yes], [CSV output plugin])
2977 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
2978 AC_PLUGIN([dbi], [$with_libdbi], [General database statistics])
2979 AC_PLUGIN([df], [$plugin_df], [Filesystem usage statistics])
2980 AC_PLUGIN([disk], [$plugin_disk], [Disk usage statistics])
2981 AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis])
2982 AC_PLUGIN([email], [yes], [EMail statistics])
2983 AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics])
2984 AC_PLUGIN([exec], [yes], [Execution of external programs])
2985 AC_PLUGIN([filecount], [yes], [Count files in directories])
2986 AC_PLUGIN([filter_ignore], [yes], [Ignore specific values])
2987 AC_PLUGIN([hddtemp], [yes], [Query hddtempd])
2988 AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics])
2989 AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
2990 AC_PLUGIN([ipmi], [$plugin_ipmi], [IPMI sensor statistics])
2991 AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
2992 AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
2993 AC_PLUGIN([libvirt], [$plugin_libvirt], [Virtual machine statistics])
2994 AC_PLUGIN([load], [$plugin_load], [System load])
2995 AC_PLUGIN([logfile], [yes], [File logging plugin])
2996 AC_PLUGIN([match_regex], [yes], [The regex match])
2997 AC_PLUGIN([match_value], [yes], [The value match])
2998 AC_PLUGIN([mbmon], [yes], [Query mbmond])
2999 AC_PLUGIN([memcached], [yes], [memcached statistics])
3000 AC_PLUGIN([memory], [$plugin_memory], [Memory usage])
3001 AC_PLUGIN([multimeter], [$plugin_multimeter], [Read multimeter values])
3002 AC_PLUGIN([mysql], [$with_libmysql], [MySQL statistics])
3003 AC_PLUGIN([netlink], [$with_libnetlink], [Enhanced Linux network statistics])
3004 AC_PLUGIN([network], [yes], [Network communication plugin])
3005 AC_PLUGIN([nfs], [$plugin_nfs], [NFS statistics])
3006 AC_PLUGIN([nginx], [$with_libcurl], [nginx statistics])
3007 AC_PLUGIN([notify_email], [$with_libesmtp], [Email notifier])
3008 AC_PLUGIN([ntpd], [yes], [NTPd statistics])
3009 AC_PLUGIN([nut], [$with_libupsclient], [Network UPS tools statistics])
3010 AC_PLUGIN([onewire], [$with_libowcapi], [OneWire sensor statistics])
3011 AC_PLUGIN([openvpn], [yes], [OpenVPN client statistics])
3012 AC_PLUGIN([oracle], [$with_oracle], [Oracle plugin])
3013 AC_PLUGIN([perl], [$plugin_perl], [Embed a Perl interpreter])
3014 AC_PLUGIN([ping], [$with_liboping], [Network latency statistics])
3015 AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics])
3016 AC_PLUGIN([powerdns], [yes], [PowerDNS statistics])
3017 AC_PLUGIN([processes], [$plugin_processes], [Process statistics])
3018 AC_PLUGIN([rrdtool], [$with_librrd], [RRDTool output plugin])
3019 AC_PLUGIN([rrdcached], [$librrd_rrdc_update], [RRDTool output plugin])
3020 AC_PLUGIN([sensors], [$with_libsensors], [lm_sensors statistics])
3021 AC_PLUGIN([serial], [$plugin_serial], [serial port traffic])
3022 AC_PLUGIN([snmp], [$with_libnetsnmp], [SNMP querying plugin])
3023 AC_PLUGIN([swap], [$plugin_swap], [Swap usage statistics])
3024 AC_PLUGIN([syslog], [$have_syslog], [Syslog logging plugin])
3025 AC_PLUGIN([tail], [yes], [Parsing of logfiles])
3026 AC_PLUGIN([tape], [$plugin_tape], [Tape drive statistics])
3027 AC_PLUGIN([target_notification], [yes], [The notification target])
3028 AC_PLUGIN([target_replace], [yes], [The replace target])
3029 AC_PLUGIN([target_set], [yes], [The set target])
3030 AC_PLUGIN([tcpconns], [$plugin_tcpconns], [TCP connection statistics])
3031 AC_PLUGIN([teamspeak2], [yes], [TeamSpeak2 server statistics])
3032 AC_PLUGIN([thermal], [$plugin_thermal], [Linux ACPI thermal zone statistics])
3033 AC_PLUGIN([unixsock], [yes], [Unixsock communication plugin])
3034 AC_PLUGIN([users], [$plugin_users], [User statistics])
3035 AC_PLUGIN([uuid], [yes], [UUID as hostname plugin])
3036 AC_PLUGIN([vmem], [$plugin_vmem], [Virtual memory statistics])
3037 AC_PLUGIN([vserver], [$plugin_vserver], [Linux VServer statistics])
3038 AC_PLUGIN([wireless], [$plugin_wireless], [Wireless statistics])
3039 AC_PLUGIN([xmms], [$with_libxmms], [XMMS statistics])
3042 if test "x$ac_system" = "xLinux" \
3043 && test "x$have_net_ip_vs_h$have_ip_vs_h" = "xnono"
3045 enable_ipvs="$enable_ipvs (ip_vs.h not found)"
3049 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
3051 if test "x$withval" != "xno" && test "x$withval" != "xyes"
3053 PERL_BINDINGS_OPTIONS="$withval"
3054 with_perl_bindings="yes"
3056 PERL_BINDINGS_OPTIONS=""
3057 with_perl_bindings="$withval"
3061 PERL_BINDINGS_OPTIONS=""
3062 if test -n "$perl_interpreter"
3064 with_perl_bindings="yes"
3066 with_perl_bindings="no (no perl interpreter found)"
3069 if test "x$with_perl_bindings" = "xyes"
3071 PERL_BINDINGS="perl"
3075 AC_SUBST(PERL_BINDINGS)
3076 AC_SUBST(PERL_BINDINGS_OPTIONS)
3078 dnl libcollectdclient
3079 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
3080 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
3081 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
3083 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
3085 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
3087 AC_SUBST(LCC_VERSION_MAJOR)
3088 AC_SUBST(LCC_VERSION_MINOR)
3089 AC_SUBST(LCC_VERSION_PATCH)
3090 AC_SUBST(LCC_VERSION_EXTRA)
3091 AC_SUBST(LCC_VERSION_STRING)
3093 AC_CONFIG_FILES(src/libcollectdclient/lcc_features.h)
3095 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/libiptc/Makefile src/libcollectdclient/Makefile src/liboconfig/Makefile src/liboping/Makefile bindings/Makefile)
3097 if test "x$with_librrd" = "xyes" \
3098 && test "x$librrd_threadsafe" != "xyes"
3100 with_librrd="yes (warning: librrd is not thread-safe)"
3103 if test "x$with_liboping" = "xyes" \
3104 && test "x$with_own_liboping" = "xyes"
3106 with_liboping="yes (shipped version)"
3109 if test "x$with_libiptc" = "xyes" -a "x$with_own_libiptc" = "xyes"
3111 with_libiptc="yes (shipped version)"
3114 if test "x$with_libperl" = "xyes"
3116 with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
3118 enable_perl="no (needs libperl)"
3121 if test "x$with_perl_bindings" = "xyes" \
3122 && test "x$PERL_BINDINGS_OPTIONS" != "x"
3124 with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
3131 libcurl . . . . . . . $with_libcurl
3132 libdbi . . . . . . . $with_libdbi
3133 libesmtp . . . . . . $with_libesmtp
3134 libiokit . . . . . . $with_libiokit
3135 libiptc . . . . . . . $with_libiptc
3136 libkstat . . . . . . $with_kstat
3137 libkvm . . . . . . . $with_libkvm
3138 libmysql . . . . . . $with_libmysql
3139 libnetlink . . . . . $with_libnetlink
3140 libnetsnmp . . . . . $with_libnetsnmp
3141 libnotify . . . . . . $with_libnotify
3142 liboconfig . . . . . $with_liboconfig
3143 libopenipmi . . . . . $with_libopenipmipthread
3144 liboping . . . . . . $with_liboping
3145 libpcap . . . . . . . $with_libpcap
3146 libpcre . . . . . . . $with_libpcre
3147 libperl . . . . . . . $with_libperl
3148 libpthread . . . . . $with_libpthread
3149 libpq . . . . . . . . $with_libpq
3150 librrd . . . . . . . $with_librrd
3151 libsensors . . . . . $with_libsensors
3152 libstatgrab . . . . . $with_libstatgrab
3153 libupsclient . . . . $with_libupsclient
3154 libvirt . . . . . . . $with_libvirt
3155 libxml2 . . . . . . . $with_libxml2
3156 libxmms . . . . . . . $with_libxmms
3157 oracle . . . . . . . $with_oracle
3160 daemon mode . . . . . $enable_daemon
3161 debug . . . . . . . . $enable_debug
3164 perl . . . . . . . . $with_perl_bindings
3167 apache . . . . . . . $enable_apache
3168 apcups . . . . . . . $enable_apcups
3169 apple_sensors . . . . $enable_apple_sensors
3170 ascent . . . . . . . $enable_ascent
3171 battery . . . . . . . $enable_battery
3172 cpu . . . . . . . . . $enable_cpu
3173 cpufreq . . . . . . . $enable_cpufreq
3174 csv . . . . . . . . . $enable_csv
3175 dbi . . . . . . . . . $enable_dbi
3176 df . . . . . . . . . $enable_df
3177 disk . . . . . . . . $enable_disk
3178 dns . . . . . . . . . $enable_dns
3179 email . . . . . . . . $enable_email
3180 entropy . . . . . . . $enable_entropy
3181 exec . . . . . . . . $enable_exec
3182 filecount . . . . . . $enable_filecount
3183 filter_ignore . . . . $enable_filter_ignore
3184 hddtemp . . . . . . . $enable_hddtemp
3185 interface . . . . . . $enable_interface
3186 iptables . . . . . . $enable_iptables
3187 ipmi . . . . . . . . $enable_ipmi
3188 ipvs . . . . . . . . $enable_ipvs
3189 irq . . . . . . . . . $enable_irq
3190 libvirt . . . . . . . $enable_libvirt
3191 load . . . . . . . . $enable_load
3192 logfile . . . . . . . $enable_logfile
3193 match_regex . . . . . $enable_match_regex
3194 match_value . . . . . $enable_match_value
3195 mbmon . . . . . . . . $enable_mbmon
3196 memcached . . . . . . $enable_memcached
3197 memory . . . . . . . $enable_memory
3198 multimeter . . . . . $enable_multimeter
3199 mysql . . . . . . . . $enable_mysql
3200 netlink . . . . . . . $enable_netlink
3201 network . . . . . . . $enable_network
3202 nfs . . . . . . . . . $enable_nfs
3203 nginx . . . . . . . . $enable_nginx
3204 notify_desktop . . . $enable_notify_desktop
3205 notify_email . . . . $enable_notify_email
3206 ntpd . . . . . . . . $enable_ntpd
3207 nut . . . . . . . . . $enable_nut
3208 onewire . . . . . . . $enable_onewire
3209 openvpn . . . . . . . $enable_openvpn
3210 oracle . . . . . . . $enable_oracle
3211 perl . . . . . . . . $enable_perl
3212 ping . . . . . . . . $enable_ping
3213 postgresql . . . . . $enable_postgresql
3214 powerdns . . . . . . $enable_powerdns
3215 processes . . . . . . $enable_processes
3216 rrdtool . . . . . . . $enable_rrdtool
3217 rrdcached . . . . . . $enable_rrdcached
3218 sensors . . . . . . . $enable_sensors
3219 serial . . . . . . . $enable_serial
3220 snmp . . . . . . . . $enable_snmp
3221 swap . . . . . . . . $enable_swap
3222 syslog . . . . . . . $enable_syslog
3223 tail . . . . . . . . $enable_tail
3224 tape . . . . . . . . $enable_tape
3225 target_notification . $enable_target_notification
3226 target_replace . . . $enable_target_replace
3227 target_set . . . . . $enable_target_set
3228 tcpconns . . . . . . $enable_tcpconns
3229 teamspeak2 . . . . . $enable_teamspeak2
3230 thermal . . . . . . . $enable_thermal
3231 unixsock . . . . . . $enable_unixsock
3232 users . . . . . . . . $enable_users
3233 uuid . . . . . . . . $enable_uuid
3234 vmem . . . . . . . . $enable_vmem
3235 vserver . . . . . . . $enable_vserver
3236 wireless . . . . . . $enable_wireless
3237 xmms . . . . . . . . $enable_xmms
3241 if test "x$dependency_error" = "xyes"; then
3242 AC_MSG_ERROR("Some plugins are missing dependencies - see above summary for details")
3245 # vim: set fdm=marker :