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