Merge branch 'collectd-4.9' into collectd-4.10
[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         [
2561                 AC_DEFINE(HAVE_PCAP_H, 1, [Define to 1 if you have the <pcap.h> header file.])
2562         ], [with_libpcap="no (pcap.h not found)"])
2563 fi
2564 if test "x$with_libpcap" = "xyes"
2565 then
2566         collect_libpcap=1
2567 else
2568         collect_libpcap=0
2569 fi
2570 AC_DEFINE_UNQUOTED(COLLECT_LIBPCAP, [$collect_libpcap],
2571         [Wether or not to use the pcap library])
2572 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
2573 # }}}
2574
2575 # --with-libperl {{{
2576 perl_interpreter="perl"
2577 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
2578 [
2579         if test -x "$withval"
2580         then
2581                 perl_interpreter="$withval"
2582                 with_libperl="yes"
2583         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
2584         then
2585                 LDFLAGS="$LDFLAGS -L$withval/lib"
2586                 CPPFLAGS="$CPPFLAGS -I$withval/include"
2587                 perl_interpreter="$withval/bin/perl"
2588                 with_libperl="yes"
2589         else
2590                 with_libperl="$withval"
2591         fi; fi
2592 ],
2593 [
2594         with_libperl="yes"
2595 ])
2596
2597 AC_MSG_CHECKING([for perl])
2598 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
2599 if test -x "$perl_interpreter"
2600 then
2601         AC_MSG_RESULT([yes ($perl_interpreter)])
2602 else
2603         perl_interpreter=""
2604         AC_MSG_RESULT([no])
2605 fi
2606
2607 AC_SUBST(PERL, "$perl_interpreter")
2608
2609 if test "x$with_libperl" = "xyes" \
2610         && test -n "$perl_interpreter"
2611 then
2612   SAVE_CFLAGS="$CFLAGS"
2613   SAVE_LDFLAGS="$LDFLAGS"
2614 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
2615   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
2616   PERL_LDFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
2617   CFLAGS="$CFLAGS $PERL_CFLAGS"
2618   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2619
2620   AC_CACHE_CHECK([for libperl],
2621     [c_cv_have_libperl],
2622     AC_LINK_IFELSE(
2623       AC_LANG_PROGRAM(
2624       [[
2625 #define PERL_NO_GET_CONTEXT
2626 #include <EXTERN.h>
2627 #include <perl.h>
2628 #include <XSUB.h>
2629       ]],
2630       [[
2631        dTHX;
2632        load_module (PERL_LOADMOD_NOIMPORT,
2633                          newSVpv ("Collectd::Plugin::FooBar", 24),
2634                          Nullsv);
2635       ]]),
2636       [c_cv_have_libperl="yes"],
2637       [c_cv_have_libperl="no"]
2638     )
2639   )
2640
2641   if test "x$c_cv_have_libperl" = "xyes"
2642   then
2643           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
2644           AC_SUBST(PERL_CFLAGS)
2645           AC_SUBST(PERL_LDFLAGS)
2646   else
2647           with_libperl="no"
2648   fi
2649
2650   CFLAGS="$SAVE_CFLAGS"
2651   LDFLAGS="$SAVE_LDFLAGS"
2652 else if test -z "$perl_interpreter"; then
2653   with_libperl="no (no perl interpreter found)"
2654   c_cv_have_libperl="no"
2655 fi; fi
2656 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
2657
2658 if test "x$with_libperl" = "xyes"
2659 then
2660         SAVE_CFLAGS="$CFLAGS"
2661         SAVE_LDFLAGS="$LDFLAGS"
2662         CFLAGS="$CFLAGS $PERL_CFLAGS"
2663         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2664
2665         AC_CACHE_CHECK([if perl supports ithreads],
2666                 [c_cv_have_perl_ithreads],
2667                 AC_LINK_IFELSE(
2668                         AC_LANG_PROGRAM(
2669                         [[
2670 #include <EXTERN.h>
2671 #include <perl.h>
2672 #include <XSUB.h>
2673
2674 #if !defined(USE_ITHREADS)
2675 # error "Perl does not support ithreads!"
2676 #endif /* !defined(USE_ITHREADS) */
2677                         ]],
2678                         [[ ]]),
2679                         [c_cv_have_perl_ithreads="yes"],
2680                         [c_cv_have_perl_ithreads="no"]
2681                 )
2682         )
2683
2684         if test "x$c_cv_have_perl_ithreads" = "xyes"
2685         then
2686                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
2687         fi
2688
2689         CFLAGS="$SAVE_CFLAGS"
2690         LDFLAGS="$SAVE_LDFLAGS"
2691 fi
2692
2693 if test "x$with_libperl" = "xyes"
2694 then
2695         SAVE_CFLAGS="$CFLAGS"
2696         SAVE_LDFLAGS="$LDFLAGS"
2697         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
2698         # (see issues #41 and #42)
2699         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
2700         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2701
2702         AC_CACHE_CHECK([for broken Perl_load_module()],
2703                 [c_cv_have_broken_perl_load_module],
2704                 AC_LINK_IFELSE(
2705                         AC_LANG_PROGRAM(
2706                         [[
2707 #define PERL_NO_GET_CONTEXT
2708 #include <EXTERN.h>
2709 #include <perl.h>
2710 #include <XSUB.h>
2711                         ]],
2712                         [[
2713                          dTHX;
2714                          load_module (PERL_LOADMOD_NOIMPORT,
2715                              newSVpv ("Collectd::Plugin::FooBar", 24),
2716                              Nullsv);
2717                         ]]),
2718                         [c_cv_have_broken_perl_load_module="no"],
2719                         [c_cv_have_broken_perl_load_module="yes"]
2720                 )
2721         )
2722
2723         CFLAGS="$SAVE_CFLAGS"
2724         LDFLAGS="$SAVE_LDFLAGS"
2725 fi
2726 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
2727                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
2728
2729 if test "x$with_libperl" = "xyes"
2730 then
2731         SAVE_CFLAGS="$CFLAGS"
2732         SAVE_LDFLAGS="$LDFLAGS"
2733         CFLAGS="$CFLAGS $PERL_CFLAGS"
2734         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
2735
2736         AC_CHECK_MEMBER(
2737                 [struct mgvtbl.svt_local],
2738                 [have_struct_mgvtbl_svt_local="yes"],
2739                 [have_struct_mgvtbl_svt_local="no"],
2740                 [
2741 #include <EXTERN.h>
2742 #include <perl.h>
2743 #include <XSUB.h>
2744                 ])
2745
2746         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
2747         then
2748                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
2749                                   [Define if Perl's struct mgvtbl has member svt_local.])
2750         fi
2751
2752         CFLAGS="$SAVE_CFLAGS"
2753         LDFLAGS="$SAVE_LDFLAGS"
2754 fi
2755 # }}}
2756
2757 # --with-libpq {{{
2758 with_pg_config="pg_config"
2759 with_libpq_includedir=""
2760 with_libpq_libdir=""
2761 with_libpq_cppflags=""
2762 with_libpq_ldflags=""
2763 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
2764         [Path to libpq.])],
2765 [
2766         if test "x$withval" = "xno"
2767         then
2768                 with_libpq="no"
2769         else if test "x$withval" = "xyes"
2770         then
2771                 with_libpq="yes"
2772         else
2773                 if test -f "$withval" && test -x "$withval";
2774                 then
2775                         with_pg_config="$withval"
2776                 else if test -x "$withval/bin/pg_config"
2777                 then
2778                         with_pg_config="$withval/bin/pg_config"
2779                 fi; fi
2780                 with_libpq="yes"
2781         fi; fi
2782 ],
2783 [
2784         with_libpq="yes"
2785 ])
2786 if test "x$with_libpq" = "xyes"
2787 then
2788         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
2789         pg_config_status=$?
2790
2791         if test $pg_config_status -eq 0
2792         then
2793                 if test -n "$with_libpq_includedir"; then
2794                         for dir in $with_libpq_includedir; do
2795                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
2796                         done
2797                 fi
2798         else
2799                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
2800         fi
2801
2802         SAVE_CPPFLAGS="$CPPFLAGS"
2803         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
2804
2805         AC_CHECK_HEADERS(libpq-fe.h, [],
2806                 [with_libpq="no (libpq-fe.h not found)"], [])
2807
2808         CPPFLAGS="$SAVE_CPPFLAGS"
2809 fi
2810 if test "x$with_libpq" = "xyes"
2811 then
2812         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
2813         pg_config_status=$?
2814
2815         if test $pg_config_status -eq 0
2816         then
2817                 if test -n "$with_libpq_libdir"; then
2818                         for dir in $with_libpq_libdir; do
2819                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
2820                         done
2821                 fi
2822         else
2823                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
2824         fi
2825
2826         SAVE_LDFLAGS="$LDFLAGS"
2827         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
2828
2829         AC_CHECK_LIB(pq, PQconnectdb,
2830                 [with_libpq="yes"],
2831                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
2832
2833         AC_CHECK_LIB(pq, PQserverVersion,
2834                 [with_libpq="yes"],
2835                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
2836
2837         LDFLAGS="$SAVE_LDFLAGS"
2838 fi
2839 if test "x$with_libpq" = "xyes"
2840 then
2841         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
2842         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
2843         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
2844         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
2845 fi
2846 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
2847 # }}}
2848
2849 # --with-libpthread {{{
2850 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
2851 [       if test "x$withval" != "xno" \
2852                 && test "x$withval" != "xyes"
2853         then
2854                 LDFLAGS="$LDFLAGS -L$withval/lib"
2855                 CPPFLAGS="$CPPFLAGS -I$withval/include"
2856                 with_libpthread="yes"
2857         else
2858                 if test "x$withval" = "xno"
2859                 then
2860                         with_libpthread="no (disabled)"
2861                 fi
2862         fi
2863 ], [with_libpthread="yes"])
2864 if test "x$with_libpthread" = "xyes"
2865 then
2866         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
2867 fi
2868
2869 if test "x$with_libpthread" = "xyes"
2870 then
2871         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
2872 fi
2873 if test "x$with_libpthread" = "xyes"
2874 then
2875         collect_pthread=1
2876 else
2877         collect_pthread=0
2878 fi
2879 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
2880         [Wether or not to use pthread (POSIX threads) library])
2881 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
2882 # }}}
2883
2884 # --with-python {{{
2885 with_python_prog=""
2886 with_python_path="$PATH"
2887 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
2888 [
2889  if test "x$withval" = "xyes" || test "x$withval" = "xno"
2890  then
2891          with_python="$withval"
2892  else if test -x "$withval"
2893  then
2894          with_python_prog="$withval"
2895          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
2896          with_python="yes"
2897  else if test -d "$withval"
2898  then
2899          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
2900          with_python="yes"
2901  else
2902          AC_MSG_WARN([Argument not recognized: $withval])
2903  fi; fi; fi
2904 ], [with_python="yes"])
2905
2906 SAVE_PATH="$PATH"
2907 SAVE_CPPFLAGS="$CPPFLAGS"
2908 SAVE_LDFLAGS="$LDFLAGS"
2909 SAVE_LIBS="$LIBS"
2910
2911 PATH="$with_python_path"
2912
2913 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
2914 then
2915         AC_MSG_CHECKING([for python])
2916         with_python_prog="`which python 2>/dev/null`"
2917         if test "x$with_python_prog" = "x"
2918         then
2919                 AC_MSG_RESULT([not found])
2920                 with_python="no (interpreter not found)"
2921         else
2922                 AC_MSG_RESULT([$with_python_prog])
2923         fi
2924 fi
2925
2926 if test "x$with_python" = "xyes"
2927 then
2928         AC_MSG_CHECKING([for Python CPPFLAGS])
2929         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
2930         python_config_status=$?
2931
2932         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
2933         then
2934                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
2935                 with_python="no"
2936         else
2937                 AC_MSG_RESULT([$python_include_path])
2938         fi
2939 fi
2940
2941 if test "x$with_python" = "xyes"
2942 then
2943         CPPFLAGS="-I$python_include_path $CPPFLAGS"
2944         AC_CHECK_HEADERS(Python.h,
2945                          [with_python="yes"],
2946                          [with_python="no ('Python.h' not found)"])
2947 fi
2948
2949 if test "x$with_python" = "xyes"
2950 then
2951         AC_MSG_CHECKING([for Python LDFLAGS])
2952         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`
2953         python_config_status=$?
2954
2955         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
2956         then
2957                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
2958                 with_python="no"
2959         else
2960                 AC_MSG_RESULT([$python_library_path])
2961         fi
2962 fi
2963
2964 if test "x$with_python" = "xyes"
2965 then
2966         AC_MSG_CHECKING([for Python LIBS])
2967         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`
2968         python_config_status=$?
2969
2970         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
2971         then
2972                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
2973                 with_python="no"
2974         else
2975                 AC_MSG_RESULT([$python_library_flags])
2976         fi
2977 fi
2978
2979 if test "x$with_python" = "xyes"
2980 then
2981         LDFLAGS="-L$python_library_path $LDFLAGS"
2982         LIBS="$python_library_flags $LIBS"
2983
2984         AC_CHECK_FUNC(PyObject_CallFunction,
2985                       [with_python="yes"],
2986                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
2987 fi
2988
2989 PATH="$SAVE_PATH"
2990 CPPFLAGS="$SAVE_CPPFLAGS"
2991 LDFLAGS="$SAVE_LDFLAGS"
2992 LIBS="$SAVE_LIBS"
2993
2994 if test "x$with_python" = "xyes"
2995 then
2996         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
2997         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
2998         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
2999         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3000         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3001         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3002 fi
3003 # }}} --with-python
3004
3005 # --with-librouteros {{{
3006 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3007 [
3008  if test "x$withval" = "xyes"
3009  then
3010          with_librouteros="yes"
3011  else if test "x$withval" = "xno"
3012  then
3013          with_librouteros="no"
3014  else
3015          with_librouteros="yes"
3016          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3017          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3018  fi; fi
3019 ],
3020 [with_librouteros="yes"])
3021
3022 SAVE_CPPFLAGS="$CPPFLAGS"
3023 SAVE_LDFLAGS="$LDFLAGS"
3024
3025 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3026 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3027
3028 if test "x$with_librouteros" = "xyes"
3029 then
3030         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3031         then
3032                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3033         fi
3034         AC_CHECK_HEADERS(routeros_api.h,
3035         [with_librouteros="yes"],
3036         [with_librouteros="no ('routeros_api.h' not found)"])
3037 fi
3038 if test "x$with_librouteros" = "xyes"
3039 then
3040         if test "x$LIBROUTEROS_LDFLAGS" != "x"
3041         then
3042                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3043         fi
3044         AC_CHECK_LIB(routeros, ros_interface,
3045         [with_librouteros="yes"],
3046         [with_librouteros="no (symbol 'ros_interface' not found)"])
3047 fi
3048
3049 CPPFLAGS="$SAVE_CPPFLAGS"
3050 LDFLAGS="$SAVE_LDFLAGS"
3051
3052 if test "x$with_librouteros" = "xyes"
3053 then
3054         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3055         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3056         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3057         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3058 fi
3059 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3060 # }}}
3061
3062 # --with-librrd {{{
3063 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3064 librrd_cflags=""
3065 librrd_ldflags=""
3066 librrd_threadsafe="yes"
3067 librrd_rrdc_update="no"
3068 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3069 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
3070         then
3071                 librrd_cflags="-I$withval/include"
3072                 librrd_ldflags="-L$withval/lib"
3073                 with_librrd="yes"
3074         else
3075                 with_librrd="$withval"
3076         fi
3077 ], [with_librrd="yes"])
3078 if test "x$with_librrd" = "xyes"
3079 then
3080         SAVE_CPPFLAGS="$CPPFLAGS"
3081         SAVE_LDFLAGS="$LDFLAGS"
3082
3083         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3084         LDFLAGS="$LDFLAGS $librrd_ldflags"
3085
3086         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
3087
3088         CPPFLAGS="$SAVE_CPPFLAGS"
3089         LDFLAGS="$SAVE_LDFLAGS"
3090 fi
3091 if test "x$with_librrd" = "xyes"
3092 then
3093         SAVE_CPPFLAGS="$CPPFLAGS"
3094         SAVE_LDFLAGS="$LDFLAGS"
3095
3096         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3097         LDFLAGS="$LDFLAGS $librrd_ldflags"
3098
3099         AC_CHECK_LIB(rrd_th, rrd_update_r,
3100         [with_librrd="yes"
3101          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3102         ],
3103         [librrd_threadsafe="no"
3104          AC_CHECK_LIB(rrd, rrd_update,
3105          [with_librrd="yes"
3106           librrd_ldflags="$librrd_ldflags -lrrd -lm"
3107          ],
3108          [with_librrd="no (symbol 'rrd_update' not found)"],
3109          [-lm])
3110         ],
3111         [-lm])
3112
3113         if test "x$librrd_threadsafe" = "xyes"
3114         then
3115                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3116         else
3117                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3118         fi
3119
3120         CPPFLAGS="$SAVE_CPPFLAGS"
3121         LDFLAGS="$SAVE_LDFLAGS"
3122 fi
3123 if test "x$with_librrd" = "xyes"
3124 then
3125         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3126         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3127         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3128         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3129 fi
3130 if test "x$librrd_threadsafe" = "xyes"
3131 then
3132         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
3133 fi
3134 # }}}
3135
3136 # --with-libsensors {{{
3137 with_sensors_cflags=""
3138 with_sensors_ldflags=""
3139 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
3140 [
3141         if test "x$withval" = "xno"
3142         then
3143                 with_libsensors="no"
3144         else
3145                 with_libsensors="yes"
3146                 if test "x$withval" != "xyes"
3147                 then
3148                         with_sensors_cflags="-I$withval/include"
3149                         with_sensors_ldflags="-L$withval/lib"
3150                         with_libsensors="yes"
3151                 fi
3152         fi
3153 ],
3154 [
3155         if test "x$ac_system" = "xLinux"
3156         then
3157                 with_libsensors="yes"
3158         else
3159                 with_libsensors="no (Linux only library)"
3160         fi
3161 ])
3162 if test "x$with_libsensors" = "xyes"
3163 then
3164         SAVE_CPPFLAGS="$CPPFLAGS"
3165         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3166
3167 #       AC_CHECK_HEADERS(sensors/sensors.h,
3168 #       [
3169 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3170 #       ],
3171 #       [with_libsensors="no (sensors/sensors.h not found)"])
3172         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3173
3174         CPPFLAGS="$SAVE_CPPFLAGS"
3175 fi
3176 if test "x$with_libsensors" = "xyes"
3177 then
3178         SAVE_CPPFLAGS="$CPPFLAGS"
3179         SAVE_LDFLAGS="$LDFLAGS"
3180         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3181         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3182
3183         AC_CHECK_LIB(sensors, sensors_init,
3184         [
3185                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
3186         ],
3187         [with_libsensors="no (libsensors not found)"])
3188
3189         CPPFLAGS="$SAVE_CPPFLAGS"
3190         LDFLAGS="$SAVE_LDFLAGS"
3191 fi
3192 if test "x$with_libsensors" = "xyes"
3193 then
3194         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3195         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3196         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3197         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
3198 fi
3199 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
3200 # }}}
3201
3202 # --with-libstatgrab {{{
3203 with_libstatgrab_cflags=""
3204 with_libstatgrab_ldflags=""
3205 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
3206 [
3207  if test "x$withval" != "xno" \
3208    && test "x$withval" != "xyes"
3209  then
3210    with_libstatgrab_cflags="-I$withval/include"
3211    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3212    with_libstatgrab="yes"
3213    with_libstatgrab_pkg_config="no"
3214  else
3215    with_libstatgrab="$withval"
3216    with_libstatgrab_pkg_config="yes"
3217  fi
3218  ],
3219 [
3220  with_libstatgrab="yes"
3221  with_libstatgrab_pkg_config="yes"
3222 ])
3223
3224 if test "x$with_libstatgrab" = "xyes" \
3225   && test "x$with_libstatgrab_pkg_config" = "xyes"
3226 then
3227   if test "x$PKG_CONFIG" != "x"
3228   then
3229     AC_MSG_CHECKING([pkg-config for libstatgrab])
3230     temp_result="found"
3231     $PKG_CONFIG --exists libstatgrab 2>/dev/null
3232     if test "$?" != "0"
3233     then
3234       with_libstatgrab_pkg_config="no"
3235       with_libstatgrab="no ($PKG_CONFIG doesn't know libstatgrab)"
3236       temp_result="not found"
3237     fi
3238     AC_MSG_RESULT([$temp_result])
3239   else
3240     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
3241     with_libstatgrab_pkg_config="no"
3242     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
3243   fi
3244 fi
3245
3246 if test "x$with_libstatgrab" = "xyes" \
3247   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3248   && test "x$with_libstatgrab_cflags" = "x"
3249 then
3250   AC_MSG_CHECKING([for libstatgrab CFLAGS])
3251   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
3252   if test "$?" = "0"
3253   then
3254     with_libstatgrab_cflags="$temp_result"
3255   else
3256     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
3257     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
3258   fi
3259   AC_MSG_RESULT([$temp_result])
3260 fi
3261
3262 if test "x$with_libstatgrab" = "xyes" \
3263   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3264   && test "x$with_libstatgrab_ldflags" = "x"
3265 then
3266   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
3267   temp_result="`$PKG_CONFIG --libs libstatgrab`"
3268   if test "$?" = "0"
3269   then
3270     with_libstatgrab_ldflags="$temp_result"
3271   else
3272     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
3273     temp_result="$PKG_CONFIG --libs libstatgrab failed"
3274   fi
3275   AC_MSG_RESULT([$temp_result])
3276 fi
3277
3278 if test "x$with_libstatgrab" = "xyes"
3279 then
3280   SAVE_CPPFLAGS="$CPPFLAGS"
3281   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
3282
3283   AC_CHECK_HEADERS(statgrab.h,
3284                    [with_libstatgrab="yes"],
3285                    [with_libstatgrab="no (statgrab.h not found)"])
3286
3287   CPPFLAGS="$SAVE_CPPFLAGS"
3288 fi
3289
3290 if test "x$with_libstatgrab" = "xyes"
3291 then
3292   SAVE_CFLAGS="$CFLAGS"
3293   SAVE_LDFLAGS="$LDFLAGS"
3294
3295   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
3296   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
3297
3298   AC_CHECK_LIB(statgrab, sg_init,
3299                [with_libstatgrab="yes"],
3300                [with_libstatgrab="no (symbol sg_init not found)"])
3301
3302   CFLAGS="$SAVE_CFLAGS"
3303   LDFLAGS="$SAVE_LDFLAGS"
3304 fi
3305
3306 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
3307 if test "x$with_libstatgrab" = "xyes"
3308 then
3309   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
3310   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
3311   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
3312   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
3313   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
3314 fi
3315 # }}}
3316
3317 # --with-libtokyotyrant {{{
3318 with_libtokyotyrant_cppflags=""
3319 with_libtokyotyrant_ldflags=""
3320 with_libtokyotyrant_libs=""
3321 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
3322 [
3323   if test "x$withval" = "xno"
3324   then
3325     with_libtokyotyrant="no"
3326   else if test "x$withval" = "xyes"
3327   then
3328     with_libtokyotyrant="yes"
3329   else
3330     with_libtokyotyrant_cppflags="-I$withval/include"
3331     with_libtokyotyrant_ldflags="-L$withval/include"
3332     with_libtokyotyrant_libs="-ltokyotyrant"
3333     with_libtokyotyrant="yes"
3334   fi; fi
3335 ],
3336 [
3337   with_libtokyotyrant="yes"
3338 ])
3339
3340 if test "x$with_libtokyotyrant" = "xyes"
3341 then
3342   if $PKG_CONFIG --exists tokyotyrant
3343   then
3344     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
3345     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `pkg-config --libs-only-L tokyotyrant`"
3346     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `pkg-config --libs-only-l tokyotyrant`"
3347   fi
3348 fi
3349
3350 SAVE_CPPFLAGS="$CPPFLAGS"
3351 SAVE_LDFLAGS="$LDFLAGS"
3352 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
3353 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
3354
3355 if test "x$with_libtokyotyrant" = "xyes"
3356 then
3357   AC_CHECK_HEADERS(tcrdb.h,
3358   [
3359           AC_DEFINE(HAVE_TCRDB_H, 1,
3360                     [Define to 1 if you have the <tcrdb.h> header file.])
3361   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
3362 fi
3363
3364 if test "x$with_libtokyotyrant" = "xyes"
3365 then
3366   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
3367   [
3368           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
3369                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
3370   ],
3371   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
3372   [$with_libtokyotyrant_libs])
3373 fi
3374
3375 CPPFLAGS="$SAVE_CPPFLAGS"
3376 LDFLAGS="$SAVE_LDFLAGS"
3377
3378 if test "x$with_libtokyotyrant" = "xyes"
3379 then 
3380   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
3381   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
3382   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
3383   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
3384   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
3385   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
3386 fi
3387 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
3388 # }}}
3389
3390 # --with-libupsclient {{{
3391 with_libupsclient_config=""
3392 with_libupsclient_cflags=""
3393 with_libupsclient_libs=""
3394 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
3395 [
3396         if test "x$withval" = "xno"
3397         then
3398                 with_libupsclient="no"
3399         else if test "x$withval" = "xyes"
3400         then
3401                 with_libupsclient="use_pkgconfig"
3402         else
3403                 if test -x "$withval"
3404                 then
3405                         with_libupsclient_config="$withval"
3406                         with_libupsclient="use_libupsclient_config"
3407                 else if test -x "$withval/bin/libupsclient-config"
3408                 then
3409                         with_libupsclient_config="$withval/bin/libupsclient-config"
3410                         with_libupsclient="use_libupsclient_config"
3411                 else
3412                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
3413                         with_libupsclient_cflags="-I$withval/include"
3414                         with_libupsclient_libs="-L$withval/lib -lupsclient"
3415                         with_libupsclient="yes"
3416                 fi; fi
3417         fi; fi
3418 ],
3419 [with_libupsclient="use_pkgconfig"])
3420
3421 # configure using libupsclient-config
3422 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3423 then
3424         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
3425         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
3426         if test $? -ne 0
3427         then
3428                 with_libupsclient="no ($with_libupsclient_config failed)"
3429         fi
3430         with_libupsclient_libs="`$with_libupsclient_config --libs`"
3431         if test $? -ne 0
3432         then
3433                 with_libupsclient="no ($with_libupsclient_config failed)"
3434         fi
3435 fi
3436 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3437 then
3438         with_libupsclient="yes"
3439 fi
3440
3441 # configure using pkg-config
3442 if test "x$with_libupsclient" = "xuse_pkgconfig"
3443 then
3444         if test "x$PKG_CONFIG" = "x"
3445         then
3446                 with_libupsclient="no (Don't have pkg-config)"
3447         fi
3448 fi
3449 if test "x$with_libupsclient" = "xuse_pkgconfig"
3450 then
3451         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
3452         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
3453         if test $? -ne 0
3454         then
3455                 with_libupsclient="no (pkg-config doesn't know library)"
3456         fi
3457 fi
3458 if test "x$with_libupsclient" = "xuse_pkgconfig"
3459 then
3460         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
3461         if test $? -ne 0
3462         then
3463                 with_libupsclient="no ($PKG_CONFIG failed)"
3464         fi
3465         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
3466         if test $? -ne 0
3467         then
3468                 with_libupsclient="no ($PKG_CONFIG failed)"
3469         fi
3470 fi
3471 if test "x$with_libupsclient" = "xuse_pkgconfig"
3472 then
3473         with_libupsclient="yes"
3474 fi
3475
3476 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
3477 # the actual checks.
3478 if test "x$with_libupsclient" = "xyes"
3479 then
3480         SAVE_CPPFLAGS="$CPPFLAGS"
3481         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3482
3483         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
3484
3485         CPPFLAGS="$SAVE_CPPFLAGS"
3486 fi
3487 if test "x$with_libupsclient" = "xyes"
3488 then
3489         SAVE_CPPFLAGS="$CPPFLAGS"
3490         SAVE_LDFLAGS="$LDFLAGS"
3491
3492         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3493         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
3494
3495         AC_CHECK_LIB(upsclient, upscli_connect,
3496                      [with_libupsclient="yes"],
3497                      [with_libupsclient="no (symbol upscli_connect not found)"])
3498
3499         CPPFLAGS="$SAVE_CPPFLAGS"
3500         LDFLAGS="$SAVE_LDFLAGS"
3501 fi
3502 if test "x$with_libupsclient" = "xyes"
3503 then
3504         SAVE_CPPFLAGS="$CPPFLAGS"
3505         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3506
3507         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
3508 [#include <stdlib.h>
3509 #include <stdio.h>
3510 #include <upsclient.h>])
3511
3512         CPPFLAGS="$SAVE_CPPFLAGS"
3513 fi
3514 if test "x$with_libupsclient" = "xyes"
3515 then
3516         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
3517         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
3518         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
3519         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
3520 fi
3521 # }}}
3522
3523 # --with-libxmms {{{
3524 with_xmms_config="xmms-config"
3525 with_xmms_cflags=""
3526 with_xmms_libs=""
3527 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
3528 [
3529         if test "x$withval" != "xno" \
3530                 && test "x$withval" != "xyes"
3531         then
3532                 if test -f "$withval" && test -x "$withval";
3533                 then
3534                         with_xmms_config="$withval"
3535                 else if test -x "$withval/bin/xmms-config"
3536                 then
3537                         with_xmms_config="$withval/bin/xmms-config"
3538                 fi; fi
3539                 with_libxmms="yes"
3540         else if test "x$withval" = "xno"
3541         then
3542                 with_libxmms="no"
3543         else
3544                 with_libxmms="yes"
3545         fi; fi
3546 ],
3547 [
3548         with_libxmms="yes"
3549 ])
3550 if test "x$with_libxmms" = "xyes"
3551 then
3552         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
3553         xmms_config_status=$?
3554
3555         if test $xmms_config_status -ne 0
3556         then
3557                 with_libxmms="no"
3558         fi
3559 fi
3560 if test "x$with_libxmms" = "xyes"
3561 then
3562         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
3563         xmms_config_status=$?
3564
3565         if test $xmms_config_status -ne 0
3566         then
3567                 with_libxmms="no"
3568         fi
3569 fi
3570 if test "x$with_libxmms" = "xyes"
3571 then
3572         AC_CHECK_LIB(xmms, xmms_remote_get_info,
3573         [
3574                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
3575                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
3576                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
3577                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
3578         ],
3579         [
3580                 with_libxmms="no"
3581         ],
3582         [$with_xmms_libs])
3583 fi
3584 with_libxmms_numeric=0
3585 if test "x$with_libxmms" = "xyes"
3586 then
3587         with_libxmms_numeric=1
3588 fi
3589 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
3590 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
3591 # }}}
3592
3593 # --with-libyajl {{{
3594 with_libyajl_cppflags=""
3595 with_libyajl_ldflags=""
3596 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
3597 [
3598         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3599         then
3600                 with_libyajl_cppflags="-I$withval/include"
3601                 with_libyajl_ldflags="-L$withval/lib"
3602                 with_libyajl="yes"
3603         else
3604                 with_libyajl="$withval"
3605         fi
3606 ],
3607 [
3608         with_libyajl="yes"
3609 ])
3610 if test "x$with_libyajl" = "xyes"
3611 then
3612         SAVE_CPPFLAGS="$CPPFLAGS"
3613         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
3614
3615         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
3616
3617         CPPFLAGS="$SAVE_CPPFLAGS"
3618 fi
3619 if test "x$with_libyajl" = "xyes"
3620 then
3621         SAVE_CPPFLAGS="$CPPFLAGS"
3622         SAVE_LDFLAGS="$LDFLAGS"
3623         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
3624         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
3625
3626         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
3627
3628         CPPFLAGS="$SAVE_CPPFLAGS"
3629         LDFLAGS="$SAVE_LDFLAGS"
3630 fi
3631 if test "x$with_libyajl" = "xyes"
3632 then
3633         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
3634         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
3635         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
3636         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
3637         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
3638         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
3639         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
3640 fi
3641 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
3642 # }}}
3643
3644 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
3645 with_libxml2="no (pkg-config isn't available)"
3646 with_libxml2_cflags=""
3647 with_libxml2_ldflags=""
3648 with_libvirt="no (pkg-config isn't available)"
3649 with_libvirt_cflags=""
3650 with_libvirt_ldflags=""
3651 if test "x$PKG_CONFIG" != "x"
3652 then
3653         pkg-config --exists 'libxml-2.0' 2>/dev/null
3654         if test "$?" = "0"
3655         then
3656                 with_libxml2="yes"
3657         else
3658                 with_libxml2="no (pkg-config doesn't know library)"
3659         fi
3660
3661         pkg-config --exists libvirt 2>/dev/null
3662         if test "$?" = "0"
3663         then
3664                 with_libvirt="yes"
3665         else
3666                 with_libvirt="no (pkg-config doesn't know library)"
3667         fi
3668 fi
3669 if test "x$with_libxml2" = "xyes"
3670 then
3671         with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
3672         if test $? -ne 0
3673         then
3674                 with_libxml2="no"
3675         fi
3676         with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
3677         if test $? -ne 0
3678         then
3679                 with_libxml2="no"
3680         fi
3681 fi
3682 if test "x$with_libxml2" = "xyes"
3683 then
3684         SAVE_CPPFLAGS="$CPPFLAGS"
3685         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
3686
3687         AC_CHECK_HEADERS(libxml/parser.h, [],
3688                       [with_libxml2="no (libxml/parser.h not found)"])
3689
3690         CPPFLAGS="$SAVE_CPPFLAGS"
3691 fi
3692 if test "x$with_libxml2" = "xyes"
3693 then
3694         SAVE_CFLAGS="$CFLAGS"
3695         SAVE_LDFLAGS="$LDFLAGS"
3696
3697         CFLAGS="$CFLAGS $with_libxml2_cflags"
3698         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
3699
3700         AC_CHECK_LIB(xml2, xmlXPathEval,
3701                      [with_libxml2="yes"],
3702                      [with_libxml2="no (symbol xmlXPathEval not found)"])
3703
3704         CFLAGS="$SAVE_CFLAGS"
3705         LDFLAGS="$SAVE_LDFLAGS"
3706 fi
3707 dnl Add the right compiler flags and libraries.
3708 if test "x$with_libxml2" = "xyes"; then
3709         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
3710         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
3711         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
3712         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
3713 fi
3714 if test "x$with_libvirt" = "xyes"
3715 then
3716         with_libvirt_cflags="`pkg-config --cflags libvirt`"
3717         if test $? -ne 0
3718         then
3719                 with_libvirt="no"
3720         fi
3721         with_libvirt_ldflags="`pkg-config --libs libvirt`"
3722         if test $? -ne 0
3723         then
3724                 with_libvirt="no"
3725         fi
3726 fi
3727 if test "x$with_libvirt" = "xyes"
3728 then
3729         SAVE_CPPFLAGS="$CPPFLAGS"
3730         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
3731
3732         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
3733                       [with_libvirt="no (libvirt/libvirt.h not found)"])
3734
3735         CPPFLAGS="$SAVE_CPPFLAGS"
3736 fi
3737 if test "x$with_libvirt" = "xyes"
3738 then
3739         SAVE_CFLAGS="$CFLAGS"
3740         SAVE_LDFLAGS="$LDFLAGS"
3741
3742         CFLAGS="$CFLAGS $with_libvirt_cflags"
3743         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
3744
3745         AC_CHECK_LIB(virt, virDomainBlockStats,
3746                      [with_libvirt="yes"],
3747                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
3748
3749         CFLAGS="$SAVE_CFLAGS"
3750         LDFLAGS="$SAVE_LDFLAGS"
3751 fi
3752 dnl Add the right compiler flags and libraries.
3753 if test "x$with_libvirt" = "xyes"; then
3754         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
3755         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
3756         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
3757         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
3758 fi
3759 # }}}
3760
3761 # $PKG_CONFIG --exists OpenIPMIpthread {{{
3762 with_libopenipmipthread="yes"
3763 with_libopenipmipthread_cflags=""
3764 with_libopenipmipthread_libs=""
3765
3766 AC_MSG_CHECKING([for pkg-config])
3767 temp_result="no"
3768 if test "x$PKG_CONFIG" = "x"
3769 then
3770         with_libopenipmipthread="no"
3771         temp_result="no"
3772 else
3773         temp_result="$PKG_CONFIG"
3774 fi
3775 AC_MSG_RESULT([$temp_result])
3776
3777 if test "x$with_libopenipmipthread" = "xyes"
3778 then
3779         AC_MSG_CHECKING([for libOpenIPMIpthread])
3780         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
3781         if test "$?" != "0"
3782         then
3783                 with_libopenipmipthread="no ($PKG_CONFIG doesn't know OpenIPMIpthread)"
3784         fi
3785         AC_MSG_RESULT([$with_libopenipmipthread])
3786 fi
3787
3788 if test "x$with_libopenipmipthread" = "xyes"
3789 then
3790         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
3791         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
3792         if test "$?" = "0"
3793         then
3794                 with_libopenipmipthread_cflags="$temp_result"
3795         else
3796                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
3797                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
3798         fi
3799         AC_MSG_RESULT([$temp_result])
3800 fi
3801
3802 if test "x$with_libopenipmipthread" = "xyes"
3803 then
3804         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
3805         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
3806         if test "$?" = "0"
3807         then
3808                 with_libopenipmipthread_ldflags="$temp_result"
3809         else
3810                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
3811                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
3812         fi
3813         AC_MSG_RESULT([$temp_result])
3814 fi
3815
3816 if test "x$with_libopenipmipthread" = "xyes"
3817 then
3818         SAVE_CPPFLAGS="$CPPFLAGS"
3819         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
3820
3821         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
3822                          [with_libopenipmipthread="yes"],
3823                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
3824 [#include <OpenIPMI/ipmiif.h>
3825 #include <OpenIPMI/ipmi_err.h>
3826 #include <OpenIPMI/ipmi_posix.h>
3827 #include <OpenIPMI/ipmi_conn.h>
3828 ])
3829
3830         CPPFLAGS="$SAVE_CPPFLAGS"
3831 fi
3832
3833 if test "x$with_libopenipmipthread" = "xyes"
3834 then
3835         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
3836         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
3837         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
3838         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
3839 fi
3840 # }}}
3841
3842 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
3843                 [with_libnotify="yes"],
3844                 [with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"])
3845
3846 # Check for enabled/disabled features
3847 #
3848
3849 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
3850 # ------------------------------------------------------------
3851 dnl
3852 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
3853 dnl
3854 AC_DEFUN(
3855         [AC_COLLECTD],
3856         [
3857         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
3858         m4_if(
3859                 [$2],
3860                 [enable],
3861                 [dnl
3862                 m4_define([EnDis],[disabled])dnl
3863                 m4_define([YesNo],[no])dnl
3864                 ],dnl
3865                 [m4_if(
3866                         [$2],
3867                         [disable],
3868                         [dnl
3869                         m4_define([EnDis],[enabled])dnl
3870                         m4_define([YesNo],[yes])dnl
3871                         ],
3872                         [dnl
3873                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
3874                         ]dnl
3875                 )]dnl
3876         )dnl
3877         m4_if([$3], [feature], [],
3878                 [m4_if(
3879                         [$3], [module], [],
3880                         [dnl
3881                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
3882                         ]dnl
3883                 )]dnl
3884         )dnl
3885         AC_ARG_ENABLE(
3886                 [$1],
3887                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
3888                 [],
3889                 enable_$1='[YesNo]'dnl
3890         )# AC_ARG_ENABLE
3891 if test "x$enable_$1" = "xno"
3892 then
3893         collectd_$1=0
3894 else
3895         if test "x$enable_$1" = "xyes"
3896         then
3897                 collectd_$1=1
3898         else
3899                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
3900                 collectd_$1=1
3901                 enable_$1='yes'
3902         fi
3903 fi
3904         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
3905         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
3906         ]dnl
3907 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
3908
3909 # AC_PLUGIN(name, default, info)
3910 # ------------------------------------------------------------
3911 dnl
3912 AC_DEFUN(
3913   [AC_PLUGIN],
3914   [
3915     enable_plugin="no"
3916     force="no"
3917     AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
3918     [
3919      if test "x$enableval" = "xyes"
3920      then
3921              enable_plugin="yes"
3922      else if test "x$enableval" = "xforce"
3923      then
3924              enable_plugin="yes"
3925              force="yes"
3926      else
3927              enable_plugin="no (disabled on command line)"
3928      fi; fi
3929     ],
3930     [
3931          if test "x$enable_all_plugins" = "xauto"
3932          then
3933              if test "x$2" = "xyes"
3934              then
3935                      enable_plugin="yes"
3936              else
3937                      enable_plugin="no"
3938              fi
3939          else
3940              enable_plugin="$enable_all_plugins"
3941          fi
3942     ])
3943     if test "x$enable_plugin" = "xyes"
3944     then
3945             if test "x$2" = "xyes" || test "x$force" = "xyes"
3946             then
3947                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
3948                     if test "x$2" != "xyes"
3949                     then
3950                             dependency_warning="yes"
3951                     fi
3952             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
3953                     dependency_error="yes"
3954                     enable_plugin="no (dependency error)"
3955             fi
3956     fi
3957     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
3958     enable_$1="$enable_plugin"
3959   ]
3960 )# AC_PLUGIN(name, default, info)
3961
3962 m4_divert_once([HELP_ENABLE], [
3963 collectd features:])
3964 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
3965 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
3966 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
3967 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
3968
3969 dependency_warning="no"
3970 dependency_error="no"
3971
3972 plugin_ascent="no"
3973 plugin_battery="no"
3974 plugin_bind="no"
3975 plugin_conntrack="no"
3976 plugin_contextswitch="no"
3977 plugin_cpu="no"
3978 plugin_cpufreq="no"
3979 plugin_curl_json="no"
3980 plugin_curl_xml="no"
3981 plugin_df="no"
3982 plugin_disk="no"
3983 plugin_entropy="no"
3984 plugin_interface="no"
3985 plugin_ipmi="no"
3986 plugin_ipvs="no"
3987 plugin_irq="no"
3988 plugin_libvirt="no"
3989 plugin_load="no"
3990 plugin_memory="no"
3991 plugin_multimeter="no"
3992 plugin_nfs="no"
3993 plugin_fscache="no"
3994 plugin_perl="no"
3995 plugin_processes="no"
3996 plugin_protocols="no"
3997 plugin_serial="no"
3998 plugin_swap="no"
3999 plugin_tape="no"
4000 plugin_tcpconns="no"
4001 plugin_ted="no"
4002 plugin_thermal="no"
4003 plugin_users="no"
4004 plugin_uptime="no"
4005 plugin_vmem="no"
4006 plugin_vserver="no"
4007 plugin_wireless="no"
4008 plugin_zfs_arc="no"
4009
4010 # Linux
4011 if test "x$ac_system" = "xLinux"
4012 then
4013         plugin_battery="yes"
4014         plugin_conntrack="yes"
4015         plugin_contextswitch="yes"
4016         plugin_cpu="yes"
4017         plugin_cpufreq="yes"
4018         plugin_disk="yes"
4019         plugin_entropy="yes"
4020         plugin_interface="yes"
4021         plugin_irq="yes"
4022         plugin_load="yes"
4023         plugin_memory="yes"
4024         plugin_nfs="yes"
4025         plugin_fscache="yes"
4026         plugin_processes="yes"
4027         plugin_protocols="yes"
4028         plugin_serial="yes"
4029         plugin_swap="yes"
4030         plugin_tcpconns="yes"
4031         plugin_thermal="yes"
4032         plugin_uptime="yes"
4033         plugin_vmem="yes"
4034         plugin_vserver="yes"
4035         plugin_wireless="yes"
4036
4037         if test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
4038         then
4039                 plugin_ipvs="yes"
4040         fi
4041 fi
4042
4043 if test "x$ac_system" = "xOpenBSD"
4044 then
4045         plugin_tcpconns="yes"
4046 fi
4047
4048 # Mac OS X devices
4049 if test "x$with_libiokit" = "xyes"
4050 then
4051         plugin_battery="yes"
4052         plugin_disk="yes"
4053 fi
4054
4055 # AIX
4056 if test "x$with_perfstat" = "xyes"
4057 then
4058         plugin_cpu="yes"
4059         plugin_disk="yes"
4060         plugin_memory="yes"
4061         plugin_swap="yes"
4062         plugin_interface="yes"
4063         plugin_load="yes"
4064 fi
4065
4066 if test "x$with_procinfo" = "xyes"
4067 then
4068         plugin_processes="yes"
4069 fi
4070
4071 # Solaris
4072 if test "x$with_kstat" = "xyes"
4073 then
4074         plugin_uptime="yes"
4075         plugin_zfs_arc="yes"
4076 fi
4077
4078 if test "x$with_devinfo$with_kstat" = "xyesyes"
4079 then
4080         plugin_cpu="yes"
4081         plugin_disk="yes"
4082         plugin_interface="yes"
4083         plugin_memory="yes"
4084         plugin_tape="yes"
4085 fi
4086
4087 if test "x$have_sys_swap_h$with_kstat$ac_system" = "xyesyesSolaris"
4088 then
4089         plugin_swap="yes"
4090 fi
4091
4092 # libstatgrab
4093 if test "x$with_libstatgrab" = "xyes"
4094 then
4095         plugin_cpu="yes"
4096         plugin_disk="yes"
4097         plugin_interface="yes"
4098         plugin_load="yes"
4099         plugin_memory="yes"
4100         plugin_swap="yes"
4101         plugin_users="yes"
4102 fi
4103
4104 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4105 then
4106         plugin_ascent="yes"
4107         plugin_bind="yes"
4108 fi
4109
4110 if test "x$with_libopenipmipthread" = "xyes"
4111 then
4112         plugin_ipmi="yes"
4113 fi
4114
4115 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
4116 then
4117         plugin_curl_json="yes"
4118 fi
4119
4120 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4121 then
4122         plugin_curl_xml="yes"
4123 fi
4124
4125 if test "x$have_processor_info" = "xyes"
4126 then
4127         plugin_cpu="yes"
4128 fi
4129 if test "x$have_sysctl" = "xyes"
4130 then
4131         plugin_cpu="yes"
4132         plugin_memory="yes"
4133         plugin_swap="yes"
4134         plugin_uptime="yes"
4135 fi
4136 if test "x$have_sysctlbyname" = "xyes"
4137 then
4138         plugin_cpu="yes"
4139         plugin_memory="yes"
4140         plugin_tcpconns="yes"
4141 fi
4142
4143 # Df plugin: Check if we know how to determine mount points first.
4144 #if test "x$have_listmntent" = "xyes"; then
4145 #       plugin_df="yes"
4146 #fi
4147 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
4148 then
4149         plugin_df="yes"
4150 fi
4151 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
4152 then
4153         plugin_df="yes"
4154 fi
4155 #if test "x$have_getmntent" = "xseq"
4156 #then
4157 #       plugin_df="yes"
4158 #fi
4159 if test "x$c_cv_have_one_getmntent" = "xyes"
4160 then
4161         plugin_df="yes"
4162 fi
4163
4164 # Df plugin: Check if we have either `statfs' or `statvfs' second.
4165 if test "x$plugin_df" = "xyes"
4166 then
4167         plugin_df="no"
4168         if test "x$have_statfs" = "xyes"
4169         then
4170                 plugin_df="yes"
4171         fi
4172         if test "x$have_statvfs" = "xyes"
4173         then
4174                 plugin_df="yes"
4175         fi
4176 fi
4177
4178 if test "x$have_getifaddrs" = "xyes"
4179 then
4180         plugin_interface="yes"
4181 fi
4182
4183 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
4184 then
4185         plugin_libvirt="yes"
4186 fi
4187
4188 if test "x$have_getloadavg" = "xyes"
4189 then
4190         plugin_load="yes"
4191 fi
4192
4193 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
4194 then
4195         plugin_perl="yes"
4196 fi
4197
4198 # Mac OS X memory interface
4199 if test "x$have_host_statistics" = "xyes"
4200 then
4201         plugin_memory="yes"
4202 fi
4203
4204 if test "x$have_termios_h" = "xyes"
4205 then
4206         plugin_multimeter="yes"
4207         plugin_ted="yes"
4208 fi
4209
4210 if test "x$have_thread_info" = "xyes"
4211 then
4212         plugin_processes="yes"
4213 fi
4214
4215 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
4216 then
4217         plugin_processes="yes"
4218 fi
4219
4220 if test "x$with_kvm_getswapinfo" = "xyes"
4221 then
4222         plugin_swap="yes"
4223 fi
4224
4225 if test "x$have_swapctl" = "xyes"
4226 then
4227         plugin_swap="yes"
4228 fi
4229
4230 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
4231 then
4232         plugin_tcpconns="yes"
4233 fi
4234
4235 if test "x$have_getutent" = "xyes"
4236 then
4237         plugin_users="yes"
4238 fi
4239 if test "x$have_getutxent" = "xyes"
4240 then
4241         plugin_users="yes"
4242 fi
4243
4244 m4_divert_once([HELP_ENABLE], [
4245 collectd plugins:])
4246
4247 AC_ARG_ENABLE([all-plugins],
4248                 AC_HELP_STRING([--enable-all-plugins],
4249                                 [enable all plugins (auto by def)]),
4250                 [
4251                  if test "x$enableval" = "xyes"
4252                  then
4253                          enable_all_plugins="yes"
4254                  else if test "x$enableval" = "xauto"
4255                  then
4256                          enable_all_plugins="auto"
4257                  else
4258                          enable_all_plugins="no"
4259                  fi; fi
4260                 ],
4261                 [enable_all_plugins="auto"])
4262
4263 m4_divert_once([HELP_ENABLE], [])
4264
4265 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
4266 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
4267 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
4268 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
4269 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
4270 AC_PLUGIN([bind],        [$plugin_bind],       [ISC Bind nameserver statistics])
4271 AC_PLUGIN([conntrack],   [$plugin_conntrack],  [nf_conntrack statistics])
4272 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
4273 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
4274 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
4275 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
4276 AC_PLUGIN([curl],        [$with_libcurl],      [CURL generic web statistics])
4277 AC_PLUGIN([curl_json],   [$plugin_curl_json],    [CouchDB statistics])
4278 AC_PLUGIN([curl_xml],   [$plugin_curl_xml],    [CURL generic xml statistics])
4279 AC_PLUGIN([dbi],         [$with_libdbi],       [General database statistics])
4280 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
4281 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
4282 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
4283 AC_PLUGIN([email],       [yes],                [EMail statistics])
4284 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
4285 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
4286 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
4287 AC_PLUGIN([fscache],     [$plugin_fscache],    [fscache statistics])
4288 AC_PLUGIN([gmond],       [$with_libganglia],   [Ganglia plugin])
4289 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
4290 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
4291 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
4292 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
4293 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
4294 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
4295 AC_PLUGIN([java],        [$with_java],         [Embed the Java Virtual Machine])
4296 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
4297 AC_PLUGIN([load],        [$plugin_load],       [System load])
4298 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
4299 AC_PLUGIN([madwifi],     [$have_linux_wireless_h], [Madwifi wireless statistics])
4300 AC_PLUGIN([match_empty_counter], [yes],        [The empty counter match])
4301 AC_PLUGIN([match_hashed], [yes],               [The hashed match])
4302 AC_PLUGIN([match_regex], [yes],                [The regex match])
4303 AC_PLUGIN([match_timediff], [yes],             [The timediff match])
4304 AC_PLUGIN([match_value], [yes],                [The value match])
4305 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
4306 AC_PLUGIN([memcachec],   [$with_libmemcached], [memcachec statistics])
4307 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
4308 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
4309 AC_PLUGIN([modbus],      [$with_libmodbus],    [Modbus plugin])
4310 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
4311 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
4312 AC_PLUGIN([netapp],      [$with_libnetapp],    [NetApp plugin])
4313 AC_PLUGIN([netlink],     [$with_libnetlink],   [Enhanced Linux network statistics])
4314 AC_PLUGIN([network],     [yes],                [Network communication plugin])
4315 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
4316 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
4317 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
4318 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
4319 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
4320 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
4321 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
4322 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
4323 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
4324 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
4325 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
4326 # FIXME: Check for libevent, too.
4327 AC_PLUGIN([pinba],       [$have_protoc_c],     [Pinba statistics])
4328 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
4329 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
4330 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
4331 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
4332 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
4333 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
4334 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
4335 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
4336 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
4337 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
4338 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
4339 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
4340 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
4341 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
4342 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
4343 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
4344 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
4345 AC_PLUGIN([target_notification], [yes],        [The notification target])
4346 AC_PLUGIN([target_replace], [yes],             [The replace target])
4347 AC_PLUGIN([target_scale],[yes],                [The scale target])
4348 AC_PLUGIN([target_set],  [yes],                [The set target])
4349 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
4350 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
4351 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
4352 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
4353 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
4354 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
4355 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
4356 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
4357 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
4358 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
4359 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
4360 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
4361 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
4362 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
4363 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
4364
4365 dnl Default configuration file
4366 # Load either syslog or logfile
4367 LOAD_PLUGIN_SYSLOG=""
4368 LOAD_PLUGIN_LOGFILE=""
4369
4370 AC_MSG_CHECKING([which default log plugin to load])
4371 default_log_plugin="none"
4372 if test "x$enable_syslog" = "xyes"
4373 then
4374         default_log_plugin="syslog"
4375 else
4376         LOAD_PLUGIN_SYSLOG="##"
4377 fi
4378
4379 if test "x$enable_logfile" = "xyes"
4380 then
4381         if test "x$default_log_plugin" = "xnone"
4382         then
4383                 default_log_plugin="logfile"
4384         else
4385                 LOAD_PLUGIN_LOGFILE="#"
4386         fi
4387 else
4388         LOAD_PLUGIN_LOGFILE="##"
4389 fi
4390 AC_MSG_RESULT([$default_log_plugin])
4391
4392 AC_SUBST(LOAD_PLUGIN_SYSLOG)
4393 AC_SUBST(LOAD_PLUGIN_LOGFILE)
4394
4395 DEFAULT_LOG_LEVEL="info"
4396 if test "x$enable_debug" = "xyes"
4397 then
4398         DEFAULT_LOG_LEVEL="debug"
4399 fi
4400 AC_SUBST(DEFAULT_LOG_LEVEL)
4401
4402 # Load only one of rrdtool, network, csv in the default config.
4403 LOAD_PLUGIN_RRDTOOL=""
4404 LOAD_PLUGIN_NETWORK=""
4405 LOAD_PLUGIN_CSV=""
4406
4407 AC_MSG_CHECKING([which default write plugin to load])
4408 default_write_plugin="none"
4409 if test "x$enable_rrdtool" = "xyes"
4410 then
4411         default_write_plugin="rrdtool"
4412 else
4413         LOAD_PLUGIN_RRDTOOL="##"
4414 fi
4415
4416 if test "x$enable_network" = "xyes"
4417 then
4418         if test "x$default_write_plugin" = "xnone"
4419         then
4420                 default_write_plugin="network"
4421         else
4422                 LOAD_PLUGIN_NETWORK="#"
4423         fi
4424 else
4425         LOAD_PLUGIN_NETWORK="##"
4426 fi
4427
4428 if test "x$enable_csv" = "xyes"
4429 then
4430         if test "x$default_write_plugin" = "xnone"
4431         then
4432                 default_write_plugin="csv"
4433         else
4434                 LOAD_PLUGIN_CSV="#"
4435         fi
4436 else
4437         LOAD_PLUGIN_CSV="##"
4438 fi
4439 AC_MSG_RESULT([$default_write_plugin])
4440
4441 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
4442 AC_SUBST(LOAD_PLUGIN_NETWORK)
4443 AC_SUBST(LOAD_PLUGIN_CSV)
4444
4445 dnl ip_vs.h
4446 if test "x$ac_system" = "xLinux" \
4447         && test "x$have_net_ip_vs_h$have_ip_vs_h" = "xnono"
4448 then
4449         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
4450 fi
4451
4452 dnl Perl bindings
4453 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
4454 [
4455         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4456         then
4457                 PERL_BINDINGS_OPTIONS="$withval"
4458                 with_perl_bindings="yes"
4459         else
4460                 PERL_BINDINGS_OPTIONS=""
4461                 with_perl_bindings="$withval"
4462         fi
4463 ],
4464 [
4465         PERL_BINDINGS_OPTIONS=""
4466         if test -n "$perl_interpreter"
4467         then
4468                 with_perl_bindings="yes"
4469         else
4470                 with_perl_bindings="no (no perl interpreter found)"
4471         fi
4472 ])
4473 if test "x$with_perl_bindings" = "xyes"
4474 then
4475         PERL_BINDINGS="perl"
4476 else
4477         PERL_BINDINGS=""
4478 fi
4479 AC_SUBST(PERL_BINDINGS)
4480 AC_SUBST(PERL_BINDINGS_OPTIONS)
4481
4482 dnl libcollectdclient
4483 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
4484 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
4485 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
4486
4487 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
4488
4489 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
4490
4491 AC_SUBST(LCC_VERSION_MAJOR)
4492 AC_SUBST(LCC_VERSION_MINOR)
4493 AC_SUBST(LCC_VERSION_PATCH)
4494 AC_SUBST(LCC_VERSION_EXTRA)
4495 AC_SUBST(LCC_VERSION_STRING)
4496
4497 AC_CONFIG_FILES(src/libcollectdclient/lcc_features.h)
4498
4499 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)
4500
4501 if test "x$with_librrd" = "xyes" \
4502         && test "x$librrd_threadsafe" != "xyes"
4503 then
4504         with_librrd="yes (warning: librrd is not thread-safe)"
4505 fi
4506
4507 if test "x$with_libiptc" = "xyes" && test "x$with_own_libiptc" = "xyes"
4508 then
4509         with_libiptc="yes (shipped version)"
4510 fi
4511
4512 if test "x$with_libperl" = "xyes"
4513 then
4514         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
4515 else
4516         enable_perl="no (needs libperl)"
4517 fi
4518
4519 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
4520 then
4521         enable_perl="no (libperl doesn't support ithreads)"
4522 fi
4523
4524 if test "x$with_perl_bindings" = "xyes" \
4525         && test "x$PERL_BINDINGS_OPTIONS" != "x"
4526 then
4527         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
4528 fi
4529
4530 cat <<EOF;
4531
4532 Configuration:
4533   Libraries:
4534     libcurl . . . . . . . $with_libcurl
4535     libdbi  . . . . . . . $with_libdbi
4536     libesmtp  . . . . . . $with_libesmtp
4537     libganglia  . . . . . $with_libganglia
4538     libgcrypt . . . . . . $with_libgcrypt
4539     libiokit  . . . . . . $with_libiokit
4540     libiptc . . . . . . . $with_libiptc
4541     libjvm  . . . . . . . $with_java
4542     libkstat  . . . . . . $with_kstat
4543     libkvm  . . . . . . . $with_libkvm
4544     libmemcached  . . . . $with_libmemcached
4545     libmodbus . . . . . . $with_libmodbus
4546     libmysql  . . . . . . $with_libmysql
4547     libnetapp . . . . . . $with_libnetapp
4548     libnetlink  . . . . . $with_libnetlink
4549     libnetsnmp  . . . . . $with_libnetsnmp
4550     libnotify . . . . . . $with_libnotify
4551     liboconfig  . . . . . $with_liboconfig
4552     libopenipmi . . . . . $with_libopenipmipthread
4553     liboping  . . . . . . $with_liboping
4554     libpcap . . . . . . . $with_libpcap
4555     libperfstat . . . . . $with_perfstat
4556     libperl . . . . . . . $with_libperl
4557     libpq . . . . . . . . $with_libpq
4558     libpthread  . . . . . $with_libpthread
4559     librouteros . . . . . $with_librouteros
4560     librrd  . . . . . . . $with_librrd
4561     libsensors  . . . . . $with_libsensors
4562     libstatgrab . . . . . $with_libstatgrab
4563     libtokyotyrant  . . . $with_libtokyotyrant
4564     libupsclient  . . . . $with_libupsclient
4565     libvirt . . . . . . . $with_libvirt
4566     libxml2 . . . . . . . $with_libxml2
4567     libxmms . . . . . . . $with_libxmms
4568     libyajl . . . . . . . $with_libyajl
4569     libevent  . . . . . . $with_libevent
4570     protobuf-c  . . . . . $have_protoc_c
4571     oracle  . . . . . . . $with_oracle
4572     python  . . . . . . . $with_python
4573
4574   Features:
4575     daemon mode . . . . . $enable_daemon
4576     debug . . . . . . . . $enable_debug
4577
4578   Bindings:
4579     perl  . . . . . . . . $with_perl_bindings
4580
4581   Modules:
4582     apache  . . . . . . . $enable_apache
4583     apcups  . . . . . . . $enable_apcups
4584     apple_sensors . . . . $enable_apple_sensors
4585     ascent  . . . . . . . $enable_ascent
4586     battery . . . . . . . $enable_battery
4587     bind  . . . . . . . . $enable_bind
4588     conntrack . . . . . . $enable_conntrack
4589     contextswitch . . . . $enable_contextswitch
4590     cpu . . . . . . . . . $enable_cpu
4591     cpufreq . . . . . . . $enable_cpufreq
4592     csv . . . . . . . . . $enable_csv
4593     curl  . . . . . . . . $enable_curl
4594     curl_json . . . . . . $enable_curl_json
4595     curl_xml  . . . . . . $enable_curl_xml
4596     dbi . . . . . . . . . $enable_dbi
4597     df  . . . . . . . . . $enable_df
4598     disk  . . . . . . . . $enable_disk
4599     dns . . . . . . . . . $enable_dns
4600     email . . . . . . . . $enable_email
4601     entropy . . . . . . . $enable_entropy
4602     exec  . . . . . . . . $enable_exec
4603     filecount . . . . . . $enable_filecount
4604     fscache . . . . . . . $enable_fscache
4605     gmond . . . . . . . . $enable_gmond
4606     hddtemp . . . . . . . $enable_hddtemp
4607     interface . . . . . . $enable_interface
4608     ipmi  . . . . . . . . $enable_ipmi
4609     iptables  . . . . . . $enable_iptables
4610     ipvs  . . . . . . . . $enable_ipvs
4611     irq . . . . . . . . . $enable_irq
4612     java  . . . . . . . . $enable_java
4613     libvirt . . . . . . . $enable_libvirt
4614     load  . . . . . . . . $enable_load
4615     logfile . . . . . . . $enable_logfile
4616     madwifi . . . . . . . $enable_madwifi
4617     match_empty_counter . $enable_match_empty_counter
4618     match_hashed  . . . . $enable_match_hashed
4619     match_regex . . . . . $enable_match_regex
4620     match_timediff  . . . $enable_match_timediff
4621     match_value . . . . . $enable_match_value
4622     mbmon . . . . . . . . $enable_mbmon
4623     memcachec . . . . . . $enable_memcachec
4624     memcached . . . . . . $enable_memcached
4625     memory  . . . . . . . $enable_memory
4626     modbus  . . . . . . . $enable_modbus
4627     multimeter  . . . . . $enable_multimeter
4628     mysql . . . . . . . . $enable_mysql
4629     netapp  . . . . . . . $enable_netapp
4630     netlink . . . . . . . $enable_netlink
4631     network . . . . . . . $enable_network
4632     nfs . . . . . . . . . $enable_nfs
4633     nginx . . . . . . . . $enable_nginx
4634     notify_desktop  . . . $enable_notify_desktop
4635     notify_email  . . . . $enable_notify_email
4636     ntpd  . . . . . . . . $enable_ntpd
4637     nut . . . . . . . . . $enable_nut
4638     olsrd . . . . . . . . $enable_olsrd
4639     onewire . . . . . . . $enable_onewire
4640     openvpn . . . . . . . $enable_openvpn
4641     oracle  . . . . . . . $enable_oracle
4642     perl  . . . . . . . . $enable_perl
4643     pinba . . . . . . . . $enable_pinba
4644     ping  . . . . . . . . $enable_ping
4645     postgresql  . . . . . $enable_postgresql
4646     powerdns  . . . . . . $enable_powerdns
4647     processes . . . . . . $enable_processes
4648     protocols . . . . . . $enable_protocols
4649     python  . . . . . . . $enable_python
4650     routeros  . . . . . . $enable_routeros
4651     rrdcached . . . . . . $enable_rrdcached
4652     rrdtool . . . . . . . $enable_rrdtool
4653     sensors . . . . . . . $enable_sensors
4654     serial  . . . . . . . $enable_serial
4655     snmp  . . . . . . . . $enable_snmp
4656     swap  . . . . . . . . $enable_swap
4657     syslog  . . . . . . . $enable_syslog
4658     table . . . . . . . . $enable_table
4659     tail  . . . . . . . . $enable_tail
4660     tape  . . . . . . . . $enable_tape
4661     target_notification . $enable_target_notification
4662     target_replace  . . . $enable_target_replace
4663     target_scale  . . . . $enable_target_scale
4664     target_set  . . . . . $enable_target_set
4665     tcpconns  . . . . . . $enable_tcpconns
4666     teamspeak2  . . . . . $enable_teamspeak2
4667     ted . . . . . . . . . $enable_ted
4668     thermal . . . . . . . $enable_thermal
4669     tokyotyrant . . . . . $enable_tokyotyrant
4670     unixsock  . . . . . . $enable_unixsock
4671     uptime  . . . . . . . $enable_uptime
4672     users . . . . . . . . $enable_users
4673     uuid  . . . . . . . . $enable_uuid
4674     vmem  . . . . . . . . $enable_vmem
4675     vserver . . . . . . . $enable_vserver
4676     wireless  . . . . . . $enable_wireless
4677     write_http  . . . . . $enable_write_http
4678     xmms  . . . . . . . . $enable_xmms
4679     zfs_arc . . . . . . . $enable_zfs_arc
4680
4681 EOF
4682
4683 if test "x$dependency_error" = "xyes"; then
4684         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
4685 fi
4686
4687 if test "x$dependency_warning" = "xyes"; then
4688         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
4689 fi
4690
4691 # vim: set fdm=marker :