Code

1) Cleans up one configure.ac error AC_LINK_IFELSE requires AC_LANG_PROGRAM (or somet...
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, m4_esyscmd(./version-gen.sh))
3 AC_CONFIG_SRCDIR(src/collectd.c)
4 AC_CONFIG_HEADERS(src/config.h)
5 AC_CONFIG_AUX_DIR([libltdl/config])
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(dist-bzip2)
28 AC_LANG(C)
30 AC_PREFIX_DEFAULT("/opt/collectd")
32 AC_SYS_LARGEFILE
34 #
35 # Checks for programs.
36 #
37 AC_PROG_CC
38 AC_PROG_CPP
39 AC_PROG_INSTALL
40 AC_PROG_LN_S
41 AC_PROG_MAKE_SET
42 AM_PROG_CC_C_O
43 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
45 AC_DISABLE_STATIC
46 AC_PROG_LIBTOOL
47 AC_PROG_LEX
48 AC_PROG_YACC
49 PKG_PROG_PKG_CONFIG
51 AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no])
52 AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")
54 AC_MSG_CHECKING([for kernel type ($host_os)])
55 case $host_os in
56         *linux*)
57         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
58         ac_system="Linux"
59         ;;
60         *solaris*)
61         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
62         ac_system="Solaris"
63         ;;
64         *darwin*)
65         ac_system="Darwin"
66         ;;
67         *openbsd*)
68         ac_system="OpenBSD"
69         ;;
70         *aix*)
71         AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
72         ac_system="AIX"
73         ;;
74         *)
75         ac_system="unknown"
76 esac
77 AC_MSG_RESULT([$ac_system])
79 if test "x$ac_system" = "xLinux"
80 then
81         AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
82         if test -z "$KERNEL_DIR"
83         then
84                 KERNEL_DIR="/lib/modules/`uname -r`/source"
85         fi
87         KERNEL_CFLAGS="-I$KERNEL_DIR/include"
88         AC_SUBST(KERNEL_CFLAGS)
89 fi
91 if test "x$ac_system" = "xSolaris"
92 then
93         AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
94 fi
95 if test "x$ac_system" = "xAIX"
96 then
97         AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
98 fi
100 # Where to install .pc files.
101 pkgconfigdir="${libdir}/pkgconfig"
102 AC_SUBST(pkgconfigdir)
104 # Check for standards compliance mode
105 AC_ARG_ENABLE(standards,
106               AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
107               [enable_standards="$enableval"],
108               [enable_standards="no"])
109 if test "x$enable_standards" = "xyes"
110 then
111         AC_DEFINE(_ISOC99_SOURCE,        1, [Define to enforce ISO C99 compliance.])
112         AC_DEFINE(_POSIX_C_SOURCE, 200112L, [Define to enforce POSIX.1-2001 compliance.])
113         AC_DEFINE(_XOPEN_SOURCE,       600, [Define to enforce X/Open 6 (XSI) compliance.])
114         AC_DEFINE(_REENTRANT,            1, [Define to enable reentrancy interfaces.])
115 fi
116 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
119 # Checks for header files.
121 AC_HEADER_STDC
122 AC_HEADER_SYS_WAIT
123 AC_HEADER_DIRENT
124 AC_HEADER_STDBOOL
126 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)
128 # For ping library
129 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
130 [#if HAVE_STDINT_H
131 # include <stdint.h>
132 #endif
133 #if HAVE_SYS_TYPES_H
134 # include <sys/types.h>
135 #endif
136 ])
137 AC_CHECK_HEADERS(netinet/in.h, [], [],
138 [#if HAVE_STDINT_H
139 # include <stdint.h>
140 #endif
141 #if HAVE_SYS_TYPES_H
142 # include <sys/types.h>
143 #endif
144 #if HAVE_NETINET_IN_SYSTM_H
145 # include <netinet/in_systm.h>
146 #endif
147 ])
148 AC_CHECK_HEADERS(netinet/ip.h, [], [],
149 [#if HAVE_STDINT_H
150 # include <stdint.h>
151 #endif
152 #if HAVE_SYS_TYPES_H
153 # include <sys/types.h>
154 #endif
155 #if HAVE_NETINET_IN_SYSTM_H
156 # include <netinet/in_systm.h>
157 #endif
158 #if HAVE_NETINET_IN_H
159 # include <netinet/in.h>
160 #endif
161 ])
162 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
163 [#if HAVE_STDINT_H
164 # include <stdint.h>
165 #endif
166 #if HAVE_SYS_TYPES_H
167 # include <sys/types.h>
168 #endif
169 #if HAVE_NETINET_IN_SYSTM_H
170 # include <netinet/in_systm.h>
171 #endif
172 #if HAVE_NETINET_IN_H
173 # include <netinet/in.h>
174 #endif
175 #if HAVE_NETINET_IP_H
176 # include <netinet/ip.h>
177 #endif
178 ])
179 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
180 [#if HAVE_STDINT_H
181 # include <stdint.h>
182 #endif
183 #if HAVE_SYS_TYPES_H
184 # include <sys/types.h>
185 #endif
186 #if HAVE_NETINET_IN_SYSTM_H
187 # include <netinet/in_systm.h>
188 #endif
189 #if HAVE_NETINET_IN_H
190 # include <netinet/in.h>
191 #endif
192 #if HAVE_NETINET_IP_H
193 # include <netinet/ip.h>
194 #endif
195 ])
196 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
197 [#if HAVE_STDINT_H
198 # include <stdint.h>
199 #endif
200 #if HAVE_SYS_TYPES_H
201 # include <sys/types.h>
202 #endif
203 #if HAVE_NETINET_IN_SYSTM_H
204 # include <netinet/in_systm.h>
205 #endif
206 #if HAVE_NETINET_IN_H
207 # include <netinet/in.h>
208 #endif
209 ])
210 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
211 [#if HAVE_STDINT_H
212 # include <stdint.h>
213 #endif
214 #if HAVE_SYS_TYPES_H
215 # include <sys/types.h>
216 #endif
217 #if HAVE_NETINET_IN_SYSTM_H
218 # include <netinet/in_systm.h>
219 #endif
220 #if HAVE_NETINET_IN_H
221 # include <netinet/in.h>
222 #endif
223 #if HAVE_NETINET_IP6_H
224 # include <netinet/ip6.h>
225 #endif
226 ])
227 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
228 [#if HAVE_STDINT_H
229 # include <stdint.h>
230 #endif
231 #if HAVE_SYS_TYPES_H
232 # include <sys/types.h>
233 #endif
234 #if HAVE_NETINET_IN_SYSTM_H
235 # include <netinet/in_systm.h>
236 #endif
237 #if HAVE_NETINET_IN_H
238 # include <netinet/in.h>
239 #endif
240 #if HAVE_NETINET_IP_H
241 # include <netinet/ip.h>
242 #endif
243 ])
244 AC_CHECK_HEADERS(netinet/udp.h, [], [],
245 [#if HAVE_STDINT_H
246 # include <stdint.h>
247 #endif
248 #if HAVE_SYS_TYPES_H
249 # include <sys/types.h>
250 #endif
251 #if HAVE_NETINET_IN_SYSTM_H
252 # include <netinet/in_systm.h>
253 #endif
254 #if HAVE_NETINET_IN_H
255 # include <netinet/in.h>
256 #endif
257 #if HAVE_NETINET_IP_H
258 # include <netinet/ip.h>
259 #endif
260 ])
262 # For cpu modules
263 AC_CHECK_HEADERS(sys/dkstat.h)
264 if test "x$ac_system" = "xDarwin"
265 then
266         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)
267         AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
268 fi
269 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
271 #if HAVE_SYS_TYPES_H
272 #  include <sys/types.h>
273 #endif
274 #if HAVE_SYS_PARAM_H
275 # include <sys/param.h>
276 #endif
277 ])
279 AC_MSG_CHECKING([for sysctl kern.cp_times])
280 if test -x /sbin/sysctl
281 then
282         /sbin/sysctl kern.cp_times 2>/dev/null
283         if test $? -eq 0
284         then
285                 AC_MSG_RESULT([yes])
286                 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
287                 [Define if sysctl supports kern.cp_times])
288         else
289                 AC_MSG_RESULT([no])
290         fi
291 else
292         AC_MSG_RESULT([no])
293 fi
295 # For hddtemp module
296 AC_CHECK_HEADERS(linux/major.h libgen.h)
298 # For the battery plugin
299 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
301 #if HAVE_IOKIT_IOKITLIB_H
302 #  include <IOKit/IOKitLib.h>
303 #endif
304 #if HAVE_IOKIT_IOTYPES_H
305 #  include <IOKit/IOTypes.h>
306 #endif
307 ])
309 # For the swap module
310 have_linux_wireless_h="no"
311 if test "x$ac_system" = "xLinux"
312 then
313   AC_CHECK_HEADERS(linux/wireless.h,
314                    [have_linux_wireless_h="yes"],
315                    [have_linux_wireless_h="no"],
317 #include <dirent.h>
318 #include <sys/ioctl.h>
319 #include <sys/socket.h>
320 ])
321 fi
323 # For the swap module
324 have_sys_swap_h="yes"
325 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
327 #undef _FILE_OFFSET_BITS
328 #undef _LARGEFILE64_SOURCE
329 #if HAVE_SYS_TYPES_H
330 #  include <sys/types.h>
331 #endif
332 #if HAVE_SYS_PARAM_H
333 # include <sys/param.h>
334 #endif
335 ])
337 if test "x$have_sys_swap_h$ac_system" = "xnoSolaris"
338 then
339         hint_64=""
340         if test "x$GCC" = "xyes"
341         then
342                 hint_64="CFLAGS='-m64'"
343         else
344                 hint_64="CFLAGS='-xarch=v9'"
345         fi
346         AC_MSG_NOTICE([Solaris detected and sys/swap.h not usable. Try building a 64-bit binary ($hint_64 ./configure).])
347 fi
349 # For load module
350 # For the processes plugin
351 # For users module
352 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
354 # For interface plugin
355 AC_CHECK_HEADERS(ifaddrs.h)
356 AC_CHECK_HEADERS(net/if.h, [], [],
358 #if HAVE_SYS_TYPES_H
359 #  include <sys/types.h>
360 #endif
361 #if HAVE_SYS_SOCKET_H
362 #  include <sys/socket.h>
363 #endif
364 ])
365 AC_CHECK_HEADERS(linux/if.h, [], [],
367 #if HAVE_SYS_TYPES_H
368 #  include <sys/types.h>
369 #endif
370 #if HAVE_SYS_SOCKET_H
371 #  include <sys/socket.h>
372 #endif
373 ])
374 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
376 #if HAVE_SYS_TYPES_H
377 #  include <sys/types.h>
378 #endif
379 #if HAVE_SYS_SOCKET_H
380 #  include <sys/socket.h>
381 #endif
382 #if HAVE_LINUX_IF_H
383 # include <linux/if.h>
384 #endif
385 ])
387 # For ipvs module
388 have_linux_ip_vs_h="no"
389 have_net_ip_vs_h="no"
390 have_ip_vs_h="no"
391 ip_vs_h_needs_kernel_cflags="no"
392 if test "x$ac_system" = "xLinux"
393 then
394         AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
395         AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
396         AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
398         if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
399         then
400                 SAVE_CFLAGS="$CFLAGS"
401                 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
403                 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
405                 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
406                 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
407                 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
409                 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
410                 then
411                         ip_vs_h_needs_kernel_cflags="yes"
412                 fi
414                 CFLAGS="$SAVE_CFLAGS"
415         fi
416 fi
417 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
419 # For quota module
420 AC_CHECK_HEADERS(sys/ucred.h, [], [],
422 #if HAVE_SYS_TYPES_H
423 #  include <sys/types.h>
424 #endif
425 #if HAVE_SYS_PARAM_H
426 # include <sys/param.h>
427 #endif
428 ])
430 # For mount interface
431 AC_CHECK_HEADERS(sys/mount.h, [], [],
433 #if HAVE_SYS_TYPES_H
434 #  include <sys/types.h>
435 #endif
436 #if HAVE_SYS_PARAM_H
437 # include <sys/param.h>
438 #endif
439 ])
441 # For the email plugin
442 AC_CHECK_HEADERS(linux/un.h, [], [],
444 #if HAVE_SYS_SOCKET_H
445 #       include <sys/socket.h>
446 #endif
447 ])
449 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)
451 # For the dns plugin
452 AC_CHECK_HEADERS(arpa/nameser.h)
453 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
455 #if HAVE_ARPA_NAMESER_H
456 # include <arpa/nameser.h>
457 #endif
458 ])
460 AC_CHECK_HEADERS(net/if_arp.h, [], [],
461 [#if HAVE_SYS_SOCKET_H
462 # include <sys/socket.h>
463 #endif
464 ])
465 AC_CHECK_HEADERS(net/ppp_defs.h)
466 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
467 [#if HAVE_NET_PPP_DEFS_H
468 # include <net/ppp_defs.h>
469 #endif
470 ])
471 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
472 [#if HAVE_STDINT_H
473 # include <stdint.h>
474 #endif
475 #if HAVE_SYS_TYPES_H
476 # include <sys/types.h>
477 #endif
478 #if HAVE_SYS_SOCKET_H
479 # include <sys/socket.h>
480 #endif
481 #if HAVE_NET_IF_H
482 # include <net/if.h>
483 #endif
484 #if HAVE_NETINET_IN_H
485 # include <netinet/in.h>
486 #endif
487 ])
489 # For the multimeter plugin
490 have_termios_h="no"
491 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
494 # Checks for typedefs, structures, and compiler characteristics.
496 AC_C_CONST
497 AC_TYPE_PID_T
498 AC_TYPE_SIZE_T
499 AC_TYPE_UID_T
500 AC_HEADER_TIME
503 # Checks for library functions.
505 AC_PROG_GCC_TRADITIONAL
506 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog sysconf setenv if_indextoname)
508 AC_FUNC_STRERROR_R
510 SAVE_CFLAGS="$CFLAGS"
511 # Emulate behavior of src/Makefile.am
512 if test "x$GCC" = "xyes"
513 then
514         CFLAGS="$CFLAGS -Wall -Werror"
515 fi
517 AC_CACHE_CHECK([for strtok_r],
518   [c_cv_have_strtok_r_default],
519   AC_LINK_IFELSE(
520     AC_LANG_PROGRAM(
521     [[[[
522 #include <stdlib.h>
523 #include <stdio.h>
524 #include <string.h>
525     ]]]],
526     [[[[
527       char buffer[] = "foo,bar,baz";
528       char *token;
529       char *dummy;
530       char *saveptr;
532       dummy = buffer;
533       saveptr = NULL;
534       while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
535       {
536         dummy = NULL;
537         printf ("token = %s;\n", token);
538       }
539     ]]]]),
540     [c_cv_have_strtok_r_default="yes"],
541     [c_cv_have_strtok_r_default="no"]
542   )
545 if test "x$c_cv_have_strtok_r_default" = "xno"
546 then
547   CFLAGS="$CFLAGS -D_REENTRANT=1"
549   AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
550     [c_cv_have_strtok_r_reentrant],
551     AC_LINK_IFELSE(
552       AC_LANG_PROGRAM(
553       [[[[
554 #include <stdlib.h>
555 #include <stdio.h>
556 #include <string.h>
557       ]]]],
558       [[[[
559         char buffer[] = "foo,bar,baz";
560         char *token;
561         char *dummy;
562         char *saveptr;
564         dummy = buffer;
565         saveptr = NULL;
566         while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
567         {
568           dummy = NULL;
569           printf ("token = %s;\n", token);
570         }
571       ]]]]),
572       [c_cv_have_strtok_r_reentrant="yes"],
573       [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
574     )
575   )
576 fi
578 CFLAGS="$SAVE_CFLAGS"
579 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
580 then
581         CFLAGS="$CFLAGS -D_REENTRANT=1"
582 fi
584 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
586 socket_needs_socket="no"
587 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
588 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
590 nanosleep_needs_rt="no"
591 nanosleep_needs_posix4="no"
592 AC_CHECK_FUNCS(nanosleep,
593     [],
594     AC_CHECK_LIB(rt, nanosleep,
595         [nanosleep_needs_rt="yes"],
596         AC_CHECK_LIB(posix4, nanosleep,
597             [nanosleep_needs_posix4="yes"],
598             AC_MSG_ERROR(cannot find nanosleep))))
599 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
600 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$nanosleep_needs_posix4" = "xyes")
602 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
603 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
604 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
605 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
606 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
607 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
608 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
609 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
610 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
611 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
612 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
613 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
615 # For load module
616 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
618 # Check for NAN
619 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
621  if test "x$withval" = "xno"; then
622          nan_type="none"
623  else if test "x$withval" = "xyes"; then
624          nan_type="zero"
625  else
626          nan_type="$withval"
627  fi; fi
628 ],
629 [nan_type="none"])
630 if test "x$nan_type" = "xnone"; then
631   AC_CACHE_CHECK([whether NAN is defined by default],
632     [c_cv_have_nan_default],
633     AC_COMPILE_IFELSE(
634       AC_LANG_PROGRAM(
635       [[
636 #include <stdlib.h>
637 #include <math.h>
638 static float foo = NAN;
639       ]],
640       [[
641        if (isnan (foo))
642         return 0;
643        else
644         return 1;
645       ]]),
646       [c_cv_have_nan_default="yes"],
647       [c_cv_have_nan_default="no"]
648     )
649   )
650   if test "x$c_cv_have_nan_default" = "xyes"
651   then
652     nan_type="default"
653   fi
654 fi
655 if test "x$nan_type" = "xnone"; then
656   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
657     [c_cv_have_nan_isoc],
658     AC_COMPILE_IFELSE(
659       AC_LANG_PROGRAM(
660       [[
661 #include <stdlib.h>
662 #define __USE_ISOC99 1
663 #include <math.h>
664 static float foo = NAN;
665       ]],
666       [[
667        if (isnan (foo))
668         return 0;
669        else
670         return 1;
671       ]]),
672       [c_cv_have_nan_isoc="yes"],
673       [c_cv_have_nan_isoc="no"]
674     )
675   )
676   if test "x$c_cv_have_nan_isoc" = "xyes"
677   then
678     nan_type="isoc99"
679   fi
680 fi
681 if test "x$nan_type" = "xnone"; then
682   SAVE_LDFLAGS=$LDFLAGS
683   LDFLAGS="$LDFLAGS -lm"
684   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
685     [c_cv_have_nan_zero],
686     AC_RUN_IFELSE(
687       AC_LANG_PROGRAM(
688       [[
689 #include <stdlib.h>
690 #include <math.h>
691 #ifdef NAN
692 # undef NAN
693 #endif
694 #define NAN (0.0 / 0.0)
695 #ifndef isnan
696 # define isnan(f) ((f) != (f))
697 #endif
698 static float foo = NAN;
699       ]],
700       [[
701        if (isnan (foo))
702         return 0;
703        else
704         return 1;
705       ]]),
706       [c_cv_have_nan_zero="yes"],
707       [c_cv_have_nan_zero="no"]
708     )
709   )
710   LDFLAGS=$SAVE_LDFLAGS
711   if test "x$c_cv_have_nan_zero" = "xyes"
712   then
713     nan_type="zero"
714   fi
715 fi
717 if test "x$nan_type" = "xdefault"; then
718   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
719     [Define if NAN is defined by default and can initialize static variables.])
720 else if test "x$nan_type" = "xisoc99"; then
721   AC_DEFINE(NAN_STATIC_ISOC, 1,
722     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
723 else if test "x$nan_type" = "xzero"; then
724   AC_DEFINE(NAN_ZERO_ZERO, 1,
725     [Define if NAN can be defined as (0.0 / 0.0)])
726 else
727   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
728 fi; fi; fi
730 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
732  if test "x$withval" = "xnothing"; then
733         fp_layout_type="nothing"
734  else if test "x$withval" = "xendianflip"; then
735         fp_layout_type="endianflip"
736  else if test "x$withval" = "xintswap"; then
737         fp_layout_type="intswap"
738  else
739         AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
740 fi; fi; fi
741 ],
742 [fp_layout_type="unknown"])
744 if test "x$fp_layout_type" = "xunknown"; then
745   AC_CACHE_CHECK([if doubles are stored in x86 representation],
746     [c_cv_fp_layout_need_nothing],
747     AC_RUN_IFELSE(
748       AC_LANG_PROGRAM(
749       [[[[
750 #include <stdlib.h>
751 #include <stdio.h>
752 #include <string.h>
753 #if HAVE_STDINT_H
754 # include <stdint.h>
755 #endif
756 #if HAVE_INTTYPES_H
757 # include <inttypes.h>
758 #endif
759 #if HAVE_STDBOOL_H
760 # include <stdbool.h>
761 #endif
762       ]]]],
763       [[[[
764         uint64_t i0;
765         uint64_t i1;
766         uint8_t c[8];
767         double d;
769         d = 8.642135e130; 
770         memcpy ((void *) &i0, (void *) &d, 8);
772         i1 = i0;
773         memcpy ((void *) c, (void *) &i1, 8);
775         if ((c[0] == 0x2f) && (c[1] == 0x25)
776                         && (c[2] == 0xc0) && (c[3] == 0xc7)
777                         && (c[4] == 0x43) && (c[5] == 0x2b)
778                         && (c[6] == 0x1f) && (c[7] == 0x5b))
779                 return (0);
780         else
781                 return (1);
782       ]]]]),
783       [c_cv_fp_layout_need_nothing="yes"],
784       [c_cv_fp_layout_need_nothing="no"]
785     )
786   )
787   if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
788     fp_layout_type="nothing"
789   fi
790 fi
791 if test "x$fp_layout_type" = "xunknown"; then
792   AC_CACHE_CHECK([if endianflip converts to x86 representation],
793     [c_cv_fp_layout_need_endianflip],
794     AC_RUN_IFELSE(
795       AC_LANG_PROGRAM(
796       [[[[
797 #include <stdlib.h>
798 #include <stdio.h>
799 #include <string.h>
800 #if HAVE_STDINT_H
801 # include <stdint.h>
802 #endif
803 #if HAVE_INTTYPES_H
804 # include <inttypes.h>
805 #endif
806 #if HAVE_STDBOOL_H
807 # include <stdbool.h>
808 #endif
809 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
810                        (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
811                        (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
812                        (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
813                        (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
814                        (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
815                        (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
816                        (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
817       ]]]],
818       [[[[
819         uint64_t i0;
820         uint64_t i1;
821         uint8_t c[8];
822         double d;
824         d = 8.642135e130; 
825         memcpy ((void *) &i0, (void *) &d, 8);
827         i1 = endianflip (i0);
828         memcpy ((void *) c, (void *) &i1, 8);
830         if ((c[0] == 0x2f) && (c[1] == 0x25)
831                         && (c[2] == 0xc0) && (c[3] == 0xc7)
832                         && (c[4] == 0x43) && (c[5] == 0x2b)
833                         && (c[6] == 0x1f) && (c[7] == 0x5b))
834                 return (0);
835         else
836                 return (1);
837       ]]]]),
838       [c_cv_fp_layout_need_endianflip="yes"],
839       [c_cv_fp_layout_need_endianflip="no"]
840     )
841   )
842   if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
843     fp_layout_type="endianflip"
844   fi
845 fi
846 if test "x$fp_layout_type" = "xunknown"; then
847   AC_CACHE_CHECK([if intswap converts to x86 representation],
848     [c_cv_fp_layout_need_intswap],
849     AC_RUN_IFELSE(
850       AC_LANG_PROGRAM(
851       [[[[
852 #include <stdlib.h>
853 #include <stdio.h>
854 #include <string.h>
855 #if HAVE_STDINT_H
856 # include <stdint.h>
857 #endif
858 #if HAVE_INTTYPES_H
859 # include <inttypes.h>
860 #endif
861 #if HAVE_STDBOOL_H
862 # include <stdbool.h>
863 #endif
864 #define intswap(A)    ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
865                        (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
866       ]]]],
867       [[[[
868         uint64_t i0;
869         uint64_t i1;
870         uint8_t c[8];
871         double d;
873         d = 8.642135e130; 
874         memcpy ((void *) &i0, (void *) &d, 8);
876         i1 = intswap (i0);
877         memcpy ((void *) c, (void *) &i1, 8);
879         if ((c[0] == 0x2f) && (c[1] == 0x25)
880                         && (c[2] == 0xc0) && (c[3] == 0xc7)
881                         && (c[4] == 0x43) && (c[5] == 0x2b)
882                         && (c[6] == 0x1f) && (c[7] == 0x5b))
883                 return (0);
884         else
885                 return (1);
886       ]]]]),
887       [c_cv_fp_layout_need_intswap="yes"],
888       [c_cv_fp_layout_need_intswap="no"]
889     )
890   )
891   if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
892     fp_layout_type="intswap"
893   fi
894 fi
896 if test "x$fp_layout_type" = "xnothing"; then
897   AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
898   [Define if doubles are stored in x86 representation.])
899 else if test "x$fp_layout_type" = "xendianflip"; then
900   AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
901   [Define if endianflip is needed to convert to x86 representation.])
902 else if test "x$fp_layout_type" = "xintswap"; then
903   AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
904   [Define if intswap is needed to convert to x86 representation.])
905 else
906   AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
907 fi; fi; fi
909 have_getfsstat="no"
910 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
911 have_getvfsstat="no"
912 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
913 have_listmntent="no"
914 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
916 have_getmntent="no"
917 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
918 if test "x$have_getmntent" = "xno"; then
919         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
920 fi
921 if test "x$have_getmntent" = "xno"; then
922         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
923 fi
924 if test "x$have_getmntent" = "xno"; then
925         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
926 fi
928 if test "x$have_getmntent" = "xc"; then
929         AC_CACHE_CHECK([whether getmntent takes one argument],
930                 [c_cv_have_one_getmntent],
931                 AC_COMPILE_IFELSE(
932                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
933 #include "$srcdir/src/utils_mount.h"]],
934                                 [[
935                                  FILE *fh;
936                                  struct mntent *me;
937                                  fh = setmntent ("/etc/mtab", "r");
938                                  me = getmntent (fh);
939                                 ]]
940                         ),
941                         [c_cv_have_one_getmntent="yes"],
942                         [c_cv_have_one_getmntent="no"]
943                 )
944         )
945         AC_CACHE_CHECK([whether getmntent takes two arguments],
946                 [c_cv_have_two_getmntent],
947                 AC_COMPILE_IFELSE(
948                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
949 #include "$srcdir/src/utils_mount.h"]],
950                                 [[
951                                  FILE *fh;
952                                  struct mnttab mt;
953                                  int status;
954                                  fh = fopen ("/etc/mnttab", "r");
955                                  status = getmntent (fh, &mt);
956                                 ]]
957                         ),
958                         [c_cv_have_two_getmntent="yes"],
959                         [c_cv_have_two_getmntent="no"]
960                 )
961         )
962 fi
964 # Check for different versions of `getmntent' here..
966 if test "x$have_getmntent" = "xc"; then
967         if test "x$c_cv_have_one_getmntent" = "xyes"; then
968                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
969                           [Define if the function getmntent exists and takes one argument.])
970         fi
971         if test "x$c_cv_have_two_getmntent" = "xyes"; then
972                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
973                           [Define if the function getmntent exists and takes two arguments.])
974         fi
975 fi
976 if test "x$have_getmntent" = "xsun"; then
977         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
978                   [Define if the function getmntent exists. It's the version from libsun.])
979 fi
980 if test "x$have_getmntent" = "xseq"; then
981         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
982                   [Define if the function getmntent exists. It's the version from libseq.])
983 fi
984 if test "x$have_getmntent" = "xgen"; then
985         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
986                   [Define if the function getmntent exists. It's the version from libgen.])
987 fi
989 # Check for htonll
990 AC_MSG_CHECKING([if have htonll defined])
992     have_htonll="no"
993     AC_LINK_IFELSE([
994        AC_LANG_PROGRAM([
995 #include <sys/types.h>
996 #include <netinet/in.h>
997 #if HAVE_INTTYPES_H
998 # include <inttypes.h>
999 #endif
1000        ], [
1001           return htonll(0);
1002        ])
1003     ], [
1004       have_htonll="yes"
1005       AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1006     ])
1007  
1008 AC_MSG_RESULT([$have_htonll])
1010 # Check for structures
1011 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1012         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1013         [],
1014         [
1015         #include <sys/types.h>
1016         #include <sys/socket.h>
1017         #include <net/if.h>
1018         ])
1019 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1020         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1021         [],
1022         [
1023         #include <sys/types.h>
1024         #include <sys/socket.h>
1025         #include <linux/if.h>
1026         #include <linux/netdevice.h>
1027         ])
1029 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1030         [],
1031         [
1032         #include <netinet/in.h>
1033         #include <net/if.h>
1034         ])
1036 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1037         [
1038                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1039                         [Define if struct kinfo_proc exists in the FreeBSD variant.])
1040                 have_struct_kinfo_proc_freebsd="yes"
1041         ],
1042         [
1043                 have_struct_kinfo_proc_freebsd="no"
1044         ],
1045         [
1046 AC_INCLUDES_DEFAULT
1047 #include <kvm.h>
1048 #include <sys/param.h>
1049 #include <sys/sysctl.h>
1050 #include <sys/user.h>
1051         ])
1053 AC_CHECK_MEMBERS([struct kinfo_proc.kp_proc, struct kinfo_proc.kp_eproc],
1054         [
1055                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1056                         [Define if struct kinfo_proc exists in the OpenBSD variant.])
1057                 have_struct_kinfo_proc_openbsd="yes"
1058         ],
1059         [
1060                 have_struct_kinfo_proc_openbsd="no"
1061         ],
1062         [
1063 AC_INCLUDES_DEFAULT
1064 #include <sys/param.h>
1065 #include <sys/sysctl.h>
1066 #include <kvm.h>
1067         ])
1069 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1070 [#define _BSD_SOURCE
1071 #if HAVE_STDINT_H
1072 # include <stdint.h>
1073 #endif
1074 #if HAVE_SYS_TYPES_H
1075 # include <sys/types.h>
1076 #endif
1077 #if HAVE_NETINET_IN_SYSTM_H
1078 # include <netinet/in_systm.h>
1079 #endif
1080 #if HAVE_NETINET_IN_H
1081 # include <netinet/in.h>
1082 #endif
1083 #if HAVE_NETINET_IP_H
1084 # include <netinet/ip.h>
1085 #endif
1086 #if HAVE_NETINET_UDP_H
1087 # include <netinet/udp.h>
1088 #endif
1089 ])
1090 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1091 [#define _BSD_SOURCE
1092 #if HAVE_STDINT_H
1093 # include <stdint.h>
1094 #endif
1095 #if HAVE_SYS_TYPES_H
1096 # include <sys/types.h>
1097 #endif
1098 #if HAVE_NETINET_IN_SYSTM_H
1099 # include <netinet/in_systm.h>
1100 #endif
1101 #if HAVE_NETINET_IN_H
1102 # include <netinet/in.h>
1103 #endif
1104 #if HAVE_NETINET_IP_H
1105 # include <netinet/ip.h>
1106 #endif
1107 #if HAVE_NETINET_UDP_H
1108 # include <netinet/udp.h>
1109 #endif
1110 ])
1112 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1113         [],
1114         [],
1115         [
1116 #if HAVE_KSTAT_H
1117 # include <kstat.h>
1118 #endif
1119         ])
1122 # Checks for libraries begin here
1124 with_libresolv="yes"
1125 AC_CHECK_LIB(resolv, res_search,
1127         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1128 ],
1129 [with_libresolv="no"])
1130 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1132 dnl Check for HAL (hardware abstraction library)
1133 with_libhal="yes"
1134 AC_CHECK_LIB(hal,libhal_device_property_exists,
1135              [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1136              [with_libhal="no"])
1137 if test "x$with_libhal" = "xyes"; then
1138         if test "x$PKG_CONFIG" != "x"; then
1139                 BUILD_WITH_LIBHAL_CFLAGS="`pkg-config --cflags hal`"
1140                 BUILD_WITH_LIBHAL_LIBS="`pkg-config --libs hal`"
1141                 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1142                 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1143         fi
1144 fi
1146 m4_divert_once([HELP_WITH], [
1147 collectd additional packages:])
1149 AM_CONDITIONAL([BUILD_AIX],[test "x$x$ac_system" = "xAIX"]) 
1151 if test "x$ac_system" = "xAIX"
1152 then
1153         with_perfstat="yes"
1154         with_procinfo="yes"
1155 else
1156         with_perfstat="no (AIX only)"
1157         with_procinfo="no (AIX only)"
1158 fi
1160 if test "x$with_perfstat" = "xyes"
1161 then
1162         AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1163 #       AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1164 fi
1165 if test "x$with_perfstat" = "xyes"
1166 then
1167          AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1168 fi
1169 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1171 # Processes plugin under AIX.
1172 if test "x$with_procinfo" = "xyes"
1173 then
1174         AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1175 fi
1176 if test "x$with_procinfo" = "xyes"
1177 then
1178          AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1179 fi
1181 if test "x$ac_system" = "xSolaris"
1182 then
1183         with_kstat="yes"
1184         with_devinfo="yes"
1185 else
1186         with_kstat="no (Solaris only)"
1187         with_devinfo="no (Solaris only)"
1188 fi
1190 if test "x$with_kstat" = "xyes"
1191 then
1192         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1193 fi
1194 if test "x$with_kstat" = "xyes"
1195 then
1196         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1197         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1198 fi
1199 if test "x$with_kstat" = "xyes"
1200 then
1201         AC_DEFINE(HAVE_LIBKSTAT, 1,
1202                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1203 fi
1204 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1205 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1207 with_libiokit="no"
1208 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
1210         with_libiokit="yes"
1211 ], 
1213         with_libiokit="no"
1214 ])
1215 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1217 with_libkvm="no"
1218 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1219 if test "x$with_kvm_getprocs" = "xyes"
1220 then
1221         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1222                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1223         with_libkvm="yes"
1224 fi
1225 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1227 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1228 if test "x$with_kvm_getswapinfo" = "xyes"
1229 then
1230         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1231                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1232         with_libkvm="yes"
1233 fi
1234 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1236 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1237 if test "x$with_kvm_nlist" = "xyes"
1238 then
1239         AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1240         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1241                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1242         with_libkvm="yes"
1243 fi
1244 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1246 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1247 if test "x$with_kvm_openfiles" = "xyes"
1248 then
1249         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1250                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1251         with_libkvm="yes"
1252 fi
1253 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1255 # --with-libcurl {{{
1256 with_curl_config="curl-config"
1257 with_curl_cflags=""
1258 with_curl_libs=""
1259 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1261         if test "x$withval" = "xno"
1262         then
1263                 with_libcurl="no"
1264         else if test "x$withval" = "xyes"
1265         then
1266                 with_libcurl="yes"
1267         else
1268                 if test -f "$withval" && test -x "$withval"
1269                 then
1270                         with_curl_config="$withval"
1271                         with_libcurl="yes"
1272                 else if test -x "$withval/bin/curl-config"
1273                 then
1274                         with_curl_config="$withval/bin/curl-config"
1275                         with_libcurl="yes"
1276                 fi; fi
1277                 with_libcurl="yes"
1278         fi; fi
1279 ],
1281         with_libcurl="yes"
1282 ])
1283 if test "x$with_libcurl" = "xyes"
1284 then
1285         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1286         curl_config_status=$?
1288         if test $curl_config_status -ne 0
1289         then
1290                 with_libcurl="no ($with_curl_config failed)"
1291         else
1292                 SAVE_CPPFLAGS="$CPPFLAGS"
1293                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1295                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1297                 CPPFLAGS="$SAVE_CPPFLAGS"
1298         fi
1299 fi
1300 if test "x$with_libcurl" = "xyes"
1301 then
1302         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1303         curl_config_status=$?
1305         if test $curl_config_status -ne 0
1306         then
1307                 with_libcurl="no ($with_curl_config failed)"
1308         else
1309                 AC_CHECK_LIB(curl, curl_easy_init,
1310                  [with_libcurl="yes"],
1311                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1312                  [$with_curl_libs])
1313         fi
1314 fi
1315 if test "x$with_libcurl" = "xyes"
1316 then
1317         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1318         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1319         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1320         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1321 fi
1322 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1323 # }}}
1325 # --with-libdbi {{{
1326 with_libdbi_cppflags=""
1327 with_libdbi_ldflags=""
1328 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1330         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1331         then
1332                 with_libdbi_cppflags="-I$withval/include"
1333                 with_libdbi_ldflags="-L$withval/lib"
1334                 with_libdbi="yes"
1335         else
1336                 with_libdbi="$withval"
1337         fi
1338 ],
1340         with_libdbi="yes"
1341 ])
1342 if test "x$with_libdbi" = "xyes"
1343 then
1344         SAVE_CPPFLAGS="$CPPFLAGS"
1345         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1347         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1349         CPPFLAGS="$SAVE_CPPFLAGS"
1350 fi
1351 if test "x$with_libdbi" = "xyes"
1352 then
1353         SAVE_CPPFLAGS="$CPPFLAGS"
1354         SAVE_LDFLAGS="$LDFLAGS"
1355         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1356         LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1358         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1360         CPPFLAGS="$SAVE_CPPFLAGS"
1361         LDFLAGS="$SAVE_LDFLAGS"
1362 fi
1363 if test "x$with_libdbi" = "xyes"
1364 then
1365         BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1366         BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1367         BUILD_WITH_LIBDBI_LIBS="-ldbi"
1368         AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1369         AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1370         AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1371 fi
1372 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1373 # }}}
1375 # --with-libesmtp {{{
1376 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1378         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1379         then
1380                 LDFLAGS="$LDFLAGS -L$withval/lib"
1381                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1382                 with_libesmtp="yes"
1383         else
1384                 with_libesmtp="$withval"
1385         fi
1386 ],
1388         with_libesmtp="yes"
1389 ])
1390 if test "x$with_libesmtp" = "xyes"
1391 then
1392         AC_CHECK_LIB(esmtp, smtp_create_session,
1393         [
1394                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1395         ], [with_libesmtp="no (libesmtp not found)"])
1396 fi
1397 if test "x$with_libesmtp" = "xyes"
1398 then
1399         AC_CHECK_HEADERS(libesmtp.h,
1400         [
1401                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1402         ], [with_libesmtp="no (libesmtp.h not found)"])
1403 fi
1404 if test "x$with_libesmtp" = "xyes"
1405 then
1406         collect_libesmtp=1
1407 else
1408         collect_libesmtp=0
1409 fi
1410 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1411         [Wether or not to use the esmtp library])
1412 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1413 # }}}
1415 # --with-libganglia {{{
1416 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
1418  if test -f "$withval" && test -x "$withval"
1419  then
1420          with_libganglia_config="$withval"
1421          with_libganglia="yes"
1422  else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
1423  then
1424          with_libganglia_config="$withval/bin/ganglia-config"
1425          with_libganglia="yes"
1426  else if test -d "$withval"
1427  then
1428          GANGLIA_CPPFLAGS="-I$withval/include"
1429          GANGLIA_LDFLAGS="-L$withval/lib"
1430          with_libganglia="yes"
1431  else
1432          with_libganglia_config="ganglia-config"
1433          with_libganglia="$withval"
1434  fi; fi; fi
1435 ],
1437  with_libganglia_config="ganglia-config"
1438  with_libganglia="yes"
1439 ])
1441 if test "x$with_libganglia" = "xyes" && test "x$with_libganglia_config" != "x"
1442 then
1443         if test "x$GANGLIA_CPPFLAGS" = "x"
1444         then
1445                 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
1446         fi
1448         if test "x$GANGLIA_LDFLAGS" = "x"
1449         then
1450                 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
1451         fi
1453         if test "x$GANGLIA_LIBS" = "x"
1454         then
1455                 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
1456         fi
1457 fi
1459 SAVE_CPPFLAGS="$CPPFLAGS"
1460 SAVE_LDFLAGS="$LDFLAGS"
1461 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
1462 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
1464 if test "x$with_libganglia" = "xyes"
1465 then
1466         AC_CHECK_HEADERS(gm_protocol.h,
1467         [
1468                 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
1469                           [Define to 1 if you have the <gm_protocol.h> header file.])
1470         ], [with_libganglia="no (gm_protocol.h not found)"])
1471 fi
1473 if test "x$with_libganglia" = "xyes"
1474 then
1475         AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
1476         [
1477                 AC_DEFINE(HAVE_LIBGANGLIA, 1,
1478                           [Define to 1 if you have the ganglia library (-lganglia).])
1479         ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
1480 fi
1482 CPPFLAGS="$SAVE_CPPFLAGS"
1483 LDFLAGS="$SAVE_LDFLAGS"
1485 AC_SUBST(GANGLIA_CPPFLAGS)
1486 AC_SUBST(GANGLIA_LDFLAGS)
1487 AC_SUBST(GANGLIA_LIBS)
1488 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
1489 # }}}
1491 # --with-libgcrypt {{{
1492 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
1493 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
1494 GCRYPT_LIBS="$GCRYPT_LIBS"
1495 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
1497  if test -f "$withval" && test -x "$withval"
1498  then
1499          with_libgcrypt_config="$withval"
1500          with_libgcrypt="yes"
1501  else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
1502  then
1503          with_libgcrypt_config="$withval/bin/gcrypt-config"
1504          with_libgcrypt="yes"
1505  else if test -d "$withval"
1506  then
1507          GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
1508          GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
1509          with_libgcrypt="yes"
1510  else
1511          with_libgcrypt_config="gcrypt-config"
1512          with_libgcrypt="$withval"
1513  fi; fi; fi
1514 ],
1516  with_libgcrypt_config="libgcrypt-config"
1517  with_libgcrypt="yes"
1518 ])
1520 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
1521 then
1522         if test "x$GCRYPT_CPPFLAGS" = "x"
1523         then
1524                 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
1525         fi
1527         if test "x$GCRYPT_LDFLAGS" = "x"
1528         then
1529                 gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null`
1530                 GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib"
1531         fi
1533         if test "x$GCRYPT_LIBS" = "x"
1534         then
1535                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
1536         fi
1537 fi
1539 SAVE_CPPFLAGS="$CPPFLAGS"
1540 SAVE_LDFLAGS="$LDFLAGS"
1541 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
1542 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
1544 if test "x$with_libgcrypt" = "xyes"
1545 then
1546         if test "x$GCRYPT_CPPFLAGS" != "x"
1547         then
1548                 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
1549         fi
1550         AC_CHECK_HEADERS(gcrypt.h,
1551                 [with_libgcrypt="yes"],
1552                 [with_libgcrypt="no (gcrypt.h not found)"])
1553 fi
1555 if test "x$with_libgcrypt" = "xyes"
1556 then
1557         if test "x$GCRYPT_LDFLAGS" != "x"
1558         then
1559                 AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS])
1560         fi
1561         AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
1562                 [with_libgcrypt="yes"],
1563                 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
1565         if test "$with_libgcrypt" != "no"; then
1566                 AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")
1567         fi
1568 fi
1570 CPPFLAGS="$SAVE_CPPFLAGS"
1571 LDFLAGS="$SAVE_LDFLAGS"
1573 if test "x$with_libgcrypt" = "xyes"
1574 then
1575         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
1576 fi
1578 AC_SUBST(GCRYPT_CPPFLAGS)
1579 AC_SUBST(GCRYPT_LDFLAGS)
1580 AC_SUBST(GCRYPT_LIBS)
1581 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
1582 # }}}
1584 # --with-libiptc {{{
1585 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1587         if test "x$withval" = "xshipped"
1588         then
1589                 with_libiptc="own"
1590         else if test "x$withval" = "xyes"
1591         then
1592                 with_libiptc="pkgconfig"
1593         else if test "x$withval" = "xno"
1594         then
1595                 with_libiptc="no"
1596         else
1597                 with_libiptc="yes"
1598                 with_libiptc_cflags="-I$withval/include"
1599                 with_libiptc_libs="-L$withval/lib"
1600         fi; fi; fi
1601 ],
1603         if test "x$ac_system" = "xLinux"
1604         then
1605                 with_libiptc="pkgconfig"
1606         else
1607                 with_libiptc="no (Linux only)"
1608         fi
1609 ])
1611 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
1612 then
1613         with_libiptc="no (Don't have pkg-config)"
1614 fi
1616 if test "x$with_libiptc" = "xpkgconfig"
1617 then
1618         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
1619         if test $? -ne 0
1620         then
1621                 with_libiptc="no (pkg-config doesn't know libiptc)"
1622         fi
1623 fi
1624 if test "x$with_libiptc" = "xpkgconfig"
1625 then
1626         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
1627         if test $? -ne 0
1628         then
1629                 with_libiptc="no ($PKG_CONFIG failed)"
1630         fi
1631         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
1632         if test $? -ne 0
1633         then
1634                 with_libiptc="no ($PKG_CONFIG failed)"
1635         fi
1636 fi
1638 SAVE_CPPFLAGS="$CPPFLAGS"
1639 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
1641 # check whether the header file for libiptc is available.
1642 if test "x$with_libiptc" = "xpkgconfig"
1643 then
1644         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
1645                         [with_libiptc="no (header file missing)"])
1646 fi
1647 # If the header file is available, check for the required type declaractions.
1648 # They may be missing in old versions of libiptc. In that case, they will be
1649 # declared in the iptables plugin.
1650 if test "x$with_libiptc" = "xpkgconfig"
1651 then
1652         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
1653 fi
1654 # Check for the iptc_init symbol in the library.
1655 # This could be in iptc or ip4tc
1656 if test "x$with_libiptc" = "xpkgconfig"
1657 then
1658         SAVE_LIBS="$LIBS"
1659         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
1660                         [with_libiptc="pkgconfig"],
1661                         [with_libiptc="no"],
1662                         [$with_libiptc_libs])
1663         LIBS="$SAVE_LIBS"
1664 fi
1665 if test "x$with_libiptc" = "xpkgconfig"
1666 then
1667         with_libiptc="yes"
1668 fi
1670 CPPFLAGS="$SAVE_CPPFLAGS"
1672 if test "x$with_libiptc" = "xown"
1673 then
1674         with_libiptc_cflags=""
1675         with_libiptc_libs=""
1676 fi
1677 if test "x$with_libiptc" = "xown"
1678 then
1679         AC_CHECK_HEADERS(linux/netfilter_ipv4/ip_tables.h linux/netfilter_ipv6/ip6_tables.h linux/netfilter/x_tables.h, [],
1680         [
1681                 with_libiptc="no (Linux iptables headers not found)"
1682         ],
1683         [
1684 #include "$srcdir/src/owniptc/ipt_kernel_headers.h"
1685         ])
1686 fi
1687 AM_CONDITIONAL(BUILD_WITH_OWN_LIBIPTC, test "x$with_libiptc" = "xown")
1688 if test "x$with_libiptc" = "xown"
1689 then
1690         AC_DEFINE(OWN_LIBIPTC, 1, [Define to 1 if we use the shipped iptc library.])
1691         with_libiptc="yes"
1692 fi
1694 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
1695 if test "x$with_libiptc" = "xyes"
1696 then
1697         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
1698         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
1699         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
1700         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
1701 fi
1702 # }}}
1704 # --with-java {{{
1705 with_java_home="$JAVA_HOME"
1706 with_java_vmtype="client"
1707 with_java_cflags=""
1708 with_java_libs=""
1709 JAVAC="$JAVAC"
1710 JAR="$JAR"
1711 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
1713         if test "x$withval" = "xno"
1714         then
1715                 with_java="no"
1716         else if test "x$withval" = "xyes"
1717         then
1718                 with_java="yes"
1719         else
1720                 with_java_home="$withval"
1721                 with_java="yes"
1722         fi; fi
1723 ],
1724 [with_java="yes"])
1725 if test "x$with_java" = "xyes"
1726 then
1727         if test -d "$with_java_home"
1728         then
1729                 AC_MSG_CHECKING([for jni.h])
1730                 TMPDIR=`find "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' | head -n 1`
1731                 if test "x$TMPDIR" != "x"
1732                 then
1733                         AC_MSG_RESULT([found in $TMPDIR])
1734                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPDIR"
1735                 else
1736                         AC_MSG_RESULT([not found])
1737                 fi
1739                 AC_MSG_CHECKING([for jni_md.h])
1740                 TMPDIR=`find "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' | head -n 1`
1741                 if test "x$TMPDIR" != "x"
1742                 then
1743                         AC_MSG_RESULT([found in $TMPDIR])
1744                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPDIR"
1745                 else
1746                         AC_MSG_RESULT([not found])
1747                 fi
1749                 AC_MSG_CHECKING([for libjvm.so])
1750                 TMPDIR=`find "$with_java_home" -name libjvm.so -type f -exec 'dirname' '{}' ';' | head -n 1`
1751                 if test "x$TMPDIR" != "x"
1752                 then
1753                         AC_MSG_RESULT([found in $TMPDIR])
1754                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPDIR -Wl,-rpath -Wl,$TMPDIR"
1755                 else
1756                         AC_MSG_RESULT([not found])
1757                 fi
1759                 if test "x$JAVAC" = "x"
1760                 then
1761                         AC_MSG_CHECKING([for javac])
1762                         TMPDIR=`find "$with_java_home" -name javac -type f | head -n 1`
1763                         if test "x$TMPDIR" != "x"
1764                         then
1765                                 JAVAC="$TMPDIR"
1766                                 AC_MSG_RESULT([$JAVAC])
1767                         else
1768                                 AC_MSG_RESULT([not found])
1769                         fi
1770                 fi
1771                 if test "x$JAR" = "x"
1772                 then
1773                         AC_MSG_CHECKING([for jar])
1774                         TMPDIR=`find "$with_java_home" -name jar -type f | head -n 1`
1775                         if test "x$TMPDIR" != "x"
1776                         then
1777                                 JAR="$TMPDIR"
1778                                 AC_MSG_RESULT([$JAR])
1779                         else
1780                                 AC_MSG_RESULT([not found])
1781                         fi
1782                 fi
1783         else if test "x$with_java_home" != "x"
1784         then
1785                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
1786         fi; fi
1787 fi
1789 if test "x$JAVA_CPPFLAGS" != "x"
1790 then
1791         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
1792 fi
1793 if test "x$JAVA_CFLAGS" != "x"
1794 then
1795         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
1796 fi
1797 if test "x$JAVA_LDFLAGS" != "x"
1798 then
1799         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
1800 fi
1801 if test "x$JAVAC" = "x"
1802 then
1803         with_javac_path="$PATH"
1804         if test "x$with_java_home" != "x"
1805         then
1806                 with_javac_path="$with_java_home:with_javac_path"
1807                 if test -d "$with_java_home/bin"
1808                 then
1809                         with_javac_path="$with_java_home/bin:with_javac_path"
1810                 fi
1811         fi
1813         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
1814 fi
1815 if test "x$JAVAC" = "x"
1816 then
1817         with_java="no (javac not found)"
1818 fi
1819 if test "x$JAR" = "x"
1820 then
1821         with_jar_path="$PATH"
1822         if test "x$with_java_home" != "x"
1823         then
1824                 with_jar_path="$with_java_home:$with_jar_path"
1825                 if test -d "$with_java_home/bin"
1826                 then
1827                         with_jar_path="$with_java_home/bin:$with_jar_path"
1828                 fi
1829         fi
1831         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
1832 fi
1833 if test "x$JAR" = "x"
1834 then
1835         with_java="no (jar not found)"
1836 fi
1838 SAVE_CPPFLAGS="$CPPFLAGS"
1839 SAVE_CFLAGS="$CFLAGS"
1840 SAVE_LDFLAGS="$LDFLAGS"
1841 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
1842 CFLAGS="$CFLAGS $JAVA_CFLAGS"
1843 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
1845 if test "x$with_java" = "xyes"
1846 then
1847         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
1848 fi
1849 if test "x$with_java" = "xyes"
1850 then
1851         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
1852         [with_java="yes"],
1853         [with_java="no (libjvm not found)"],
1854         [$JAVA_LIBS])
1855 fi
1856 if test "x$with_java" = "xyes"
1857 then
1858         JAVA_LIBS="$JAVA_LIBS -ljvm"
1859         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
1860 fi
1862 CPPFLAGS="$SAVE_CPPFLAGS"
1863 CFLAGS="$SAVE_CFLAGS"
1864 LDFLAGS="$SAVE_LDFLAGS"
1866 AC_SUBST(JAVA_CPPFLAGS)
1867 AC_SUBST(JAVA_CFLAGS)
1868 AC_SUBST(JAVA_LDFLAGS)
1869 AC_SUBST(JAVA_LIBS)
1870 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
1871 # }}}
1873 # --with-libmemcached {{{
1874 with_libmemcached_cppflags=""
1875 with_libmemcached_ldflags=""
1876 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
1878         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1879         then
1880                 with_libmemcached_cppflags="-I$withval/include"
1881                 with_libmemcached_ldflags="-L$withval/lib"
1882                 with_libmemcached="yes"
1883         else
1884                 with_libmemcached="$withval"
1885         fi
1886 ],
1888         with_libmemcached="yes"
1889 ])
1890 if test "x$with_libmemcached" = "xyes"
1891 then
1892         SAVE_CPPFLAGS="$CPPFLAGS"
1893         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
1895         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
1897         CPPFLAGS="$SAVE_CPPFLAGS"
1898 fi
1899 if test "x$with_libmemcached" = "xyes"
1900 then
1901         SAVE_CPPFLAGS="$CPPFLAGS"
1902         SAVE_LDFLAGS="$LDFLAGS"
1903         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
1904         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
1906         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
1908         CPPFLAGS="$SAVE_CPPFLAGS"
1909         LDFLAGS="$SAVE_LDFLAGS"
1910 fi
1911 if test "x$with_libmemcached" = "xyes"
1912 then
1913         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
1914         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
1915         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
1916         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
1917         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
1918         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
1919         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
1920 fi
1921 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
1922 # }}}
1924 # --with-libmodbus {{{
1925 with_libmodbus_config=""
1926 with_libmodbus_cflags=""
1927 with_libmodbus_libs=""
1928 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
1930         if test "x$withval" = "xno"
1931         then
1932                 with_libmodbus="no"
1933         else if test "x$withval" = "xyes"
1934         then
1935                 with_libmodbus="use_pkgconfig"
1936         else if test -d "$with_libmodbus/lib"
1937         then
1938                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
1939                 with_libmodbus_cflags="-I$withval/include"
1940                 with_libmodbus_libs="-L$withval/lib -lmodbus"
1941                 with_libmodbus="yes"
1942         fi; fi; fi
1943 ],
1944 [with_libmodbus="use_pkgconfig"])
1946 # configure using pkg-config
1947 if test "x$with_libmodbus" = "xuse_pkgconfig"
1948 then
1949         if test "x$PKG_CONFIG" = "x"
1950         then
1951                 with_libmodbus="no (Don't have pkg-config)"
1952         fi
1953 fi
1954 if test "x$with_libmodbus" = "xuse_pkgconfig"
1955 then
1956         AC_MSG_NOTICE([Checking for modbus using $PKG_CONFIG])
1957         $PKG_CONFIG --exists 'modbus' 2>/dev/null
1958         if test $? -ne 0
1959         then
1960                 with_libmodbus="no (pkg-config doesn't know library)"
1961         fi
1962 fi
1963 if test "x$with_libmodbus" = "xuse_pkgconfig"
1964 then
1965         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'modbus'`"
1966         if test $? -ne 0
1967         then
1968                 with_libmodbus="no ($PKG_CONFIG failed)"
1969         fi
1970         with_libmodbus_libs="`$PKG_CONFIG --libs 'modbus'`"
1971         if test $? -ne 0
1972         then
1973                 with_libmodbus="no ($PKG_CONFIG failed)"
1974         fi
1975 fi
1976 if test "x$with_libmodbus" = "xuse_pkgconfig"
1977 then
1978         with_libmodbus="yes"
1979 fi
1981 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
1982 # the actual checks.
1983 if test "x$with_libmodbus" = "xyes"
1984 then
1985         SAVE_CPPFLAGS="$CPPFLAGS"
1986         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
1988         AC_CHECK_HEADERS(modbus/modbus.h, [], [with_libmodbus="no (modbus/modbus.h not found)"])
1990         CPPFLAGS="$SAVE_CPPFLAGS"
1991 fi
1992 if test "x$with_libmodbus" = "xyes"
1993 then
1994         SAVE_CPPFLAGS="$CPPFLAGS"
1995         SAVE_LDFLAGS="$LDFLAGS"
1997         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
1998         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2000         AC_CHECK_LIB(modbus, modbus_init_tcp,
2001                      [with_libmodbus="yes"],
2002                      [with_libmodbus="no (symbol modbus_init_tcp not found)"])
2004         CPPFLAGS="$SAVE_CPPFLAGS"
2005         LDFLAGS="$SAVE_LDFLAGS"
2006 fi
2007 if test "x$with_libmodbus" = "xyes"
2008 then
2009         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2010         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2011         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2012         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2013 fi
2014 # }}}
2016 # --with-libmysql {{{
2017 with_mysql_config="mysql_config"
2018 with_mysql_cflags=""
2019 with_mysql_libs=""
2020 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2022         if test "x$withval" = "xno"
2023         then
2024                 with_libmysql="no"
2025         else if test "x$withval" = "xyes"
2026         then
2027                 with_libmysql="yes"
2028         else
2029                 if test -f "$withval" && test -x "$withval";
2030                 then
2031                         with_mysql_config="$withval"
2032                 else if test -x "$withval/bin/mysql_config"
2033                 then
2034                         with_mysql_config="$withval/bin/mysql_config"
2035                 fi; fi
2036                 with_libmysql="yes"
2037         fi; fi
2038 ],
2040         with_libmysql="yes"
2041 ])
2042 if test "x$with_libmysql" = "xyes"
2043 then
2044         with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
2045         mysql_config_status=$?
2047         if test $mysql_config_status -ne 0
2048         then
2049                 with_libmysql="no ($with_mysql_config failed)"
2050         else
2051                 SAVE_CPPFLAGS="$CPPFLAGS"
2052                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2054                 have_mysql_h="no"
2055                 have_mysql_mysql_h="no"
2056                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2058                 if test "x$have_mysql_h" = "xno"
2059                 then
2060                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2061                 fi
2063                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2064                 then
2065                         with_libmysql="no (mysql.h not found)"
2066                 fi
2068                 CPPFLAGS="$SAVE_CPPFLAGS"
2069         fi
2070 fi
2071 if test "x$with_libmysql" = "xyes"
2072 then
2073         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2074         mysql_config_status=$?
2076         if test $mysql_config_status -ne 0
2077         then
2078                 with_libmysql="no ($with_mysql_config failed)"
2079         else
2080                 AC_CHECK_LIB(mysqlclient, mysql_init,
2081                  [with_libmysql="yes"],
2082                  [with_libmysql="no (symbol 'mysql_init' not found)"],
2083                  [$with_mysql_libs])
2085                 AC_CHECK_LIB(mysqlclient, mysql_get_server_version,
2086                  [with_libmysql="yes"],
2087                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2088                  [$with_mysql_libs])
2089         fi
2090 fi
2091 if test "x$with_libmysql" = "xyes"
2092 then
2093         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2094         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2095         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2096         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
2097 fi
2098 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
2099 # }}}
2101 # --with-libnetlink {{{
2102 with_libnetlink_cflags=""
2103 with_libnetlink_libs="-lnetlink"
2104 AC_ARG_WITH(libnetlink, [AS_HELP_STRING([--with-libnetlink@<:@=PREFIX@:>@], [Path to libnetlink.])],
2106  echo "libnetlink: withval = $withval"
2107  if test "x$withval" = "xyes"
2108  then
2109          with_libnetlink="yes"
2110  else if test "x$withval" = "xno"
2111  then
2112          with_libnetlink="no"
2113  else
2114          if test -d "$withval/include"
2115          then
2116                  with_libnetlink_cflags="-I$withval/include"
2117                  with_libnetlink_libs="-L$withval/lib -lnetlink"
2118                  with_libnetlink="yes"
2119          else
2120                  AC_MSG_ERROR("no such directory: $withval/include")
2121          fi
2122  fi; fi
2123 ],
2125  if test "x$ac_system" = "xLinux"
2126  then
2127          with_libnetlink="yes"
2128  else
2129          with_libnetlink="no (Linux only library)"
2130  fi
2131 ])
2132 if test "x$with_libnetlink" = "xyes"
2133 then
2134         SAVE_CFLAGS="$CFLAGS"
2135         CFLAGS="$CFLAGS $with_libnetlink_cflags"
2137         with_libnetlink="no (libnetlink.h not found)"
2139         AC_CHECK_HEADERS(libnetlink.h iproute/libnetlink.h linux/libnetlink.h,
2140         [
2141          with_libnetlink="yes"
2142          break
2143         ], [],
2144 [#include <stdio.h>
2145 #include <sys/types.h>
2146 #include <asm/types.h>
2147 #include <sys/socket.h>
2148 #include <linux/netlink.h>
2149 #include <linux/rtnetlink.h>])
2150         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2151 [#include <stdio.h>
2152 #include <sys/types.h>
2153 #include <asm/types.h>
2154 #include <sys/socket.h>])
2156         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2157                            [
2158                             #include <stdio.h>
2159                             #include <sys/types.h>
2160                             #include <asm/types.h>
2161                             #include <sys/socket.h>
2162                             #include <linux/netlink.h>
2163                             #include <linux/rtnetlink.h>
2164                             ], [
2165                                 int retval = TCA_STATS2;
2166                                 return (retval);
2167                                 ]
2168                             )],
2169                             [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2171         AC_COMPILE_IFELSE(
2172 [#include <stdio.h>
2173 #include <sys/types.h>
2174 #include <asm/types.h>
2175 #include <sys/socket.h>
2176 #include <linux/netlink.h>
2177 #include <linux/rtnetlink.h>
2179 int main (void)
2181         int retval = TCA_STATS;
2182         return (retval);
2183 }],
2184         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])]
2185         []);
2187         CFLAGS="$SAVE_CFLAGS"
2188 fi
2189 if test "x$with_libnetlink" = "xyes"
2190 then
2191         AC_CHECK_LIB(netlink, rtnl_open,
2192                      [with_libnetlink="yes"],
2193                      [with_libnetlink="no (symbol 'rtnl_open' not found)"],
2194                      [$with_libnetlink_libs])
2195 fi
2196 if test "x$with_libnetlink" = "xyes"
2197 then
2198         SAVE_CFLAGS="$CFLAGS"
2199         CFLAGS="$CFLAGS $with_libnetlink_cflags"
2201         AC_CACHE_CHECK(
2202                 [if function 'rtnl_dump_filter' expects five arguments],
2203                 [c_cv_rtnl_dump_filter_five_args],
2204                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2205                                 [
2206 AC_INCLUDES_DEFAULT
2207 #include <asm/types.h>
2208 #include <sys/socket.h>
2209 #if HAVE_LIBNETLINK_H
2210 # include <libnetlink.h>
2211 #elif HAVE_IPROUTE_LIBNETLINK_H
2212 # include <iproute/libnetlink.h>
2213 #elif HAVE_LINUX_LIBNETLINK_H
2214 # include <linux/libnetlink.h>
2215 #endif
2216                                 ],
2217                                 [
2218 if (rtnl_dump_filter(NULL, NULL, NULL, NULL, NULL))
2219         return 1;
2220 return 0;
2221                                 ]
2222                         )],
2223                         [c_cv_rtnl_dump_filter_five_args="yes"],
2224                         [c_cv_rtnl_dump_filter_five_args="no"]
2225                 )
2226         )
2228         AC_CACHE_CHECK(
2229                 [if function 'rtnl_dump_filter' expects three arguments],
2230                 [c_cv_rtnl_dump_filter_three_args],
2231                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2232                                 [
2233 AC_INCLUDES_DEFAULT
2234 #include <asm/types.h>
2235 #include <sys/socket.h>
2236 #if HAVE_LIBNETLINK_H
2237 # include <libnetlink.h>
2238 #elif HAVE_IPROUTE_LIBNETLINK_H
2239 # include <iproute/libnetlink.h>
2240 #elif HAVE_LINUX_LIBNETLINK_H
2241 # include <linux/libnetlink.h>
2242 #endif
2243                                 ],
2244                                 [
2245 if (rtnl_dump_filter(NULL, NULL, NULL))
2246         return 1;
2247 return 0;
2248                                 ]
2249                         )],
2250                         [c_cv_rtnl_dump_filter_three_args="yes"],
2251                         [c_cv_rtnl_dump_filter_three_args="no"]
2252                 )
2253         )
2255         CFLAGS="$SAVE_CFLAGS"
2257         if test "x$c_cv_rtnl_dump_filter_five_args" = "xyes"
2258         then
2259                 AC_DEFINE(RTNL_DUMP_FILTER_FIVE_ARGS, 1,
2260                                 [Define to 1 if function 'rtnl_dump_filter' expects five arguments.])
2261         fi
2262         if test "x$c_cv_rtnl_dump_filter_three_args" = "xyes"
2263         then
2264                 AC_DEFINE(RTNL_DUMP_FILTER_THREE_ARGS, 1,
2265                                 [Define to 1 if function 'rtnl_dump_filter' expects three arguments.])
2266         fi
2268         BUILD_WITH_LIBNETLINK_CFLAGS="$with_libnetlink_cflags"
2269         BUILD_WITH_LIBNETLINK_LIBS="$with_libnetlink_libs"
2270         AC_SUBST(BUILD_WITH_LIBNETLINK_CFLAGS)
2271         AC_SUBST(BUILD_WITH_LIBNETLINK_LIBS)
2272 fi
2273 AM_CONDITIONAL(BUILD_WITH_LIBNETLINK, test "x$with_libnetlink" = "xyes")
2274 # }}}
2276 # --with-libnetapp {{{
2277 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2278 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
2279 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
2280 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2281 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2282 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2283 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2285  if test -d "$withval"
2286  then
2287          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2288          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2289          with_libnetapp="yes"
2290  else
2291          with_libnetapp="$withval"
2292  fi
2293 ],
2295  with_libnetapp="yes"
2296 ])
2298 SAVE_CPPFLAGS="$CPPFLAGS"
2299 SAVE_LDFLAGS="$LDFLAGS"
2300 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2301 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2303 if test "x$with_libnetapp" = "xyes"
2304 then
2305         if test "x$LIBNETAPP_CPPFLAGS" != "x"
2306         then
2307                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2308         fi
2309         AC_CHECK_HEADERS(netapp_api.h,
2310                 [with_libnetapp="yes"],
2311                 [with_libnetapp="no (netapp_api.h not found)"])
2312 fi
2314 if test "x$with_libnetapp" = "xyes"
2315 then
2316         if test "x$LIBNETAPP_LDFLAGS" != "x"
2317         then
2318                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2319         fi
2321         if test "x$LIBNETAPP_LIBS" = "x"
2322         then
2323                 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
2324         fi
2325         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2327         AC_CHECK_LIB(netapp, na_server_invoke_elem,
2328                 [with_libnetapp="yes"],
2329                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2330                 [$LIBNETAPP_LIBS])
2331         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
2332 fi
2334 CPPFLAGS="$SAVE_CPPFLAGS"
2335 LDFLAGS="$SAVE_LDFLAGS"
2337 if test "x$with_libnetapp" = "xyes"
2338 then
2339         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
2340 fi
2342 AC_SUBST(LIBNETAPP_CPPFLAGS)
2343 AC_SUBST(LIBNETAPP_LDFLAGS)
2344 AC_SUBST(LIBNETAPP_LIBS)
2345 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
2346 # }}}
2348 # --with-libnetsnmp {{{
2349 with_snmp_config="net-snmp-config"
2350 with_snmp_cflags=""
2351 with_snmp_libs=""
2352 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
2354         if test "x$withval" = "xno"
2355         then
2356                 with_libnetsnmp="no"
2357         else if test "x$withval" = "xyes"
2358         then
2359                 with_libnetsnmp="yes"
2360         else
2361                 if test -x "$withval"
2362                 then
2363                         with_snmp_config="$withval"
2364                         with_libnetsnmp="yes"
2365                 else
2366                         with_snmp_config="$withval/bin/net-snmp-config"
2367                         with_libnetsnmp="yes"
2368                 fi
2369         fi; fi
2370 ],
2371 [with_libnetsnmp="yes"])
2372 if test "x$with_libnetsnmp" = "xyes"
2373 then
2374         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
2375         snmp_config_status=$?
2377         if test $snmp_config_status -ne 0
2378         then
2379                 with_libnetsnmp="no ($with_snmp_config failed)"
2380         else
2381                 SAVE_CPPFLAGS="$CPPFLAGS"
2382                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
2383                 
2384                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
2386                 CPPFLAGS="$SAVE_CPPFLAGS"
2387         fi
2388 fi
2389 if test "x$with_libnetsnmp" = "xyes"
2390 then
2391         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
2392         snmp_config_status=$?
2394         if test $snmp_config_status -ne 0
2395         then
2396                 with_libnetsnmp="no ($with_snmp_config failed)"
2397         else
2398                 AC_CHECK_LIB(netsnmp, init_snmp,
2399                 [with_libnetsnmp="yes"],
2400                 [with_libnetsnmp="no (libnetsnmp not found)"],
2401                 [$with_snmp_libs])
2402         fi
2403 fi
2404 if test "x$with_libnetsnmp" = "xyes"
2405 then
2406         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
2407         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
2408         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
2409         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
2410 fi
2411 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
2412 # }}}
2414 # --with-liboconfig {{{
2415 with_own_liboconfig="no"
2416 liboconfig_LDFLAGS="$LDFLAGS"
2417 liboconfig_CPPFLAGS="$CPPFLAGS"
2418 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
2420         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2421         then
2422                 if test -d "$withval/lib"
2423                 then
2424                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
2425                 fi
2426                 if test -d "$withval/include"
2427                 then
2428                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
2429                 fi
2430         fi
2431         if test "x$withval" = "xno"
2432         then
2433                 AC_MSG_ERROR("liboconfig is required")
2434         fi
2435 ],
2437         with_liboconfig="yes"
2438 ])
2440 save_LDFLAGS="$LDFLAGS"
2441 save_CPPFLAGS="$CPPFLAGS"
2442 LDFLAGS="$liboconfig_LDFLAGS"
2443 CPPFLAGS="$liboconfig_CPPFLAGS"
2444 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
2446         with_liboconfig="yes"
2447         with_own_liboconfig="no"
2448 ],
2450         with_liboconfig="yes"
2451         with_own_liboconfig="yes"
2452         LDFLAGS="$save_LDFLAGS"
2453         CPPFLAGS="$save_CPPFLAGS"
2454 ])
2456 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
2457 if test "x$with_own_liboconfig" = "xyes"
2458 then
2459         with_liboconfig="yes (shipped version)"
2460 fi
2461 # }}}
2463 # --with-liboping {{{
2464 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
2466  if test "x$withval" = "xyes"
2467  then
2468          with_liboping="yes"
2469  else if test "x$withval" = "xno"
2470  then
2471          with_liboping="no"
2472  else
2473          with_liboping="yes"
2474          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
2475          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
2476  fi; fi
2477 ],
2478 [with_liboping="yes"])
2480 SAVE_CPPFLAGS="$CPPFLAGS"
2481 SAVE_LDFLAGS="$LDFLAGS"
2483 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
2484 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
2486 if test "x$with_liboping" = "xyes"
2487 then
2488         if test "x$LIBOPING_CPPFLAGS" != "x"
2489         then
2490                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
2491         fi
2492         AC_CHECK_HEADERS(oping.h,
2493         [with_liboping="yes"],
2494         [with_liboping="no ('oping.h' not found)"])
2495 fi
2496 if test "x$with_liboping" = "xyes"
2497 then
2498         if test "x$LIBOPING_LDFLAGS" != "x"
2499         then
2500                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
2501         fi
2502         AC_CHECK_LIB(oping, ping_construct,
2503         [with_liboping="yes"],
2504         [with_liboping="no (symbol 'ping_construct' not found)"])
2505 fi
2507 CPPFLAGS="$SAVE_CPPFLAGS"
2508 LDFLAGS="$SAVE_LDFLAGS"
2510 if test "x$with_liboping" = "xyes"
2511 then
2512         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
2513         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
2514         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
2515         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
2516 fi
2517 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
2518 # }}}
2520 # --with-oracle {{{
2521 with_oracle_cppflags=""
2522 with_oracle_libs=""
2523 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
2525         if test "x$withval" = "xyes"
2526         then
2527                 if test "x$ORACLE_HOME" = "x"
2528                 then
2529                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
2530                 fi
2531                 with_oracle="yes"
2532         else if test "x$withval" = "xno"
2533         then
2534                 with_oracle="no"
2535         else
2536                 with_oracle="yes"
2537                 ORACLE_HOME="$withval"
2538         fi; fi
2539 ],
2541         if test "x$ORACLE_HOME" = "x"
2542         then
2543                 with_oracle="no (ORACLE_HOME is not set)"
2544         else
2545                 with_oracle="yes"
2546         fi
2547 ])
2548 if test "x$ORACLE_HOME" != "x"
2549 then
2550         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
2552         if test -e "$ORACLE_HOME/lib/ldflags"
2553         then
2554                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
2555         fi
2556         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
2557         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
2558 fi
2559 if test "x$with_oracle" = "xyes"
2560 then
2561         SAVE_CPPFLAGS="$CPPFLAGS"
2562         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2564         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
2566         CPPFLAGS="$SAVE_CPPFLAGS"
2567 fi
2568 if test "x$with_oracle" = "xyes"
2569 then
2570         SAVE_CPPFLAGS="$CPPFLAGS"
2571         SAVE_LDFLAGS="$LDFLAGS"
2572         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2573         LDFLAGS="$LDFLAGS $with_oracle_libs"
2575         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
2577         CPPFLAGS="$SAVE_CPPFLAGS"
2578         LDFLAGS="$SAVE_LDFLAGS"
2579 fi
2580 if test "x$with_oracle" = "xyes"
2581 then
2582         BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
2583         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
2584         AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
2585         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
2586 fi
2587 # }}}
2589 # --with-libowcapi {{{
2590 with_libowcapi_cppflags=""
2591 with_libowcapi_libs="-lowcapi"
2592 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
2594         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2595         then
2596                 with_libowcapi_cppflags="-I$withval/include"
2597                 with_libowcapi_libs="-L$withval/lib -lowcapi"
2598                 with_libowcapi="yes"
2599         else
2600                 with_libowcapi="$withval"
2601         fi
2602 ],
2604         with_libowcapi="yes"
2605 ])
2606 if test "x$with_libowcapi" = "xyes"
2607 then
2608         SAVE_CPPFLAGS="$CPPFLAGS"
2609         CPPFLAGS="$with_libowcapi_cppflags"
2610         
2611         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
2613         CPPFLAGS="$SAVE_CPPFLAGS"
2614 fi
2615 if test "x$with_libowcapi" = "xyes"
2616 then
2617         SAVE_LDFLAGS="$LDFLAGS"
2618         SAVE_CPPFLAGS="$CPPFLAGS"
2619         LDFLAGS="$with_libowcapi_libs"
2620         CPPFLAGS="$with_libowcapi_cppflags"
2621         
2622         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
2624         LDFLAGS="$SAVE_LDFLAGS"
2625         CPPFLAGS="$SAVE_CPPFLAGS"
2626 fi
2627 if test "x$with_libowcapi" = "xyes"
2628 then
2629         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
2630         BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
2631         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
2632         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
2633 fi
2634 # }}}
2636 # --with-libpcap {{{
2637 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
2639         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2640         then
2641                 LDFLAGS="$LDFLAGS -L$withval/lib"
2642                 CPPFLAGS="$CPPFLAGS -I$withval/include"
2643                 with_libpcap="yes"
2644         else
2645                 with_libpcap="$withval"
2646         fi
2647 ],
2649         with_libpcap="yes"
2650 ])
2651 if test "x$with_libpcap" = "xyes"
2652 then
2653         AC_CHECK_LIB(pcap, pcap_open_live,
2654         [
2655                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
2656         ], [with_libpcap="no (libpcap not found)"])
2657 fi
2658 if test "x$with_libpcap" = "xyes"
2659 then
2660         AC_CHECK_HEADERS(pcap.h,,
2661                          [with_libpcap="no (pcap.h not found)"])
2662 fi
2663 if test "x$with_libpcap" = "xyes"
2664 then
2665         AC_CHECK_HEADERS(pcap-bpf.h)
2666 fi
2667 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
2668 # }}}
2670 # --with-libperl {{{
2671 perl_interpreter="perl"
2672 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
2674         if test -f "$withval" && test -x "$withval"
2675         then
2676                 perl_interpreter="$withval"
2677                 with_libperl="yes"
2678         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
2679         then
2680                 LDFLAGS="$LDFLAGS -L$withval/lib"
2681                 CPPFLAGS="$CPPFLAGS -I$withval/include"
2682                 perl_interpreter="$withval/bin/perl"
2683                 with_libperl="yes"
2684         else
2685                 with_libperl="$withval"
2686         fi; fi
2687 ],
2689         with_libperl="yes"
2690 ])
2692 AC_MSG_CHECKING([for perl])
2693 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
2694 if test -x "$perl_interpreter"
2695 then
2696         AC_MSG_RESULT([yes ($perl_interpreter)])
2697 else
2698         perl_interpreter=""
2699         AC_MSG_RESULT([no])
2700 fi
2702 AC_SUBST(PERL, "$perl_interpreter")
2704 if test "x$with_libperl" = "xyes" \
2705         && test -n "$perl_interpreter"
2706 then
2707   SAVE_CFLAGS="$CFLAGS"
2708   SAVE_LDFLAGS="$LDFLAGS"
2709 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
2710   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
2711   PERL_LDFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
2712   CFLAGS="$CFLAGS $PERL_CFLAGS"
2713   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2715   AC_CACHE_CHECK([for libperl],
2716     [c_cv_have_libperl],
2717     AC_LINK_IFELSE(
2718       AC_LANG_PROGRAM(
2719       [[
2720 #define PERL_NO_GET_CONTEXT
2721 #include <EXTERN.h>
2722 #include <perl.h>
2723 #include <XSUB.h>
2724       ]],
2725       [[
2726        dTHX;
2727        load_module (PERL_LOADMOD_NOIMPORT,
2728                          newSVpv ("Collectd::Plugin::FooBar", 24),
2729                          Nullsv);
2730       ]]),
2731       [c_cv_have_libperl="yes"],
2732       [c_cv_have_libperl="no"]
2733     )
2734   )
2736   if test "x$c_cv_have_libperl" = "xyes"
2737   then
2738           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
2739           AC_SUBST(PERL_CFLAGS)
2740           AC_SUBST(PERL_LDFLAGS)
2741   else
2742           with_libperl="no"
2743   fi
2745   CFLAGS="$SAVE_CFLAGS"
2746   LDFLAGS="$SAVE_LDFLAGS"
2747 else if test -z "$perl_interpreter"; then
2748   with_libperl="no (no perl interpreter found)"
2749   c_cv_have_libperl="no"
2750 fi; fi
2751 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
2753 if test "x$with_libperl" = "xyes"
2754 then
2755         SAVE_CFLAGS="$CFLAGS"
2756         SAVE_LDFLAGS="$LDFLAGS"
2757         CFLAGS="$CFLAGS $PERL_CFLAGS"
2758         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2760         AC_CACHE_CHECK([if perl supports ithreads],
2761                 [c_cv_have_perl_ithreads],
2762                 AC_LINK_IFELSE(
2763                         AC_LANG_PROGRAM(
2764                         [[
2765 #include <EXTERN.h>
2766 #include <perl.h>
2767 #include <XSUB.h>
2769 #if !defined(USE_ITHREADS)
2770 # error "Perl does not support ithreads!"
2771 #endif /* !defined(USE_ITHREADS) */
2772                         ]],
2773                         [[ ]]),
2774                         [c_cv_have_perl_ithreads="yes"],
2775                         [c_cv_have_perl_ithreads="no"]
2776                 )
2777         )
2779         if test "x$c_cv_have_perl_ithreads" = "xyes"
2780         then
2781                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
2782         fi
2784         CFLAGS="$SAVE_CFLAGS"
2785         LDFLAGS="$SAVE_LDFLAGS"
2786 fi
2788 if test "x$with_libperl" = "xyes"
2789 then
2790         SAVE_CFLAGS="$CFLAGS"
2791         SAVE_LDFLAGS="$LDFLAGS"
2792         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
2793         # (see issues #41 and #42)
2794         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
2795         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2797         AC_CACHE_CHECK([for broken Perl_load_module()],
2798                 [c_cv_have_broken_perl_load_module],
2799                 AC_LINK_IFELSE(
2800                         AC_LANG_PROGRAM(
2801                         [[
2802 #define PERL_NO_GET_CONTEXT
2803 #include <EXTERN.h>
2804 #include <perl.h>
2805 #include <XSUB.h>
2806                         ]],
2807                         [[
2808                          dTHX;
2809                          load_module (PERL_LOADMOD_NOIMPORT,
2810                              newSVpv ("Collectd::Plugin::FooBar", 24),
2811                              Nullsv);
2812                         ]]),
2813                         [c_cv_have_broken_perl_load_module="no"],
2814                         [c_cv_have_broken_perl_load_module="yes"]
2815                 )
2816         )
2818         CFLAGS="$SAVE_CFLAGS"
2819         LDFLAGS="$SAVE_LDFLAGS"
2820 fi
2821 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
2822                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
2824 if test "x$with_libperl" = "xyes"
2825 then
2826         SAVE_CFLAGS="$CFLAGS"
2827         SAVE_LDFLAGS="$LDFLAGS"
2828         CFLAGS="$CFLAGS $PERL_CFLAGS"
2829         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2831         AC_CHECK_MEMBER(
2832                 [struct mgvtbl.svt_local],
2833                 [have_struct_mgvtbl_svt_local="yes"],
2834                 [have_struct_mgvtbl_svt_local="no"],
2835                 [
2836 #include <EXTERN.h>
2837 #include <perl.h>
2838 #include <XSUB.h>
2839                 ])
2841         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
2842         then
2843                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
2844                                   [Define if Perl's struct mgvtbl has member svt_local.])
2845         fi
2847         CFLAGS="$SAVE_CFLAGS"
2848         LDFLAGS="$SAVE_LDFLAGS"
2849 fi
2850 # }}}
2852 # --with-libpq {{{
2853 with_pg_config="pg_config"
2854 with_libpq_includedir=""
2855 with_libpq_libdir=""
2856 with_libpq_cppflags=""
2857 with_libpq_ldflags=""
2858 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
2859         [Path to libpq.])],
2861         if test "x$withval" = "xno"
2862         then
2863                 with_libpq="no"
2864         else if test "x$withval" = "xyes"
2865         then
2866                 with_libpq="yes"
2867         else
2868                 if test -f "$withval" && test -x "$withval";
2869                 then
2870                         with_pg_config="$withval"
2871                 else if test -x "$withval/bin/pg_config"
2872                 then
2873                         with_pg_config="$withval/bin/pg_config"
2874                 fi; fi
2875                 with_libpq="yes"
2876         fi; fi
2877 ],
2879         with_libpq="yes"
2880 ])
2881 if test "x$with_libpq" = "xyes"
2882 then
2883         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
2884         pg_config_status=$?
2886         if test $pg_config_status -eq 0
2887         then
2888                 if test -n "$with_libpq_includedir"; then
2889                         for dir in $with_libpq_includedir; do
2890                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
2891                         done
2892                 fi
2893         else
2894                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
2895         fi
2897         SAVE_CPPFLAGS="$CPPFLAGS"
2898         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
2900         AC_CHECK_HEADERS(libpq-fe.h, [],
2901                 [with_libpq="no (libpq-fe.h not found)"], [])
2903         CPPFLAGS="$SAVE_CPPFLAGS"
2904 fi
2905 if test "x$with_libpq" = "xyes"
2906 then
2907         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
2908         pg_config_status=$?
2910         if test $pg_config_status -eq 0
2911         then
2912                 if test -n "$with_libpq_libdir"; then
2913                         for dir in $with_libpq_libdir; do
2914                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
2915                         done
2916                 fi
2917         else
2918                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
2919         fi
2921         SAVE_LDFLAGS="$LDFLAGS"
2922         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
2924         AC_CHECK_LIB(pq, PQconnectdb,
2925                 [with_libpq="yes"],
2926                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
2928         AC_CHECK_LIB(pq, PQserverVersion,
2929                 [with_libpq="yes"],
2930                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
2932         LDFLAGS="$SAVE_LDFLAGS"
2933 fi
2934 if test "x$with_libpq" = "xyes"
2935 then
2936         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
2937         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
2938         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
2939         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
2940 fi
2941 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
2942 # }}}
2944 # --with-libpthread {{{
2945 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
2946 [       if test "x$withval" != "xno" \
2947                 && test "x$withval" != "xyes"
2948         then
2949                 LDFLAGS="$LDFLAGS -L$withval/lib"
2950                 CPPFLAGS="$CPPFLAGS -I$withval/include"
2951                 with_libpthread="yes"
2952         else
2953                 if test "x$withval" = "xno"
2954                 then
2955                         with_libpthread="no (disabled)"
2956                 fi
2957         fi
2958 ], [with_libpthread="yes"])
2959 if test "x$with_libpthread" = "xyes"
2960 then
2961         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
2962 fi
2964 if test "x$with_libpthread" = "xyes"
2965 then
2966         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
2967 fi
2968 if test "x$with_libpthread" = "xyes"
2969 then
2970         collect_pthread=1
2971 else
2972         collect_pthread=0
2973 fi
2974 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
2975         [Wether or not to use pthread (POSIX threads) library])
2976 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
2977 # }}}
2979 # --with-python {{{
2980 with_python_prog=""
2981 with_python_path="$PATH"
2982 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
2984  if test "x$withval" = "xyes" || test "x$withval" = "xno"
2985  then
2986          with_python="$withval"
2987  else if test -x "$withval"
2988  then
2989          with_python_prog="$withval"
2990          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
2991          with_python="yes"
2992  else if test -d "$withval"
2993  then
2994          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
2995          with_python="yes"
2996  else
2997          AC_MSG_WARN([Argument not recognized: $withval])
2998  fi; fi; fi
2999 ], [with_python="yes"])
3001 SAVE_PATH="$PATH"
3002 SAVE_CPPFLAGS="$CPPFLAGS"
3003 SAVE_LDFLAGS="$LDFLAGS"
3004 SAVE_LIBS="$LIBS"
3006 PATH="$with_python_path"
3008 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3009 then
3010         AC_MSG_CHECKING([for python])
3011         with_python_prog="`which python 2>/dev/null`"
3012         if test "x$with_python_prog" = "x"
3013         then
3014                 AC_MSG_RESULT([not found])
3015                 with_python="no (interpreter not found)"
3016         else
3017                 AC_MSG_RESULT([$with_python_prog])
3018         fi
3019 fi
3021 if test "x$with_python" = "xyes"
3022 then
3023         AC_MSG_CHECKING([for Python CPPFLAGS])
3024         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3025         python_config_status=$?
3027         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3028         then
3029                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3030                 with_python="no"
3031         else
3032                 AC_MSG_RESULT([$python_include_path])
3033         fi
3034 fi
3036 if test "x$with_python" = "xyes"
3037 then
3038         CPPFLAGS="-I$python_include_path $CPPFLAGS"
3039         AC_CHECK_HEADERS(Python.h,
3040                          [with_python="yes"],
3041                          [with_python="no ('Python.h' not found)"])
3042 fi
3044 if test "x$with_python" = "xyes"
3045 then
3046         AC_MSG_CHECKING([for Python LDFLAGS])
3047         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`
3048         python_config_status=$?
3050         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3051         then
3052                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3053                 with_python="no"
3054         else
3055                 AC_MSG_RESULT([$python_library_path])
3056         fi
3057 fi
3059 if test "x$with_python" = "xyes"
3060 then
3061         AC_MSG_CHECKING([for Python LIBS])
3062         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`
3063         python_config_status=$?
3065         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3066         then
3067                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3068                 with_python="no"
3069         else
3070                 AC_MSG_RESULT([$python_library_flags])
3071         fi
3072 fi
3074 if test "x$with_python" = "xyes"
3075 then
3076         LDFLAGS="-L$python_library_path $LDFLAGS"
3077         LIBS="$python_library_flags $LIBS"
3079         AC_CHECK_FUNC(PyObject_CallFunction,
3080                       [with_python="yes"],
3081                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3082 fi
3084 PATH="$SAVE_PATH"
3085 CPPFLAGS="$SAVE_CPPFLAGS"
3086 LDFLAGS="$SAVE_LDFLAGS"
3087 LIBS="$SAVE_LIBS"
3089 if test "x$with_python" = "xyes"
3090 then
3091         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3092         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3093         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3094         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3095         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3096         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3097 fi
3098 # }}} --with-python
3100 # --with-librouteros {{{
3101 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3103  if test "x$withval" = "xyes"
3104  then
3105          with_librouteros="yes"
3106  else if test "x$withval" = "xno"
3107  then
3108          with_librouteros="no"
3109  else
3110          with_librouteros="yes"
3111          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3112          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3113  fi; fi
3114 ],
3115 [with_librouteros="yes"])
3117 SAVE_CPPFLAGS="$CPPFLAGS"
3118 SAVE_LDFLAGS="$LDFLAGS"
3120 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3121 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3123 if test "x$with_librouteros" = "xyes"
3124 then
3125         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3126         then
3127                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3128         fi
3129         AC_CHECK_HEADERS(routeros_api.h,
3130         [with_librouteros="yes"],
3131         [with_librouteros="no ('routeros_api.h' not found)"])
3132 fi
3133 if test "x$with_librouteros" = "xyes"
3134 then
3135         if test "x$LIBROUTEROS_LDFLAGS" != "x"
3136         then
3137                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3138         fi
3139         AC_CHECK_LIB(routeros, ros_interface,
3140         [with_librouteros="yes"],
3141         [with_librouteros="no (symbol 'ros_interface' not found)"])
3142 fi
3144 CPPFLAGS="$SAVE_CPPFLAGS"
3145 LDFLAGS="$SAVE_LDFLAGS"
3147 if test "x$with_librouteros" = "xyes"
3148 then
3149         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3150         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3151         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3152         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3153 fi
3154 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3155 # }}}
3157 # --with-librrd {{{
3158 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3159 librrd_cflags=""
3160 librrd_ldflags=""
3161 librrd_threadsafe="yes"
3162 librrd_rrdc_update="no"
3163 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3164 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
3165         then
3166                 librrd_cflags="-I$withval/include"
3167                 librrd_ldflags="-L$withval/lib"
3168                 with_librrd="yes"
3169         else
3170                 with_librrd="$withval"
3171         fi
3172 ], [with_librrd="yes"])
3173 if test "x$with_librrd" = "xyes"
3174 then
3175         SAVE_CPPFLAGS="$CPPFLAGS"
3176         SAVE_LDFLAGS="$LDFLAGS"
3178         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3179         LDFLAGS="$LDFLAGS $librrd_ldflags"
3181         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
3183         CPPFLAGS="$SAVE_CPPFLAGS"
3184         LDFLAGS="$SAVE_LDFLAGS"
3185 fi
3186 if test "x$with_librrd" = "xyes"
3187 then
3188         SAVE_CPPFLAGS="$CPPFLAGS"
3189         SAVE_LDFLAGS="$LDFLAGS"
3191         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3192         LDFLAGS="$LDFLAGS $librrd_ldflags"
3194         AC_CHECK_LIB(rrd_th, rrd_update_r,
3195         [with_librrd="yes"
3196          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3197         ],
3198         [librrd_threadsafe="no"
3199          AC_CHECK_LIB(rrd, rrd_update,
3200          [with_librrd="yes"
3201           librrd_ldflags="$librrd_ldflags -lrrd -lm"
3202          ],
3203          [with_librrd="no (symbol 'rrd_update' not found)"],
3204          [-lm])
3205         ],
3206         [-lm])
3208         if test "x$librrd_threadsafe" = "xyes"
3209         then
3210                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3211         else
3212                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3213         fi
3215         CPPFLAGS="$SAVE_CPPFLAGS"
3216         LDFLAGS="$SAVE_LDFLAGS"
3217 fi
3218 if test "x$with_librrd" = "xyes"
3219 then
3220         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3221         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3222         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3223         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3224 fi
3225 if test "x$librrd_threadsafe" = "xyes"
3226 then
3227         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
3228 fi
3229 # }}}
3231 # --with-libsensors {{{
3232 with_sensors_cflags=""
3233 with_sensors_ldflags=""
3234 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
3236         if test "x$withval" = "xno"
3237         then
3238                 with_libsensors="no"
3239         else
3240                 with_libsensors="yes"
3241                 if test "x$withval" != "xyes"
3242                 then
3243                         with_sensors_cflags="-I$withval/include"
3244                         with_sensors_ldflags="-L$withval/lib"
3245                         with_libsensors="yes"
3246                 fi
3247         fi
3248 ],
3250         if test "x$ac_system" = "xLinux"
3251         then
3252                 with_libsensors="yes"
3253         else
3254                 with_libsensors="no (Linux only library)"
3255         fi
3256 ])
3257 if test "x$with_libsensors" = "xyes"
3258 then
3259         SAVE_CPPFLAGS="$CPPFLAGS"
3260         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3262 #       AC_CHECK_HEADERS(sensors/sensors.h,
3263 #       [
3264 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3265 #       ],
3266 #       [with_libsensors="no (sensors/sensors.h not found)"])
3267         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3269         CPPFLAGS="$SAVE_CPPFLAGS"
3270 fi
3271 if test "x$with_libsensors" = "xyes"
3272 then
3273         SAVE_CPPFLAGS="$CPPFLAGS"
3274         SAVE_LDFLAGS="$LDFLAGS"
3275         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3276         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3278         AC_CHECK_LIB(sensors, sensors_init,
3279         [
3280                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
3281         ],
3282         [with_libsensors="no (libsensors not found)"])
3284         CPPFLAGS="$SAVE_CPPFLAGS"
3285         LDFLAGS="$SAVE_LDFLAGS"
3286 fi
3287 if test "x$with_libsensors" = "xyes"
3288 then
3289         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3290         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3291         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3292         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
3293 fi
3294 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
3295 # }}}
3297 # --with-libstatgrab {{{
3298 with_libstatgrab_cflags=""
3299 with_libstatgrab_ldflags=""
3300 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
3302  if test "x$withval" != "xno" \
3303    && test "x$withval" != "xyes"
3304  then
3305    with_libstatgrab_cflags="-I$withval/include"
3306    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3307    with_libstatgrab="yes"
3308    with_libstatgrab_pkg_config="no"
3309  else
3310    with_libstatgrab="$withval"
3311    with_libstatgrab_pkg_config="yes"
3312  fi
3313  ],
3315  with_libstatgrab="yes"
3316  with_libstatgrab_pkg_config="yes"
3317 ])
3319 if test "x$with_libstatgrab" = "xyes" \
3320   && test "x$with_libstatgrab_pkg_config" = "xyes"
3321 then
3322   if test "x$PKG_CONFIG" != "x"
3323   then
3324     AC_MSG_CHECKING([pkg-config for libstatgrab])
3325     temp_result="found"
3326     $PKG_CONFIG --exists libstatgrab 2>/dev/null
3327     if test "$?" != "0"
3328     then
3329       with_libstatgrab_pkg_config="no"
3330       with_libstatgrab="no ($PKG_CONFIG doesn't know libstatgrab)"
3331       temp_result="not found"
3332     fi
3333     AC_MSG_RESULT([$temp_result])
3334   else
3335     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
3336     with_libstatgrab_pkg_config="no"
3337     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
3338   fi
3339 fi
3341 if test "x$with_libstatgrab" = "xyes" \
3342   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3343   && test "x$with_libstatgrab_cflags" = "x"
3344 then
3345   AC_MSG_CHECKING([for libstatgrab CFLAGS])
3346   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
3347   if test "$?" = "0"
3348   then
3349     with_libstatgrab_cflags="$temp_result"
3350   else
3351     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
3352     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
3353   fi
3354   AC_MSG_RESULT([$temp_result])
3355 fi
3357 if test "x$with_libstatgrab" = "xyes" \
3358   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3359   && test "x$with_libstatgrab_ldflags" = "x"
3360 then
3361   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
3362   temp_result="`$PKG_CONFIG --libs libstatgrab`"
3363   if test "$?" = "0"
3364   then
3365     with_libstatgrab_ldflags="$temp_result"
3366   else
3367     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
3368     temp_result="$PKG_CONFIG --libs libstatgrab failed"
3369   fi
3370   AC_MSG_RESULT([$temp_result])
3371 fi
3373 if test "x$with_libstatgrab" = "xyes"
3374 then
3375   SAVE_CPPFLAGS="$CPPFLAGS"
3376   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
3378   AC_CHECK_HEADERS(statgrab.h,
3379                    [with_libstatgrab="yes"],
3380                    [with_libstatgrab="no (statgrab.h not found)"])
3382   CPPFLAGS="$SAVE_CPPFLAGS"
3383 fi
3385 if test "x$with_libstatgrab" = "xyes"
3386 then
3387   SAVE_CFLAGS="$CFLAGS"
3388   SAVE_LDFLAGS="$LDFLAGS"
3390   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
3391   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
3393   AC_CHECK_LIB(statgrab, sg_init,
3394                [with_libstatgrab="yes"],
3395                [with_libstatgrab="no (symbol sg_init not found)"])
3397   CFLAGS="$SAVE_CFLAGS"
3398   LDFLAGS="$SAVE_LDFLAGS"
3399 fi
3401 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
3402 if test "x$with_libstatgrab" = "xyes"
3403 then
3404   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
3405   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
3406   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
3407   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
3408   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
3409 fi
3410 # }}}
3412 # --with-libtokyotyrant {{{
3413 with_libtokyotyrant_cppflags=""
3414 with_libtokyotyrant_ldflags=""
3415 with_libtokyotyrant_libs=""
3416 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
3418   if test "x$withval" = "xno"
3419   then
3420     with_libtokyotyrant="no"
3421   else if test "x$withval" = "xyes"
3422   then
3423     with_libtokyotyrant="yes"
3424   else
3425     with_libtokyotyrant_cppflags="-I$withval/include"
3426     with_libtokyotyrant_ldflags="-L$withval/include"
3427     with_libtokyotyrant_libs="-ltokyotyrant"
3428     with_libtokyotyrant="yes"
3429   fi; fi
3430 ],
3432   with_libtokyotyrant="yes"
3433 ])
3435 if test "x$with_libtokyotyrant" = "xyes"
3436 then
3437   if $PKG_CONFIG --exists tokyotyrant
3438   then
3439     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
3440     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `pkg-config --libs-only-L tokyotyrant`"
3441     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `pkg-config --libs-only-l tokyotyrant`"
3442   fi
3443 fi
3445 SAVE_CPPFLAGS="$CPPFLAGS"
3446 SAVE_LDFLAGS="$LDFLAGS"
3447 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
3448 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
3450 if test "x$with_libtokyotyrant" = "xyes"
3451 then
3452   AC_CHECK_HEADERS(tcrdb.h,
3453   [
3454           AC_DEFINE(HAVE_TCRDB_H, 1,
3455                     [Define to 1 if you have the <tcrdb.h> header file.])
3456   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
3457 fi
3459 if test "x$with_libtokyotyrant" = "xyes"
3460 then
3461   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
3462   [
3463           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
3464                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
3465   ],
3466   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
3467   [$with_libtokyotyrant_libs])
3468 fi
3470 CPPFLAGS="$SAVE_CPPFLAGS"
3471 LDFLAGS="$SAVE_LDFLAGS"
3473 if test "x$with_libtokyotyrant" = "xyes"
3474 then 
3475   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
3476   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
3477   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
3478   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
3479   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
3480   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
3481 fi
3482 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
3483 # }}}
3485 # --with-libupsclient {{{
3486 with_libupsclient_config=""
3487 with_libupsclient_cflags=""
3488 with_libupsclient_libs=""
3489 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
3491         if test "x$withval" = "xno"
3492         then
3493                 with_libupsclient="no"
3494         else if test "x$withval" = "xyes"
3495         then
3496                 with_libupsclient="use_pkgconfig"
3497         else
3498                 if test -x "$withval"
3499                 then
3500                         with_libupsclient_config="$withval"
3501                         with_libupsclient="use_libupsclient_config"
3502                 else if test -x "$withval/bin/libupsclient-config"
3503                 then
3504                         with_libupsclient_config="$withval/bin/libupsclient-config"
3505                         with_libupsclient="use_libupsclient_config"
3506                 else
3507                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
3508                         with_libupsclient_cflags="-I$withval/include"
3509                         with_libupsclient_libs="-L$withval/lib -lupsclient"
3510                         with_libupsclient="yes"
3511                 fi; fi
3512         fi; fi
3513 ],
3514 [with_libupsclient="use_pkgconfig"])
3516 # configure using libupsclient-config
3517 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3518 then
3519         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
3520         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
3521         if test $? -ne 0
3522         then
3523                 with_libupsclient="no ($with_libupsclient_config failed)"
3524         fi
3525         with_libupsclient_libs="`$with_libupsclient_config --libs`"
3526         if test $? -ne 0
3527         then
3528                 with_libupsclient="no ($with_libupsclient_config failed)"
3529         fi
3530 fi
3531 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3532 then
3533         with_libupsclient="yes"
3534 fi
3536 # configure using pkg-config
3537 if test "x$with_libupsclient" = "xuse_pkgconfig"
3538 then
3539         if test "x$PKG_CONFIG" = "x"
3540         then
3541                 with_libupsclient="no (Don't have pkg-config)"
3542         fi
3543 fi
3544 if test "x$with_libupsclient" = "xuse_pkgconfig"
3545 then
3546         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
3547         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
3548         if test $? -ne 0
3549         then
3550                 with_libupsclient="no (pkg-config doesn't know library)"
3551         fi
3552 fi
3553 if test "x$with_libupsclient" = "xuse_pkgconfig"
3554 then
3555         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
3556         if test $? -ne 0
3557         then
3558                 with_libupsclient="no ($PKG_CONFIG failed)"
3559         fi
3560         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
3561         if test $? -ne 0
3562         then
3563                 with_libupsclient="no ($PKG_CONFIG failed)"
3564         fi
3565 fi
3566 if test "x$with_libupsclient" = "xuse_pkgconfig"
3567 then
3568         with_libupsclient="yes"
3569 fi
3571 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
3572 # the actual checks.
3573 if test "x$with_libupsclient" = "xyes"
3574 then
3575         SAVE_CPPFLAGS="$CPPFLAGS"
3576         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3578         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
3580         CPPFLAGS="$SAVE_CPPFLAGS"
3581 fi
3582 if test "x$with_libupsclient" = "xyes"
3583 then
3584         SAVE_CPPFLAGS="$CPPFLAGS"
3585         SAVE_LDFLAGS="$LDFLAGS"
3587         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3588         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
3590         AC_CHECK_LIB(upsclient, upscli_connect,
3591                      [with_libupsclient="yes"],
3592                      [with_libupsclient="no (symbol upscli_connect not found)"])
3594         CPPFLAGS="$SAVE_CPPFLAGS"
3595         LDFLAGS="$SAVE_LDFLAGS"
3596 fi
3597 if test "x$with_libupsclient" = "xyes"
3598 then
3599         SAVE_CPPFLAGS="$CPPFLAGS"
3600         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3602         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
3603 [#include <stdlib.h>
3604 #include <stdio.h>
3605 #include <upsclient.h>])
3607         CPPFLAGS="$SAVE_CPPFLAGS"
3608 fi
3609 if test "x$with_libupsclient" = "xyes"
3610 then
3611         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
3612         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
3613         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
3614         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
3615 fi
3616 # }}}
3618 # --with-libxmms {{{
3619 with_xmms_config="xmms-config"
3620 with_xmms_cflags=""
3621 with_xmms_libs=""
3622 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
3624         if test "x$withval" != "xno" \
3625                 && test "x$withval" != "xyes"
3626         then
3627                 if test -f "$withval" && test -x "$withval";
3628                 then
3629                         with_xmms_config="$withval"
3630                 else if test -x "$withval/bin/xmms-config"
3631                 then
3632                         with_xmms_config="$withval/bin/xmms-config"
3633                 fi; fi
3634                 with_libxmms="yes"
3635         else if test "x$withval" = "xno"
3636         then
3637                 with_libxmms="no"
3638         else
3639                 with_libxmms="yes"
3640         fi; fi
3641 ],
3643         with_libxmms="yes"
3644 ])
3645 if test "x$with_libxmms" = "xyes"
3646 then
3647         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
3648         xmms_config_status=$?
3650         if test $xmms_config_status -ne 0
3651         then
3652                 with_libxmms="no"
3653         fi
3654 fi
3655 if test "x$with_libxmms" = "xyes"
3656 then
3657         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
3658         xmms_config_status=$?
3660         if test $xmms_config_status -ne 0
3661         then
3662                 with_libxmms="no"
3663         fi
3664 fi
3665 if test "x$with_libxmms" = "xyes"
3666 then
3667         AC_CHECK_LIB(xmms, xmms_remote_get_info,
3668         [
3669                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
3670                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
3671                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
3672                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
3673         ],
3674         [
3675                 with_libxmms="no"
3676         ],
3677         [$with_xmms_libs])
3678 fi
3679 with_libxmms_numeric=0
3680 if test "x$with_libxmms" = "xyes"
3681 then
3682         with_libxmms_numeric=1
3683 fi
3684 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
3685 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
3686 # }}}
3688 # --with-libyajl {{{
3689 with_libyajl_cppflags=""
3690 with_libyajl_ldflags=""
3691 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
3693         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3694         then
3695                 with_libyajl_cppflags="-I$withval/include"
3696                 with_libyajl_ldflags="-L$withval/lib"
3697                 with_libyajl="yes"
3698         else
3699                 with_libyajl="$withval"
3700         fi
3701 ],
3703         with_libyajl="yes"
3704 ])
3705 if test "x$with_libyajl" = "xyes"
3706 then
3707         SAVE_CPPFLAGS="$CPPFLAGS"
3708         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
3710         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
3711         AC_CHECK_HEADERS(yajl/yajl_version.h)
3713         CPPFLAGS="$SAVE_CPPFLAGS"
3714 fi
3715 if test "x$with_libyajl" = "xyes"
3716 then
3717         SAVE_CPPFLAGS="$CPPFLAGS"
3718         SAVE_LDFLAGS="$LDFLAGS"
3719         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
3720         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
3722         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
3724         CPPFLAGS="$SAVE_CPPFLAGS"
3725         LDFLAGS="$SAVE_LDFLAGS"
3726 fi
3727 if test "x$with_libyajl" = "xyes"
3728 then
3729         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
3730         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
3731         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
3732         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
3733         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
3734         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
3735         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
3736 fi
3737 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
3738 # }}}
3740 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
3741 with_libxml2="no (pkg-config isn't available)"
3742 with_libxml2_cflags=""
3743 with_libxml2_ldflags=""
3744 with_libvirt="no (pkg-config isn't available)"
3745 with_libvirt_cflags=""
3746 with_libvirt_ldflags=""
3747 if test "x$PKG_CONFIG" != "x"
3748 then
3749         pkg-config --exists 'libxml-2.0' 2>/dev/null
3750         if test "$?" = "0"
3751         then
3752                 with_libxml2="yes"
3753         else
3754                 with_libxml2="no (pkg-config doesn't know library)"
3755         fi
3757         pkg-config --exists libvirt 2>/dev/null
3758         if test "$?" = "0"
3759         then
3760                 with_libvirt="yes"
3761         else
3762                 with_libvirt="no (pkg-config doesn't know library)"
3763         fi
3764 fi
3765 if test "x$with_libxml2" = "xyes"
3766 then
3767         with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
3768         if test $? -ne 0
3769         then
3770                 with_libxml2="no"
3771         fi
3772         with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
3773         if test $? -ne 0
3774         then
3775                 with_libxml2="no"
3776         fi
3777 fi
3778 if test "x$with_libxml2" = "xyes"
3779 then
3780         SAVE_CPPFLAGS="$CPPFLAGS"
3781         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
3783         AC_CHECK_HEADERS(libxml/parser.h, [],
3784                       [with_libxml2="no (libxml/parser.h not found)"])
3786         CPPFLAGS="$SAVE_CPPFLAGS"
3787 fi
3788 if test "x$with_libxml2" = "xyes"
3789 then
3790         SAVE_CFLAGS="$CFLAGS"
3791         SAVE_LDFLAGS="$LDFLAGS"
3793         CFLAGS="$CFLAGS $with_libxml2_cflags"
3794         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
3796         AC_CHECK_LIB(xml2, xmlXPathEval,
3797                      [with_libxml2="yes"],
3798                      [with_libxml2="no (symbol xmlXPathEval not found)"])
3800         CFLAGS="$SAVE_CFLAGS"
3801         LDFLAGS="$SAVE_LDFLAGS"
3802 fi
3803 dnl Add the right compiler flags and libraries.
3804 if test "x$with_libxml2" = "xyes"; then
3805         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
3806         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
3807         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
3808         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
3809 fi
3810 if test "x$with_libvirt" = "xyes"
3811 then
3812         with_libvirt_cflags="`pkg-config --cflags libvirt`"
3813         if test $? -ne 0
3814         then
3815                 with_libvirt="no"
3816         fi
3817         with_libvirt_ldflags="`pkg-config --libs libvirt`"
3818         if test $? -ne 0
3819         then
3820                 with_libvirt="no"
3821         fi
3822 fi
3823 if test "x$with_libvirt" = "xyes"
3824 then
3825         SAVE_CPPFLAGS="$CPPFLAGS"
3826         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
3828         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
3829                       [with_libvirt="no (libvirt/libvirt.h not found)"])
3831         CPPFLAGS="$SAVE_CPPFLAGS"
3832 fi
3833 if test "x$with_libvirt" = "xyes"
3834 then
3835         SAVE_CFLAGS="$CFLAGS"
3836         SAVE_LDFLAGS="$LDFLAGS"
3838         CFLAGS="$CFLAGS $with_libvirt_cflags"
3839         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
3841         AC_CHECK_LIB(virt, virDomainBlockStats,
3842                      [with_libvirt="yes"],
3843                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
3845         CFLAGS="$SAVE_CFLAGS"
3846         LDFLAGS="$SAVE_LDFLAGS"
3847 fi
3848 dnl Add the right compiler flags and libraries.
3849 if test "x$with_libvirt" = "xyes"; then
3850         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
3851         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
3852         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
3853         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
3854 fi
3855 # }}}
3857 # $PKG_CONFIG --exists OpenIPMIpthread {{{
3858 with_libopenipmipthread="yes"
3859 with_libopenipmipthread_cflags=""
3860 with_libopenipmipthread_libs=""
3862 AC_MSG_CHECKING([for pkg-config])
3863 temp_result="no"
3864 if test "x$PKG_CONFIG" = "x"
3865 then
3866         with_libopenipmipthread="no"
3867         temp_result="no"
3868 else
3869         temp_result="$PKG_CONFIG"
3870 fi
3871 AC_MSG_RESULT([$temp_result])
3873 if test "x$with_libopenipmipthread" = "xyes"
3874 then
3875         AC_MSG_CHECKING([for libOpenIPMIpthread])
3876         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
3877         if test "$?" != "0"
3878         then
3879                 with_libopenipmipthread="no ($PKG_CONFIG doesn't know OpenIPMIpthread)"
3880         fi
3881         AC_MSG_RESULT([$with_libopenipmipthread])
3882 fi
3884 if test "x$with_libopenipmipthread" = "xyes"
3885 then
3886         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
3887         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
3888         if test "$?" = "0"
3889         then
3890                 with_libopenipmipthread_cflags="$temp_result"
3891         else
3892                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
3893                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
3894         fi
3895         AC_MSG_RESULT([$temp_result])
3896 fi
3898 if test "x$with_libopenipmipthread" = "xyes"
3899 then
3900         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
3901         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
3902         if test "$?" = "0"
3903         then
3904                 with_libopenipmipthread_ldflags="$temp_result"
3905         else
3906                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
3907                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
3908         fi
3909         AC_MSG_RESULT([$temp_result])
3910 fi
3912 if test "x$with_libopenipmipthread" = "xyes"
3913 then
3914         SAVE_CPPFLAGS="$CPPFLAGS"
3915         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
3917         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
3918                          [with_libopenipmipthread="yes"],
3919                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
3920 [#include <OpenIPMI/ipmiif.h>
3921 #include <OpenIPMI/ipmi_err.h>
3922 #include <OpenIPMI/ipmi_posix.h>
3923 #include <OpenIPMI/ipmi_conn.h>
3924 ])
3926         CPPFLAGS="$SAVE_CPPFLAGS"
3927 fi
3929 if test "x$with_libopenipmipthread" = "xyes"
3930 then
3931         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
3932         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
3933         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
3934         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
3935 fi
3936 # }}}
3938 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
3939                 [with_libnotify="yes"],
3940                 [with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"])
3942 # Check for enabled/disabled features
3945 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
3946 # ------------------------------------------------------------
3947 dnl
3948 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
3949 dnl
3950 AC_DEFUN(
3951         [AC_COLLECTD],
3952         [
3953         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
3954         m4_if(
3955                 [$2],
3956                 [enable],
3957                 [dnl
3958                 m4_define([EnDis],[disabled])dnl
3959                 m4_define([YesNo],[no])dnl
3960                 ],dnl
3961                 [m4_if(
3962                         [$2],
3963                         [disable],
3964                         [dnl
3965                         m4_define([EnDis],[enabled])dnl
3966                         m4_define([YesNo],[yes])dnl
3967                         ],
3968                         [dnl
3969                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
3970                         ]dnl
3971                 )]dnl
3972         )dnl
3973         m4_if([$3], [feature], [],
3974                 [m4_if(
3975                         [$3], [module], [],
3976                         [dnl
3977                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
3978                         ]dnl
3979                 )]dnl
3980         )dnl
3981         AC_ARG_ENABLE(
3982                 [$1],
3983                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
3984                 [],
3985                 enable_$1='[YesNo]'dnl
3986         )# AC_ARG_ENABLE
3987 if test "x$enable_$1" = "xno"
3988 then
3989         collectd_$1=0
3990 else
3991         if test "x$enable_$1" = "xyes"
3992         then
3993                 collectd_$1=1
3994         else
3995                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
3996                 collectd_$1=1
3997                 enable_$1='yes'
3998         fi
3999 fi
4000         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
4001         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
4002         ]dnl
4003 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4005 # AC_PLUGIN(name, default, info)
4006 # ------------------------------------------------------------
4007 dnl
4008 AC_DEFUN(
4009   [AC_PLUGIN],
4010   [
4011     enable_plugin="no"
4012     force="no"
4013     AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
4014     [
4015      if test "x$enableval" = "xyes"
4016      then
4017              enable_plugin="yes"
4018      else if test "x$enableval" = "xforce"
4019      then
4020              enable_plugin="yes"
4021              force="yes"
4022      else
4023              enable_plugin="no (disabled on command line)"
4024      fi; fi
4025     ],
4026     [
4027          if test "x$enable_all_plugins" = "xauto"
4028          then
4029              if test "x$2" = "xyes"
4030              then
4031                      enable_plugin="yes"
4032              else
4033                      enable_plugin="no"
4034              fi
4035          else
4036              enable_plugin="$enable_all_plugins"
4037          fi
4038     ])
4039     if test "x$enable_plugin" = "xyes"
4040     then
4041             if test "x$2" = "xyes" || test "x$force" = "xyes"
4042             then
4043                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
4044                     if test "x$2" != "xyes"
4045                     then
4046                             dependency_warning="yes"
4047                     fi
4048             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
4049                     dependency_error="yes"
4050                     enable_plugin="no (dependency error)"
4051             fi
4052     fi
4053     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
4054     enable_$1="$enable_plugin"
4055   ]
4056 )# AC_PLUGIN(name, default, info)
4058 m4_divert_once([HELP_ENABLE], [
4059 collectd features:])
4060 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
4061 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
4062 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
4063 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
4065 dependency_warning="no"
4066 dependency_error="no"
4068 plugin_ascent="no"
4069 plugin_battery="no"
4070 plugin_bind="no"
4071 plugin_conntrack="no"
4072 plugin_contextswitch="no"
4073 plugin_cpu="no"
4074 plugin_cpufreq="no"
4075 plugin_curl_json="no"
4076 plugin_curl_xml="no"
4077 plugin_df="no"
4078 plugin_disk="no"
4079 plugin_entropy="no"
4080 plugin_interface="no"
4081 plugin_ipmi="no"
4082 plugin_ipvs="no"
4083 plugin_irq="no"
4084 plugin_libvirt="no"
4085 plugin_load="no"
4086 plugin_memory="no"
4087 plugin_multimeter="no"
4088 plugin_nfs="no"
4089 plugin_fscache="no"
4090 plugin_perl="no"
4091 plugin_processes="no"
4092 plugin_protocols="no"
4093 plugin_serial="no"
4094 plugin_swap="no"
4095 plugin_tape="no"
4096 plugin_tcpconns="no"
4097 plugin_ted="no"
4098 plugin_thermal="no"
4099 plugin_users="no"
4100 plugin_uptime="no"
4101 plugin_vmem="no"
4102 plugin_vserver="no"
4103 plugin_wireless="no"
4104 plugin_zfs_arc="no"
4106 # Linux
4107 if test "x$ac_system" = "xLinux"
4108 then
4109         plugin_battery="yes"
4110         plugin_conntrack="yes"
4111         plugin_contextswitch="yes"
4112         plugin_cpu="yes"
4113         plugin_cpufreq="yes"
4114         plugin_disk="yes"
4115         plugin_entropy="yes"
4116         plugin_interface="yes"
4117         plugin_irq="yes"
4118         plugin_load="yes"
4119         plugin_memory="yes"
4120         plugin_nfs="yes"
4121         plugin_fscache="yes"
4122         plugin_processes="yes"
4123         plugin_protocols="yes"
4124         plugin_serial="yes"
4125         plugin_swap="yes"
4126         plugin_tcpconns="yes"
4127         plugin_thermal="yes"
4128         plugin_uptime="yes"
4129         plugin_vmem="yes"
4130         plugin_vserver="yes"
4131         plugin_wireless="yes"
4133         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
4134         then
4135                 plugin_ipvs="yes"
4136         fi
4137 fi
4139 if test "x$ac_system" = "xOpenBSD"
4140 then
4141         plugin_tcpconns="yes"
4142 fi
4144 # Mac OS X devices
4145 if test "x$with_libiokit" = "xyes"
4146 then
4147         plugin_battery="yes"
4148         plugin_disk="yes"
4149 fi
4151 # AIX
4152 if test "x$with_perfstat" = "xyes"
4153 then
4154         plugin_cpu="yes"
4155         plugin_disk="yes"
4156         plugin_memory="yes"
4157         plugin_swap="yes"
4158         plugin_interface="yes"
4159         plugin_load="yes"
4160 fi
4162 if test "x$with_procinfo" = "xyes"
4163 then
4164         plugin_processes="yes"
4165 fi
4167 # Solaris
4168 if test "x$with_kstat" = "xyes"
4169 then
4170         plugin_uptime="yes"
4171         plugin_zfs_arc="yes"
4172 fi
4174 if test "x$with_devinfo$with_kstat" = "xyesyes"
4175 then
4176         plugin_cpu="yes"
4177         plugin_disk="yes"
4178         plugin_interface="yes"
4179         plugin_memory="yes"
4180         plugin_tape="yes"
4181 fi
4183 if test "x$have_sys_swap_h$with_kstat$ac_system" = "xyesyesSolaris"
4184 then
4185         plugin_swap="yes"
4186 fi
4188 # libstatgrab
4189 if test "x$with_libstatgrab" = "xyes"
4190 then
4191         plugin_cpu="yes"
4192         plugin_disk="yes"
4193         plugin_interface="yes"
4194         plugin_load="yes"
4195         plugin_memory="yes"
4196         plugin_swap="yes"
4197         plugin_users="yes"
4198 fi
4200 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4201 then
4202         plugin_ascent="yes"
4203         plugin_bind="yes"
4204 fi
4206 if test "x$with_libopenipmipthread" = "xyes"
4207 then
4208         plugin_ipmi="yes"
4209 fi
4211 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
4212 then
4213         plugin_curl_json="yes"
4214 fi
4216 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4217 then
4218         plugin_curl_xml="yes"
4219 fi
4221 if test "x$have_processor_info" = "xyes"
4222 then
4223         plugin_cpu="yes"
4224 fi
4225 if test "x$have_sysctl" = "xyes"
4226 then
4227         plugin_cpu="yes"
4228         plugin_memory="yes"
4229         plugin_swap="yes"
4230         plugin_uptime="yes"
4231 fi
4232 if test "x$have_sysctlbyname" = "xyes"
4233 then
4234         plugin_cpu="yes"
4235         plugin_memory="yes"
4236         plugin_tcpconns="yes"
4237 fi
4239 # Df plugin: Check if we know how to determine mount points first.
4240 #if test "x$have_listmntent" = "xyes"; then
4241 #       plugin_df="yes"
4242 #fi
4243 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
4244 then
4245         plugin_df="yes"
4246 fi
4247 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
4248 then
4249         plugin_df="yes"
4250 fi
4251 #if test "x$have_getmntent" = "xseq"
4252 #then
4253 #       plugin_df="yes"
4254 #fi
4255 if test "x$c_cv_have_one_getmntent" = "xyes"
4256 then
4257         plugin_df="yes"
4258 fi
4260 # Df plugin: Check if we have either `statfs' or `statvfs' second.
4261 if test "x$plugin_df" = "xyes"
4262 then
4263         plugin_df="no"
4264         if test "x$have_statfs" = "xyes"
4265         then
4266                 plugin_df="yes"
4267         fi
4268         if test "x$have_statvfs" = "xyes"
4269         then
4270                 plugin_df="yes"
4271         fi
4272 fi
4274 if test "x$have_getifaddrs" = "xyes"
4275 then
4276         plugin_interface="yes"
4277 fi
4279 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
4280 then
4281         plugin_libvirt="yes"
4282 fi
4284 if test "x$have_getloadavg" = "xyes"
4285 then
4286         plugin_load="yes"
4287 fi
4289 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
4290 then
4291         plugin_perl="yes"
4292 fi
4294 # Mac OS X memory interface
4295 if test "x$have_host_statistics" = "xyes"
4296 then
4297         plugin_memory="yes"
4298 fi
4300 if test "x$have_termios_h" = "xyes"
4301 then
4302         plugin_multimeter="yes"
4303         plugin_ted="yes"
4304 fi
4306 if test "x$have_thread_info" = "xyes"
4307 then
4308         plugin_processes="yes"
4309 fi
4311 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
4312 then
4313         plugin_processes="yes"
4314 fi
4316 if test "x$with_kvm_getswapinfo" = "xyes"
4317 then
4318         plugin_swap="yes"
4319 fi
4321 if test "x$have_swapctl" = "xyes"
4322 then
4323         plugin_swap="yes"
4324 fi
4326 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
4327 then
4328         plugin_tcpconns="yes"
4329 fi
4331 if test "x$have_getutent" = "xyes"
4332 then
4333         plugin_users="yes"
4334 fi
4335 if test "x$have_getutxent" = "xyes"
4336 then
4337         plugin_users="yes"
4338 fi
4340 m4_divert_once([HELP_ENABLE], [
4341 collectd plugins:])
4343 AC_ARG_ENABLE([all-plugins],
4344                 AC_HELP_STRING([--enable-all-plugins],
4345                                 [enable all plugins (auto by def)]),
4346                 [
4347                  if test "x$enableval" = "xyes"
4348                  then
4349                          enable_all_plugins="yes"
4350                  else if test "x$enableval" = "xauto"
4351                  then
4352                          enable_all_plugins="auto"
4353                  else
4354                          enable_all_plugins="no"
4355                  fi; fi
4356                 ],
4357                 [enable_all_plugins="auto"])
4359 m4_divert_once([HELP_ENABLE], [])
4361 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
4362 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
4363 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
4364 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
4365 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
4366 AC_PLUGIN([bind],        [$plugin_bind],       [ISC Bind nameserver statistics])
4367 AC_PLUGIN([conntrack],   [$plugin_conntrack],  [nf_conntrack statistics])
4368 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
4369 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
4370 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
4371 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
4372 AC_PLUGIN([curl],        [$with_libcurl],      [CURL generic web statistics])
4373 AC_PLUGIN([curl_json],   [$plugin_curl_json],    [CouchDB statistics])
4374 AC_PLUGIN([curl_xml],   [$plugin_curl_xml],    [CURL generic xml statistics])
4375 AC_PLUGIN([dbi],         [$with_libdbi],       [General database statistics])
4376 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
4377 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
4378 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
4379 AC_PLUGIN([email],       [yes],                [EMail statistics])
4380 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
4381 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
4382 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
4383 AC_PLUGIN([fscache],     [$plugin_fscache],    [fscache statistics])
4384 AC_PLUGIN([gmond],       [$with_libganglia],   [Ganglia plugin])
4385 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
4386 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
4387 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
4388 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
4389 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
4390 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
4391 AC_PLUGIN([java],        [$with_java],         [Embed the Java Virtual Machine])
4392 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
4393 AC_PLUGIN([load],        [$plugin_load],       [System load])
4394 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
4395 AC_PLUGIN([madwifi],     [$have_linux_wireless_h], [Madwifi wireless statistics])
4396 AC_PLUGIN([match_empty_counter], [yes],        [The empty counter match])
4397 AC_PLUGIN([match_hashed], [yes],               [The hashed match])
4398 AC_PLUGIN([match_regex], [yes],                [The regex match])
4399 AC_PLUGIN([match_timediff], [yes],             [The timediff match])
4400 AC_PLUGIN([match_value], [yes],                [The value match])
4401 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
4402 AC_PLUGIN([memcachec],   [$with_libmemcached], [memcachec statistics])
4403 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
4404 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
4405 AC_PLUGIN([modbus],      [$with_libmodbus],    [Modbus plugin])
4406 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
4407 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
4408 AC_PLUGIN([netapp],      [$with_libnetapp],    [NetApp plugin])
4409 AC_PLUGIN([netlink],     [$with_libnetlink],   [Enhanced Linux network statistics])
4410 AC_PLUGIN([network],     [yes],                [Network communication plugin])
4411 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
4412 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
4413 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
4414 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
4415 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
4416 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
4417 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
4418 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
4419 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
4420 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
4421 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
4422 # FIXME: Check for libevent, too.
4423 AC_PLUGIN([pinba],       [$have_protoc_c],     [Pinba statistics])
4424 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
4425 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
4426 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
4427 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
4428 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
4429 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
4430 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
4431 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
4432 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
4433 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
4434 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
4435 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
4436 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
4437 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
4438 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
4439 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
4440 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
4441 AC_PLUGIN([target_notification], [yes],        [The notification target])
4442 AC_PLUGIN([target_replace], [yes],             [The replace target])
4443 AC_PLUGIN([target_scale],[yes],                [The scale target])
4444 AC_PLUGIN([target_set],  [yes],                [The set target])
4445 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
4446 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
4447 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
4448 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
4449 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
4450 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
4451 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
4452 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
4453 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
4454 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
4455 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
4456 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
4457 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
4458 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
4459 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
4461 dnl Default configuration file
4462 # Load either syslog or logfile
4463 LOAD_PLUGIN_SYSLOG=""
4464 LOAD_PLUGIN_LOGFILE=""
4466 AC_MSG_CHECKING([which default log plugin to load])
4467 default_log_plugin="none"
4468 if test "x$enable_syslog" = "xyes"
4469 then
4470         default_log_plugin="syslog"
4471 else
4472         LOAD_PLUGIN_SYSLOG="##"
4473 fi
4475 if test "x$enable_logfile" = "xyes"
4476 then
4477         if test "x$default_log_plugin" = "xnone"
4478         then
4479                 default_log_plugin="logfile"
4480         else
4481                 LOAD_PLUGIN_LOGFILE="#"
4482         fi
4483 else
4484         LOAD_PLUGIN_LOGFILE="##"
4485 fi
4486 AC_MSG_RESULT([$default_log_plugin])
4488 AC_SUBST(LOAD_PLUGIN_SYSLOG)
4489 AC_SUBST(LOAD_PLUGIN_LOGFILE)
4491 DEFAULT_LOG_LEVEL="info"
4492 if test "x$enable_debug" = "xyes"
4493 then
4494         DEFAULT_LOG_LEVEL="debug"
4495 fi
4496 AC_SUBST(DEFAULT_LOG_LEVEL)
4498 # Load only one of rrdtool, network, csv in the default config.
4499 LOAD_PLUGIN_RRDTOOL=""
4500 LOAD_PLUGIN_NETWORK=""
4501 LOAD_PLUGIN_CSV=""
4503 AC_MSG_CHECKING([which default write plugin to load])
4504 default_write_plugin="none"
4505 if test "x$enable_rrdtool" = "xyes"
4506 then
4507         default_write_plugin="rrdtool"
4508 else
4509         LOAD_PLUGIN_RRDTOOL="##"
4510 fi
4512 if test "x$enable_network" = "xyes"
4513 then
4514         if test "x$default_write_plugin" = "xnone"
4515         then
4516                 default_write_plugin="network"
4517         else
4518                 LOAD_PLUGIN_NETWORK="#"
4519         fi
4520 else
4521         LOAD_PLUGIN_NETWORK="##"
4522 fi
4524 if test "x$enable_csv" = "xyes"
4525 then
4526         if test "x$default_write_plugin" = "xnone"
4527         then
4528                 default_write_plugin="csv"
4529         else
4530                 LOAD_PLUGIN_CSV="#"
4531         fi
4532 else
4533         LOAD_PLUGIN_CSV="##"
4534 fi
4535 AC_MSG_RESULT([$default_write_plugin])
4537 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
4538 AC_SUBST(LOAD_PLUGIN_NETWORK)
4539 AC_SUBST(LOAD_PLUGIN_CSV)
4541 dnl ip_vs.h
4542 if test "x$ac_system" = "xLinux" \
4543         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
4544 then
4545         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
4546 fi
4548 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
4549 then
4550         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
4551 fi
4553 dnl Perl bindings
4554 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
4556         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4557         then
4558                 PERL_BINDINGS_OPTIONS="$withval"
4559                 with_perl_bindings="yes"
4560         else
4561                 PERL_BINDINGS_OPTIONS=""
4562                 with_perl_bindings="$withval"
4563         fi
4564 ],
4566         PERL_BINDINGS_OPTIONS=""
4567         if test -n "$perl_interpreter"
4568         then
4569                 with_perl_bindings="yes"
4570         else
4571                 with_perl_bindings="no (no perl interpreter found)"
4572         fi
4573 ])
4574 if test "x$with_perl_bindings" = "xyes"
4575 then
4576         PERL_BINDINGS="perl"
4577 else
4578         PERL_BINDINGS=""
4579 fi
4580 AC_SUBST(PERL_BINDINGS)
4581 AC_SUBST(PERL_BINDINGS_OPTIONS)
4583 dnl libcollectdclient
4584 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
4585 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
4586 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
4588 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
4590 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
4592 AC_SUBST(LCC_VERSION_MAJOR)
4593 AC_SUBST(LCC_VERSION_MINOR)
4594 AC_SUBST(LCC_VERSION_PATCH)
4595 AC_SUBST(LCC_VERSION_EXTRA)
4596 AC_SUBST(LCC_VERSION_STRING)
4598 AC_CONFIG_FILES(src/libcollectdclient/lcc_features.h)
4600 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/owniptc/Makefile src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile)
4602 if test "x$with_librrd" = "xyes" \
4603         && test "x$librrd_threadsafe" != "xyes"
4604 then
4605         with_librrd="yes (warning: librrd is not thread-safe)"
4606 fi
4608 if test "x$with_libperl" = "xyes"
4609 then
4610         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
4611 else
4612         enable_perl="no (needs libperl)"
4613 fi
4615 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
4616 then
4617         enable_perl="no (libperl doesn't support ithreads)"
4618 fi
4620 if test "x$with_perl_bindings" = "xyes" \
4621         && test "x$PERL_BINDINGS_OPTIONS" != "x"
4622 then
4623         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
4624 fi
4626 cat <<EOF;
4628 Configuration:
4629   Libraries:
4630     libcurl . . . . . . . $with_libcurl
4631     libdbi  . . . . . . . $with_libdbi
4632     libesmtp  . . . . . . $with_libesmtp
4633     libganglia  . . . . . $with_libganglia
4634     libgcrypt . . . . . . $with_libgcrypt
4635     libiokit  . . . . . . $with_libiokit
4636     libiptc . . . . . . . $with_libiptc
4637     libjvm  . . . . . . . $with_java
4638     libkstat  . . . . . . $with_kstat
4639     libkvm  . . . . . . . $with_libkvm
4640     libmemcached  . . . . $with_libmemcached
4641     libmodbus . . . . . . $with_libmodbus
4642     libmysql  . . . . . . $with_libmysql
4643     libnetapp . . . . . . $with_libnetapp
4644     libnetlink  . . . . . $with_libnetlink
4645     libnetsnmp  . . . . . $with_libnetsnmp
4646     libnotify . . . . . . $with_libnotify
4647     liboconfig  . . . . . $with_liboconfig
4648     libopenipmi . . . . . $with_libopenipmipthread
4649     liboping  . . . . . . $with_liboping
4650     libpcap . . . . . . . $with_libpcap
4651     libperfstat . . . . . $with_perfstat
4652     libperl . . . . . . . $with_libperl
4653     libpq . . . . . . . . $with_libpq
4654     libpthread  . . . . . $with_libpthread
4655     librouteros . . . . . $with_librouteros
4656     librrd  . . . . . . . $with_librrd
4657     libsensors  . . . . . $with_libsensors
4658     libstatgrab . . . . . $with_libstatgrab
4659     libtokyotyrant  . . . $with_libtokyotyrant
4660     libupsclient  . . . . $with_libupsclient
4661     libvirt . . . . . . . $with_libvirt
4662     libxml2 . . . . . . . $with_libxml2
4663     libxmms . . . . . . . $with_libxmms
4664     libyajl . . . . . . . $with_libyajl
4665     libevent  . . . . . . $with_libevent
4666     protobuf-c  . . . . . $have_protoc_c
4667     oracle  . . . . . . . $with_oracle
4668     python  . . . . . . . $with_python
4670   Features:
4671     daemon mode . . . . . $enable_daemon
4672     debug . . . . . . . . $enable_debug
4674   Bindings:
4675     perl  . . . . . . . . $with_perl_bindings
4677   Modules:
4678     apache  . . . . . . . $enable_apache
4679     apcups  . . . . . . . $enable_apcups
4680     apple_sensors . . . . $enable_apple_sensors
4681     ascent  . . . . . . . $enable_ascent
4682     battery . . . . . . . $enable_battery
4683     bind  . . . . . . . . $enable_bind
4684     conntrack . . . . . . $enable_conntrack
4685     contextswitch . . . . $enable_contextswitch
4686     cpu . . . . . . . . . $enable_cpu
4687     cpufreq . . . . . . . $enable_cpufreq
4688     csv . . . . . . . . . $enable_csv
4689     curl  . . . . . . . . $enable_curl
4690     curl_json . . . . . . $enable_curl_json
4691     curl_xml  . . . . . . $enable_curl_xml
4692     dbi . . . . . . . . . $enable_dbi
4693     df  . . . . . . . . . $enable_df
4694     disk  . . . . . . . . $enable_disk
4695     dns . . . . . . . . . $enable_dns
4696     email . . . . . . . . $enable_email
4697     entropy . . . . . . . $enable_entropy
4698     exec  . . . . . . . . $enable_exec
4699     filecount . . . . . . $enable_filecount
4700     fscache . . . . . . . $enable_fscache
4701     gmond . . . . . . . . $enable_gmond
4702     hddtemp . . . . . . . $enable_hddtemp
4703     interface . . . . . . $enable_interface
4704     ipmi  . . . . . . . . $enable_ipmi
4705     iptables  . . . . . . $enable_iptables
4706     ipvs  . . . . . . . . $enable_ipvs
4707     irq . . . . . . . . . $enable_irq
4708     java  . . . . . . . . $enable_java
4709     libvirt . . . . . . . $enable_libvirt
4710     load  . . . . . . . . $enable_load
4711     logfile . . . . . . . $enable_logfile
4712     madwifi . . . . . . . $enable_madwifi
4713     match_empty_counter . $enable_match_empty_counter
4714     match_hashed  . . . . $enable_match_hashed
4715     match_regex . . . . . $enable_match_regex
4716     match_timediff  . . . $enable_match_timediff
4717     match_value . . . . . $enable_match_value
4718     mbmon . . . . . . . . $enable_mbmon
4719     memcachec . . . . . . $enable_memcachec
4720     memcached . . . . . . $enable_memcached
4721     memory  . . . . . . . $enable_memory
4722     modbus  . . . . . . . $enable_modbus
4723     multimeter  . . . . . $enable_multimeter
4724     mysql . . . . . . . . $enable_mysql
4725     netapp  . . . . . . . $enable_netapp
4726     netlink . . . . . . . $enable_netlink
4727     network . . . . . . . $enable_network
4728     nfs . . . . . . . . . $enable_nfs
4729     nginx . . . . . . . . $enable_nginx
4730     notify_desktop  . . . $enable_notify_desktop
4731     notify_email  . . . . $enable_notify_email
4732     ntpd  . . . . . . . . $enable_ntpd
4733     nut . . . . . . . . . $enable_nut
4734     olsrd . . . . . . . . $enable_olsrd
4735     onewire . . . . . . . $enable_onewire
4736     openvpn . . . . . . . $enable_openvpn
4737     oracle  . . . . . . . $enable_oracle
4738     perl  . . . . . . . . $enable_perl
4739     pinba . . . . . . . . $enable_pinba
4740     ping  . . . . . . . . $enable_ping
4741     postgresql  . . . . . $enable_postgresql
4742     powerdns  . . . . . . $enable_powerdns
4743     processes . . . . . . $enable_processes
4744     protocols . . . . . . $enable_protocols
4745     python  . . . . . . . $enable_python
4746     routeros  . . . . . . $enable_routeros
4747     rrdcached . . . . . . $enable_rrdcached
4748     rrdtool . . . . . . . $enable_rrdtool
4749     sensors . . . . . . . $enable_sensors
4750     serial  . . . . . . . $enable_serial
4751     snmp  . . . . . . . . $enable_snmp
4752     swap  . . . . . . . . $enable_swap
4753     syslog  . . . . . . . $enable_syslog
4754     table . . . . . . . . $enable_table
4755     tail  . . . . . . . . $enable_tail
4756     tape  . . . . . . . . $enable_tape
4757     target_notification . $enable_target_notification
4758     target_replace  . . . $enable_target_replace
4759     target_scale  . . . . $enable_target_scale
4760     target_set  . . . . . $enable_target_set
4761     tcpconns  . . . . . . $enable_tcpconns
4762     teamspeak2  . . . . . $enable_teamspeak2
4763     ted . . . . . . . . . $enable_ted
4764     thermal . . . . . . . $enable_thermal
4765     tokyotyrant . . . . . $enable_tokyotyrant
4766     unixsock  . . . . . . $enable_unixsock
4767     uptime  . . . . . . . $enable_uptime
4768     users . . . . . . . . $enable_users
4769     uuid  . . . . . . . . $enable_uuid
4770     vmem  . . . . . . . . $enable_vmem
4771     vserver . . . . . . . $enable_vserver
4772     wireless  . . . . . . $enable_wireless
4773     write_http  . . . . . $enable_write_http
4774     xmms  . . . . . . . . $enable_xmms
4775     zfs_arc . . . . . . . $enable_zfs_arc
4777 EOF
4779 if test "x$dependency_error" = "xyes"; then
4780         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
4781 fi
4783 if test "x$dependency_warning" = "xyes"; then
4784         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
4785 fi
4787 # vim: set fdm=marker :