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