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