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