contrib/exec-nagios.px: Make it possible to run the same script multiple times.
[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 AM_INIT_AUTOMAKE(dist-bzip2)
6 AC_LANG(C)
7
8 AC_PREFIX_DEFAULT("/opt/collectd")
9
10 AC_SYS_LARGEFILE
11
12 #
13 # Checks for programs.
14 #
15 AC_PROG_CC
16 AC_PROG_CPP
17 AC_PROG_INSTALL
18 AC_PROG_LN_S
19 AC_PROG_MAKE_SET
20 AM_PROG_CC_C_O
21 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
22
23 dnl configure libtool
24 AC_DISABLE_STATIC
25 AC_LIBLTDL_CONVENIENCE
26 AC_SUBST(LTDLINCL)
27 AC_SUBST(LIBLTDL)
28 AC_LIBTOOL_DLOPEN
29 AC_PROG_LIBTOOL
30 AC_PROG_LEX
31 AC_PROG_YACC
32 PKG_PROG_PKG_CONFIG
33 AC_CONFIG_SUBDIRS(libltdl)
34
35 AC_MSG_CHECKING([for kernel type ($host_os)])
36 case $host_os in
37         *linux*)
38         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
39         ac_system="Linux"
40         ;;
41         *solaris*)
42         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
43         ac_system="Solaris"
44         ;;
45         *darwin*)
46         ac_system="Darwin"
47         ;;
48         *openbsd*)
49         ac_system="OpenBSD"
50         ;;
51         *)
52         ac_system="unknown"
53 esac
54 AC_MSG_RESULT([$ac_system])
55
56 if test "x$ac_system" = "xLinux"
57 then
58         AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
59         if test -z "$KERNEL_DIR"
60         then
61                 KERNEL_DIR="/lib/modules/`uname -r`/source"
62         fi
63
64         KERNEL_CFLAGS="-I$KERNEL_DIR/include"
65         AC_SUBST(KERNEL_CFLAGS)
66 fi
67
68 if test "x$ac_system" = "xSolaris"
69 then
70         CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
71 fi
72
73 #
74 # Checks for header files.
75 #
76 AC_HEADER_STDC
77 AC_HEADER_SYS_WAIT
78 AC_HEADER_DIRENT
79
80 AC_CHECK_HEADERS(stdio.h stdint.h stdbool.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)
81
82 # For ping library
83 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
84 [#if HAVE_STDINT_H
85 # include <stdint.h>
86 #endif
87 #if HAVE_SYS_TYPES_H
88 # include <sys/types.h>
89 #endif
90 ])
91 AC_CHECK_HEADERS(netinet/in.h, [], [],
92 [#if HAVE_STDINT_H
93 # include <stdint.h>
94 #endif
95 #if HAVE_SYS_TYPES_H
96 # include <sys/types.h>
97 #endif
98 #if HAVE_NETINET_IN_SYSTM_H
99 # include <netinet/in_systm.h>
100 #endif
101 ])
102 AC_CHECK_HEADERS(netinet/ip.h, [], [],
103 [#if HAVE_STDINT_H
104 # include <stdint.h>
105 #endif
106 #if HAVE_SYS_TYPES_H
107 # include <sys/types.h>
108 #endif
109 #if HAVE_NETINET_IN_SYSTM_H
110 # include <netinet/in_systm.h>
111 #endif
112 #if HAVE_NETINET_IN_H
113 # include <netinet/in.h>
114 #endif
115 ])
116 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
117 [#if HAVE_STDINT_H
118 # include <stdint.h>
119 #endif
120 #if HAVE_SYS_TYPES_H
121 # include <sys/types.h>
122 #endif
123 #if HAVE_NETINET_IN_SYSTM_H
124 # include <netinet/in_systm.h>
125 #endif
126 #if HAVE_NETINET_IN_H
127 # include <netinet/in.h>
128 #endif
129 #if HAVE_NETINET_IP_H
130 # include <netinet/ip.h>
131 #endif
132 ])
133 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
134 [#if HAVE_STDINT_H
135 # include <stdint.h>
136 #endif
137 #if HAVE_SYS_TYPES_H
138 # include <sys/types.h>
139 #endif
140 #if HAVE_NETINET_IN_SYSTM_H
141 # include <netinet/in_systm.h>
142 #endif
143 #if HAVE_NETINET_IN_H
144 # include <netinet/in.h>
145 #endif
146 #if HAVE_NETINET_IP_H
147 # include <netinet/ip.h>
148 #endif
149 ])
150 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
151 [#if HAVE_STDINT_H
152 # include <stdint.h>
153 #endif
154 #if HAVE_SYS_TYPES_H
155 # include <sys/types.h>
156 #endif
157 #if HAVE_NETINET_IN_SYSTM_H
158 # include <netinet/in_systm.h>
159 #endif
160 #if HAVE_NETINET_IN_H
161 # include <netinet/in.h>
162 #endif
163 ])
164 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
165 [#if HAVE_STDINT_H
166 # include <stdint.h>
167 #endif
168 #if HAVE_SYS_TYPES_H
169 # include <sys/types.h>
170 #endif
171 #if HAVE_NETINET_IN_SYSTM_H
172 # include <netinet/in_systm.h>
173 #endif
174 #if HAVE_NETINET_IN_H
175 # include <netinet/in.h>
176 #endif
177 #if HAVE_NETINET_IP6_H
178 # include <netinet/ip6.h>
179 #endif
180 ])
181 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
182 [#if HAVE_STDINT_H
183 # include <stdint.h>
184 #endif
185 #if HAVE_SYS_TYPES_H
186 # include <sys/types.h>
187 #endif
188 #if HAVE_NETINET_IN_SYSTM_H
189 # include <netinet/in_systm.h>
190 #endif
191 #if HAVE_NETINET_IN_H
192 # include <netinet/in.h>
193 #endif
194 #if HAVE_NETINET_IP_H
195 # include <netinet/ip.h>
196 #endif
197 ])
198 AC_CHECK_HEADERS(netinet/udp.h, [], [],
199 [#if HAVE_STDINT_H
200 # include <stdint.h>
201 #endif
202 #if HAVE_SYS_TYPES_H
203 # include <sys/types.h>
204 #endif
205 #if HAVE_NETINET_IN_SYSTM_H
206 # include <netinet/in_systm.h>
207 #endif
208 #if HAVE_NETINET_IN_H
209 # include <netinet/in.h>
210 #endif
211 #if HAVE_NETINET_IP_H
212 # include <netinet/ip.h>
213 #endif
214 ])
215
216 # For cpu modules
217 AC_CHECK_HEADERS(sys/dkstat.h)
218 if test "x$ac_system" = "xDarwin"
219 then
220         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)
221         AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
222 fi
223 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
224 [
225 #if HAVE_SYS_TYPES_H
226 #  include <sys/types.h>
227 #endif
228 #if HAVE_SYS_PARAM_H
229 # include <sys/param.h>
230 #endif
231 ])
232
233 # For hddtemp module
234 AC_CHECK_HEADERS(linux/major.h libgen.h)
235
236 # For the battery plugin
237 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
238 [
239 #if HAVE_IOKIT_IOKITLIB_H
240 #  include <IOKit/IOKitLib.h>
241 #endif
242 #if HAVE_IOKIT_IOTYPES_H
243 #  include <IOKit/IOTypes.h>
244 #endif
245 ])
246
247 # For the swap module
248 have_sys_swap_h="yes"
249 AC_CHECK_HEADERS(sys/swap.h, [], [have_sys_swap_h="no"],
250 [
251 #if HAVE_SYS_TYPES_H
252 #  include <sys/types.h>
253 #endif
254 #if HAVE_SYS_PARAM_H
255 # include <sys/param.h>
256 #endif
257 ])
258
259 if test "x$have_sys_swap_h$ac_system" = "xnoSolaris"
260 then
261         AC_MSG_NOTICE([Solaris detected and sys/swap.h not found: Try building a 64bit binary.])
262 fi
263
264 # For load module
265 # For the processes plugin
266 # For users module
267 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
268
269 # For interface plugin
270 AC_CHECK_HEADERS(ifaddrs.h)
271 AC_CHECK_HEADERS(net/if.h, [], [],
272 [
273 #if HAVE_SYS_TYPES_H
274 #  include <sys/types.h>
275 #endif
276 #if HAVE_SYS_SOCKET_H
277 #  include <sys/socket.h>
278 #endif
279 ])
280 AC_CHECK_HEADERS(linux/if.h, [], [],
281 [
282 #if HAVE_SYS_TYPES_H
283 #  include <sys/types.h>
284 #endif
285 #if HAVE_SYS_SOCKET_H
286 #  include <sys/socket.h>
287 #endif
288 ])
289 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
290 [
291 #if HAVE_SYS_TYPES_H
292 #  include <sys/types.h>
293 #endif
294 #if HAVE_SYS_SOCKET_H
295 #  include <sys/socket.h>
296 #endif
297 #if HAVE_LINUX_IF_H
298 # include <linux/if.h>
299 #endif
300 ])
301
302 # For ipvs module
303 have_net_ip_vs_h="no"
304 have_ip_vs_h="no"
305 if test "x$ac_system" = "xLinux"
306 then
307         SAVE_CFLAGS=$CFLAGS
308         CFLAGS="$CFLAGS $KERNEL_CFLAGS"
309
310         AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
311         AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
312
313         CFLAGS=$SAVE_CFLAGS
314 fi
315
316 # For quota module
317 AC_CHECK_HEADERS(sys/ucred.h, [], [],
318 [
319 #if HAVE_SYS_TYPES_H
320 #  include <sys/types.h>
321 #endif
322 #if HAVE_SYS_PARAM_H
323 # include <sys/param.h>
324 #endif
325 ])
326
327 # For mount interface
328 AC_CHECK_HEADERS(sys/mount.h, [], [],
329 [
330 #if HAVE_SYS_TYPES_H
331 #  include <sys/types.h>
332 #endif
333 #if HAVE_SYS_PARAM_H
334 # include <sys/param.h>
335 #endif
336 ])
337
338 # For the email plugin
339 AC_CHECK_HEADERS(linux/un.h, [], [],
340 [
341 #if HAVE_SYS_SOCKET_H
342 #       include <sys/socket.h>
343 #endif
344 ])
345
346 AC_CHECK_HEADERS(pwd.h grp.h sys/un.h ctype.h limits.h sys/quota.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)
347
348 # For the dns plugin
349 AC_CHECK_HEADERS(arpa/nameser.h)
350 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
351 [
352 #if HAVE_ARPA_NAMESER_H
353 # include <arpa/nameser.h>
354 #endif
355 ])
356
357 AC_CHECK_HEADERS(net/if_arp.h, [], [],
358 [#if HAVE_SYS_SOCKET_H
359 # include <sys/socket.h>
360 #endif
361 ])
362 AC_CHECK_HEADERS(net/ppp_defs.h)
363 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
364 [#if HAVE_NET_PPP_DEFS_H
365 # include <net/ppp_defs.h>
366 #endif
367 ])
368 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
369 [#if HAVE_STDINT_H
370 # include <stdint.h>
371 #endif
372 #if HAVE_SYS_TYPES_H
373 # include <sys/types.h>
374 #endif
375 #if HAVE_SYS_SOCKET_H
376 # include <sys/socket.h>
377 #endif
378 #if HAVE_NET_IF_H
379 # include <net/if.h>
380 #endif
381 #if HAVE_NETINET_IN_H
382 # include <netinet/in.h>
383 #endif
384 ])
385
386 # For the multimeter plugin
387 have_termios_h="no"
388 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
389
390 #
391 # Checks for typedefs, structures, and compiler characteristics.
392 #
393 AC_C_CONST
394 AC_TYPE_PID_T
395 AC_TYPE_SIZE_T
396 AC_TYPE_UID_T
397 AC_HEADER_TIME
398
399 #
400 # Checks for library functions.
401 #
402 AC_PROG_GCC_TRADITIONAL
403 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog)
404
405 AC_FUNC_STRERROR_R
406
407 AC_CACHE_CHECK([for strtok_r],
408   [have_strtok_r_default],
409   AC_LINK_IFELSE(
410     AC_LANG_PROGRAM(
411     [[[[
412 #include <stdlib.h>
413 #include <stdio.h>
414 #include <string.h>
415     ]]]],
416     [[[[
417       char buffer[] = "foo,bar,baz";
418       char *token;
419       char *dummy;
420       char *saveptr;
421
422       dummy = buffer;
423       saveptr = NULL;
424       while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
425       {
426         dummy = NULL;
427         printf ("token = %s;\n", token);
428       }
429     ]]]]),
430     [have_strtok_r_default="yes"],
431     [have_strtok_r_default="no"]
432   )
433 )
434
435 if test "x$have_strtok_r_default" = "xno"
436 then
437   SAVE_CFLAGS="$CFLAGS"
438   CFLAGS="$CFLAGS -D_REENTRANT=1"
439
440   AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
441     [have_strtok_r_reentrant],
442     AC_LINK_IFELSE(
443       AC_LANG_PROGRAM(
444       [[[[
445 #include <stdlib.h>
446 #include <stdio.h>
447 #include <string.h>
448       ]]]],
449       [[[[
450         char buffer[] = "foo,bar,baz";
451         char *token;
452         char *dummy;
453         char *saveptr;
454
455         dummy = buffer;
456         saveptr = NULL;
457         while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
458         {
459           dummy = NULL;
460           printf ("token = %s;\n", token);
461         }
462       ]]]]),
463       [have_strtok_r_reentrant="yes"],
464       [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
465     )
466   )
467 fi
468
469 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
470
471 socket_needs_socket="no"
472 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
473 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
474
475 nanosleep_needs_rt="no"
476 AC_CHECK_FUNCS(nanosleep, [], AC_CHECK_LIB(rt, nanosleep, [nanosleep_needs_rt="yes"], AC_MSG_ERROR(cannot find nanosleep)))
477 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
478
479 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
480 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
481 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
482 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
483 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
484 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
485 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
486 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
487 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
488 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
489
490 # For load module
491 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
492
493 # Check for NAN
494 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
495 [
496  if test "x$withval" = "xno"; then
497          nan_type="none"
498  else if test "x$withval" = "xyes"; then
499          nan_type="zero"
500  else
501          nan_type="$withval"
502  fi; fi
503 ],
504 [nan_type="none"])
505 if test "x$nan_type" = "xnone"; then
506   AC_CACHE_CHECK([whether NAN is defined by default],
507     [have_nan_default],
508     AC_COMPILE_IFELSE(
509       AC_LANG_PROGRAM(
510       [[
511 #include <stdlib.h>
512 #include <math.h>
513 static float foo = NAN;
514       ]],
515       [[
516        if (isnan (foo))
517         return 0;
518        else
519         return 1;
520       ]]),
521       [have_nan_default="yes"],
522       [have_nan_default="no"]
523     )
524   )
525   if test "x$have_nan_default" = "xyes"
526   then
527     nan_type="default"
528   fi
529 fi
530 if test "x$nan_type" = "xnone"; then
531   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
532     [have_nan_isoc],
533     AC_COMPILE_IFELSE(
534       AC_LANG_PROGRAM(
535       [[
536 #include <stdlib.h>
537 #define __USE_ISOC99 1
538 #include <math.h>
539 static float foo = NAN;
540       ]],
541       [[
542        if (isnan (foo))
543         return 0;
544        else
545         return 1;
546       ]]),
547       [have_nan_isoc="yes"],
548       [have_nan_isoc="no"]
549     )
550   )
551   if test "x$have_nan_isoc" = "xyes"
552   then
553     nan_type="isoc99"
554   fi
555 fi
556 if test "x$nan_type" = "xnone"; then
557   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
558     [have_nan_zero],
559     AC_RUN_IFELSE(
560       AC_LANG_PROGRAM(
561       [[
562 #include <stdlib.h>
563 #include <math.h>
564 #ifdef NAN
565 # undef NAN
566 #endif
567 #define NAN (0.0 / 0.0)
568 #ifndef isnan
569 # define isnan(f) ((f) != (f))
570 #endif
571 static float foo = NAN;
572       ]],
573       [[
574        if (isnan (foo))
575         return 0;
576        else
577         return 1;
578       ]]),
579       [have_nan_zero="yes"],
580       [have_nan_zero="no"]
581     )
582   )
583   if test "x$have_nan_zero" = "xyes"
584   then
585     nan_type="zero"
586   fi
587 fi
588
589 if test "x$nan_type" = "xdefault"; then
590   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
591     [Define if NAN is defined by default and can initialize static variables.])
592 else if test "x$nan_type" = "xisoc99"; then
593   AC_DEFINE(NAN_STATIC_ISOC, 1,
594     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
595 else if test "x$nan_type" = "xzero"; then
596   AC_DEFINE(NAN_ZERO_ZERO, 1,
597     [Define if NAN can be defined as (0.0 / 0.0)])
598 else
599   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
600 fi; fi; fi
601
602 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
603 [
604  if test "x$withval" = "xnothing"; then
605         fp_layout_type="nothing"
606  else if test "x$withval" = "xendianflip"; then
607         fp_layout_type="endianflip"
608  else if test "x$withval" = "xintswap"; then
609         fp_layout_type="intswap"
610  else
611         AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
612 fi; fi; fi
613 ],
614 [fp_layout_type="unknown"])
615
616 if test "x$fp_layout_type" = "xunknown"; then
617   AC_CACHE_CHECK([if doubles are stored in x86 representation],
618     [fp_layout_need_nothing],
619     AC_RUN_IFELSE(
620       AC_LANG_PROGRAM(
621       [[[[
622 #include <stdlib.h>
623 #include <stdio.h>
624 #include <stdint.h>
625 #include <string.h>
626       ]]]],
627       [[[[
628         uint64_t i0;
629         uint64_t i1;
630         uint8_t c[8];
631         double d;
632
633         d = 8.642135e130; 
634         memcpy ((void *) &i0, (void *) &d, 8);
635
636         i1 = i0;
637         memcpy ((void *) c, (void *) &i1, 8);
638
639         if ((c[0] == 0x2f) && (c[1] == 0x25)
640                         && (c[2] == 0xc0) && (c[3] == 0xc7)
641                         && (c[4] == 0x43) && (c[5] == 0x2b)
642                         && (c[6] == 0x1f) && (c[7] == 0x5b))
643                 return (0);
644         else
645                 return (1);
646       ]]]]),
647       [fp_layout_need_nothing="yes"],
648       [fp_layout_need_nothing="no"]
649     )
650   )
651   if test "x$fp_layout_need_nothing" = "xyes"; then
652     fp_layout_type="nothing"
653   fi
654 fi
655 if test "x$fp_layout_type" = "xunknown"; then
656   AC_CACHE_CHECK([if endianflip converts to x86 representation],
657     [fp_layout_need_endianflip],
658     AC_RUN_IFELSE(
659       AC_LANG_PROGRAM(
660       [[[[
661 #include <stdlib.h>
662 #include <stdio.h>
663 #include <stdint.h>
664 #include <string.h>
665 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
666                        (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
667                        (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
668                        (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
669                        (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
670                        (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
671                        (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
672                        (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
673       ]]]],
674       [[[[
675         uint64_t i0;
676         uint64_t i1;
677         uint8_t c[8];
678         double d;
679
680         d = 8.642135e130; 
681         memcpy ((void *) &i0, (void *) &d, 8);
682
683         i1 = endianflip (i0);
684         memcpy ((void *) c, (void *) &i1, 8);
685
686         if ((c[0] == 0x2f) && (c[1] == 0x25)
687                         && (c[2] == 0xc0) && (c[3] == 0xc7)
688                         && (c[4] == 0x43) && (c[5] == 0x2b)
689                         && (c[6] == 0x1f) && (c[7] == 0x5b))
690                 return (0);
691         else
692                 return (1);
693       ]]]]),
694       [fp_layout_need_endianflip="yes"],
695       [fp_layout_need_endianflip="no"]
696     )
697   )
698   if test "x$fp_layout_need_endianflip" = "xyes"; then
699     fp_layout_type="endianflip"
700   fi
701 fi
702 if test "x$fp_layout_type" = "xunknown"; then
703   AC_CACHE_CHECK([if intswap converts to x86 representation],
704     [fp_layout_need_intswap],
705     AC_RUN_IFELSE(
706       AC_LANG_PROGRAM(
707       [[[[
708 #include <stdlib.h>
709 #include <stdio.h>
710 #include <stdint.h>
711 #include <string.h>
712 #define intswap(A)    ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
713                        (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
714       ]]]],
715       [[[[
716         uint64_t i0;
717         uint64_t i1;
718         uint8_t c[8];
719         double d;
720
721         d = 8.642135e130; 
722         memcpy ((void *) &i0, (void *) &d, 8);
723
724         i1 = intswap (i0);
725         memcpy ((void *) c, (void *) &i1, 8);
726
727         if ((c[0] == 0x2f) && (c[1] == 0x25)
728                         && (c[2] == 0xc0) && (c[3] == 0xc7)
729                         && (c[4] == 0x43) && (c[5] == 0x2b)
730                         && (c[6] == 0x1f) && (c[7] == 0x5b))
731                 return (0);
732         else
733                 return (1);
734       ]]]]),
735       [fp_layout_need_intswap="yes"],
736       [fp_layout_need_intswap="no"]
737     )
738   )
739   if test "x$fp_layout_need_intswap" = "xyes"; then
740     fp_layout_type="intswap"
741   fi
742 fi
743
744 if test "x$fp_layout_type" = "xnothing"; then
745   AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
746   [Define if doubles are stored in x86 representation.])
747 else if test "x$fp_layout_type" = "xendianflip"; then
748   AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
749   [Define if endianflip is needed to convert to x86 representation.])
750 else if test "x$fp_layout_type" = "xintswap"; then
751   AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
752   [Define if intswap is needed to convert to x86 representation.])
753 else
754   AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
755 fi; fi; fi
756
757 have_getfsstat="no"
758 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
759 have_getvfsstat="no"
760 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
761 have_listmntent="no"
762 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
763
764 have_getmntent="no"
765 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
766 if test "x$have_getmntent" = "xno"; then
767         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
768 fi
769 if test "x$have_getmntent" = "xno"; then
770         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
771 fi
772 if test "x$have_getmntent" = "xno"; then
773         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
774 fi
775
776 if test "x$have_getmntent" = "xc"; then
777         AC_CACHE_CHECK([whether getmntent takes one argument],
778                 [have_one_getmntent],
779                 AC_COMPILE_IFELSE(
780                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
781 #include <mntent.h>
782 #include "$srcdir/src/utils_mount.h"]],
783                                 [[
784                                  FILE *fh;
785                                  struct mntent *me;
786                                  fh = setmntent ("/etc/mtab", "r");
787                                  me = getmntent (fh);
788                                 ]]
789                         ),
790                         [have_one_getmntent="yes"],
791                         [have_one_getmntent="no"]
792                 )
793         )
794         AC_CACHE_CHECK([whether getmntent takes two arguments],
795                 [have_two_getmntent],
796                 AC_COMPILE_IFELSE(
797                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
798 #include <sys/mnttab.h>
799 #include "$srcdir/src/utils_mount.h"]],
800                                 [[
801                                  FILE *fh;
802                                  struct mnttab mt;
803                                  int status;
804                                  fh = fopen ("/etc/mnttab", "r");
805                                  status = getmntent (fh, &mt);
806                                 ]]
807                         ),
808                         [have_two_getmntent="yes"],
809                         [have_two_getmntent="no"]
810                 )
811         )
812 fi
813
814 # Check for different versions of `getmntent' here..
815
816 if test "x$have_getmntent" = "xc"; then
817         if test "x$have_one_getmntent" = "xyes"; then
818                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
819                           [Define if the function getmntent exists and takes one argument.])
820         fi
821         if test "x$have_two_getmntent" = "xyes"; then
822                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
823                           [Define if the function getmntent exists and takes two arguments.])
824         fi
825 fi
826 if test "x$have_getmntent" = "xsun"; then
827         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
828                   [Define if the function getmntent exists. It's the version from libsun.])
829 fi
830 if test "x$have_getmntent" = "xseq"; then
831         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
832                   [Define if the function getmntent exists. It's the version from libseq.])
833 fi
834 if test "x$have_getmntent" = "xgen"; then
835         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
836                   [Define if the function getmntent exists. It's the version from libgen.])
837 fi
838
839 # Check for structures
840 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
841         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
842         [],
843         [
844         #include <sys/types.h>
845         #include <sys/socket.h>
846         #include <net/if.h>
847         ])
848 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
849         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
850         [],
851         [
852         #include <sys/types.h>
853         #include <sys/socket.h>
854         #include <linux/if.h>
855         #include <linux/netdevice.h>
856         ])
857
858 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
859 [#if HAVE_STDINT_H
860 # include <stdint.h>
861 #endif
862 #if HAVE_SYS_TYPES_H
863 # include <sys/types.h>
864 #endif
865 #if HAVE_NETINET_IN_SYSTM_H
866 # include <netinet/in_systm.h>
867 #endif
868 #if HAVE_NETINET_IN_H
869 # include <netinet/in.h>
870 #endif
871 #if HAVE_NETINET_IP_H
872 # include <netinet/ip.h>
873 #endif
874 #if HAVE_NETINET_UDP_H
875 # include <netinet/udp.h>
876 #endif
877 ])
878 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
879 [#if HAVE_STDINT_H
880 # include <stdint.h>
881 #endif
882 #if HAVE_SYS_TYPES_H
883 # include <sys/types.h>
884 #endif
885 #if HAVE_NETINET_IN_SYSTM_H
886 # include <netinet/in_systm.h>
887 #endif
888 #if HAVE_NETINET_IN_H
889 # include <netinet/in.h>
890 #endif
891 #if HAVE_NETINET_IP_H
892 # include <netinet/ip.h>
893 #endif
894 #if HAVE_NETINET_UDP_H
895 # include <netinet/udp.h>
896 #endif
897 ])
898
899 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
900         [],
901         [],
902         [
903 #if HAVE_KSTAT_H
904 # include <kstat.h>
905 #endif
906         ])
907
908 #
909 # Checks for libraries begin here
910 #
911 with_libresolv="yes"
912 AC_CHECK_LIB(resolv, res_search,
913 [
914         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
915 ],
916 [with_libresolv="no"])
917 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
918
919 dnl Check for HAL (hardware abstraction library)
920 with_libhal="yes"
921 AC_CHECK_LIB(hal,libhal_device_property_exists,
922              [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
923              [with_libhal="no"])
924 if test "x$with_libhal" = "xyes"; then
925         if test "x$PKG_CONFIG" != "x"; then
926                 BUILD_WITH_LIBHAL_CFLAGS="`pkg-config --cflags hal`"
927                 BUILD_WITH_LIBHAL_LIBS="`pkg-config --libs hal`"
928                 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
929                 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
930         fi
931 fi
932
933 m4_divert_once([HELP_WITH], [
934 collectd additional packages:])
935
936 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
937 librrd_cflags=""
938 librrd_ldflags=""
939 librrd_threadsafe="yes"
940 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
941 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
942         then
943                 librrd_cflags="-I$withval/include"
944                 librrd_ldflags="-L$withval/lib"
945                 with_rrdtool="yes"
946         else
947                 with_rrdtool="$withval"
948         fi
949 ], [with_rrdtool="yes"])
950 if test "x$with_rrdtool" = "xyes"
951 then
952         SAVE_CPPFLAGS="$CPPFLAGS"
953         SAVE_LDFLAGS="$LDFLAGS"
954
955         CPPFLAGS="$CPPFLAGS $librrd_cflags"
956         LDFLAGS="$LDFLAGS $librrd_ldflags"
957
958         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
959
960         CPPFLAGS="$SAVE_CPPFLAGS"
961         LDFLAGS="$SAVE_LDFLAGS"
962 fi
963 if test "x$with_rrdtool" = "xyes"
964 then
965         SAVE_CPPFLAGS="$CPPFLAGS"
966         SAVE_LDFLAGS="$LDFLAGS"
967
968         CPPFLAGS="$CPPFLAGS $librrd_cflags"
969         LDFLAGS="$LDFLAGS $librrd_ldflags"
970
971         AC_CHECK_LIB(rrd_th, rrd_update_r,
972         [with_rrdtool="yes"
973          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
974         ],
975         [librrd_threadsafe="no"
976          AC_CHECK_LIB(rrd, rrd_update,
977          [with_rrdtool="yes"
978           librrd_ldflags="$librrd_ldflags -lrrd -lm"
979          ],
980          [with_rrdtool="no (symbol 'rrd_update' not found)"],
981          [-lm])
982         ],
983         [-lm])
984
985         CPPFLAGS="$SAVE_CPPFLAGS"
986         LDFLAGS="$SAVE_LDFLAGS"
987 fi
988 if test "x$with_rrdtool" = "xyes"
989 then
990         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
991         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
992         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
993         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
994 fi
995 if test "x$librrd_threadsafe" = "xyes"
996 then
997         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
998 fi
999
1000 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
1001 [       if test "x$withval" != "xno" \
1002                 && test "x$withval" != "xyes"
1003         then
1004                 LDFLAGS="$LDFLAGS -L$withval/lib"
1005                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1006                 with_libpthread="yes"
1007         else
1008                 if test "x$withval" = "xno"
1009                 then
1010                         with_libpthread="no (disabled)"
1011                 fi
1012         fi
1013 ], [with_libpthread="yes"])
1014 if test "x$with_libpthread" = "xyes"
1015 then
1016         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
1017 fi
1018 if test "x$with_libpthread" = "xyes"
1019 then
1020         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
1021 fi
1022 if test "x$with_libpthread" = "xyes"
1023 then
1024         collect_pthread=1
1025 else
1026         collect_pthread=0
1027 fi
1028 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
1029         [Wether or not to use pthread (POSIX threads) library])
1030 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
1031
1032 if test "x$ac_system" = "xSolaris"
1033 then
1034         with_kstat="yes"
1035         with_devinfo="yes"
1036 else
1037         with_kstat="no (Solaris only)"
1038         with_devinfo="no (Solaris only)"
1039 fi
1040
1041 if test "x$with_kstat" = "xyes"
1042 then
1043         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1044 fi
1045 if test "x$with_kstat" = "xyes"
1046 then
1047         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1048         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1049 fi
1050 if test "x$with_kstat" = "xyes"
1051 then
1052         AC_DEFINE(HAVE_LIBKSTAT, 1,
1053                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1054 fi
1055 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1056 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1057
1058 ### BEGIN of check for libcurl ###
1059 with_curl_config="curl-config"
1060 with_curl_cflags=""
1061 with_curl_libs=""
1062 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1063 [
1064         if test "x$withval" = "xno"
1065         then
1066                 with_libcurl="no"
1067         else if test "x$withval" = "xyes"
1068         then
1069                 with_libcurl="yes"
1070         else
1071                 if test -f "$withval" && test -x "$withval"
1072                 then
1073                         with_curl_config="$withval"
1074                         with_libcurl="yes"
1075                 else if test -x "$withval/bin/curl-config"
1076                 then
1077                         with_curl_config="$withval/bin/curl-config"
1078                         with_libcurl="yes"
1079                 fi; fi
1080                 with_libcurl="yes"
1081         fi; fi
1082 ],
1083 [
1084         with_libcurl="yes"
1085 ])
1086 if test "x$with_libcurl" = "xyes"
1087 then
1088         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1089         curl_config_status=$?
1090
1091         if test $curl_config_status -ne 0
1092         then
1093                 with_libcurl="no ($with_curl_config failed)"
1094         else
1095                 SAVE_CPPFLAGS="$CPPFLAGS"
1096                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1097
1098                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1099
1100                 CPPFLAGS="$SAVE_CPPFLAGS"
1101         fi
1102 fi
1103 if test "x$with_libcurl" = "xyes"
1104 then
1105         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1106         curl_config_status=$?
1107
1108         if test $curl_config_status -ne 0
1109         then
1110                 with_libcurl="no ($with_curl_config failed)"
1111         else
1112                 AC_CHECK_LIB(curl, curl_easy_init,
1113                  [with_libcurl="yes"],
1114                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1115                  [$with_curl_libs])
1116         fi
1117 fi
1118 if test "x$with_libcurl" = "xyes"
1119 then
1120         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1121         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1122         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1123         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1124 fi
1125 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1126 ### END of check for libcurl ###
1127
1128 with_libiokit="no"
1129 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
1130 [
1131         with_libiokit="yes"
1132 ], 
1133 [
1134         with_libiokit="no"
1135 ])
1136 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1137
1138 with_libstatgrab_cflags=""
1139 with_libstatgrab_ldflags=""
1140 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
1141 [
1142         if test "x$withval" != "xno" \
1143                 && test "x$withval" != "xyes"
1144         then
1145                 with_libstatgrab_cflags="-I$withval/include"
1146                 with_libstatgrab_ldflags="-L$withval/lib"
1147                 with_libstatgrab="yes"
1148         else
1149                 with_libstatgrab="$withval"
1150         fi
1151 ],
1152 [
1153         if test "x$ac_system" = "xunknown"
1154         then
1155                 with_libstatgrab="yes"
1156         else
1157                 with_libstatgrab="no"
1158         fi
1159 ])
1160 with_libstatgrab_pkg_config="yes"
1161 if test "x$with_libstatgrab" = "xyes" \
1162   && test "x$PKG_CONFIG" != "x"
1163 then
1164   AC_MSG_CHECKING([pkg-config for libstatgrab])
1165   temp_result="found"
1166   $PKG_CONFIG --exists libstatgrab 2>/dev/null
1167   if test "$?" != "0"
1168   then
1169     with_libstatgrab_pkg_config="no"
1170     temp_result="not found"
1171   fi
1172   AC_MSG_RESULT([$temp_result])
1173 else
1174   AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
1175   with_libstatgrab_pkg_config="no"
1176   with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
1177 fi
1178
1179 if test "x$with_libstatgrab" = "xyes" \
1180   && test "x$with_libstatgrab_pkg_config" = "xyes" \
1181   && test "x$with_libstatgrab_cflags" = "x"
1182 then
1183   AC_MSG_CHECKING([for libstatgrab CFLAGS])
1184   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
1185   if test "$?" = "0"
1186   then
1187     with_libstatgrab_cflags="$temp_result"
1188   else
1189     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
1190     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
1191   fi
1192   AC_MSG_RESULT([$temp_result])
1193 fi
1194
1195 if test "x$with_libstatgrab" = "xyes" \
1196   && test "x$with_libstatgrab_pkg_config" = "xyes" \
1197   && test "x$with_libstatgrab_ldflags" = "x"
1198 then
1199   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
1200   temp_result="`$PKG_CONFIG --libs libstatgrab`"
1201   if test "$?" = "0"
1202   then
1203     with_libstatgrab_ldflags="$temp_result"
1204   else
1205     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
1206     temp_result="$PKG_CONFIG --libs libstatgrab failed"
1207   fi
1208   AC_MSG_RESULT([$temp_result])
1209 fi
1210
1211 if test "x$with_libstatgrab" = "xyes"
1212 then
1213   SAVE_CPPFLAGS="$CPPFLAGS"
1214   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
1215
1216   AC_CHECK_HEADERS(statgrab.h,
1217                    [with_libstatgrab="yes"],
1218                    [with_libstatgrab="no (statgrab.h not found)"])
1219
1220   CPPFLAGS="$SAVE_CPPFLAGS"
1221 fi
1222
1223 if test "x$with_libstatgrab" = "xyes"
1224 then
1225   SAVE_CFLAGS="$CFLAGS"
1226   SAVE_LDFLAGS="$LDFLAGS"
1227
1228   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
1229   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
1230
1231   AC_CHECK_LIB(statgrab, sg_init,
1232                [with_libstatgrab="yes"],
1233                [with_libstatgrab="no (symbol sg_init not found)"])
1234
1235   CFLAGS="$SAVE_CFLAGS"
1236   LDFLAGS="$SAVE_LDFLAGS"
1237 fi
1238
1239 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
1240 if test "x$with_libstatgrab" = "xyes"
1241 then
1242   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
1243   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
1244   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
1245   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
1246   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
1247 fi
1248
1249 with_libkvm="no"
1250 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1251 if test "x$with_kvm_getprocs" = "xyes"
1252 then
1253         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1254                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1255         with_libkvm="yes"
1256 fi
1257 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1258
1259 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1260 if test "x$with_kvm_getswapinfo" = "xyes"
1261 then
1262         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1263                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1264         with_libkvm="yes"
1265 fi
1266 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1267
1268 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1269 if test "x$with_kvm_nlist" = "xyes"
1270 then
1271         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1272                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1273         with_libkvm="yes"
1274 fi
1275 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1276
1277 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1278 if test "x$with_kvm_openfiles" = "xyes"
1279 then
1280         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1281                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1282         with_libkvm="yes"
1283 fi
1284 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1285
1286 with_sensors_cflags=""
1287 with_sensors_ldflags=""
1288 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
1289 [
1290         if test "x$withval" = "xno"
1291         then
1292                 with_lm_sensors="no"
1293         else
1294                 with_lm_sensors="yes"
1295                 if test "x$withval" != "xyes"
1296                 then
1297                         with_sensors_cflags="-I$withval/include"
1298                         with_sensors_ldflags="-L$withval/lib"
1299                         with_lm_sensors="yes"
1300                 fi
1301         fi
1302 ],
1303 [
1304         if test "x$ac_system" = "xLinux"
1305         then
1306                 with_lm_sensors="yes"
1307         else
1308                 with_lm_sensors="no (Linux only library)"
1309         fi
1310 ])
1311 if test "x$with_lm_sensors" = "xyes"
1312 then
1313         SAVE_CPPFLAGS="$CPPFLAGS"
1314         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
1315
1316 #       AC_CHECK_HEADERS(sensors/sensors.h,
1317 #       [
1318 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
1319 #       ],
1320 #       [with_lm_sensors="no (sensors/sensors.h not found)"])
1321         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_lm_sensors="no (sensors/sensors.h not found)"])
1322
1323         CPPFLAGS="$SAVE_CPPFLAGS"
1324 fi
1325 if test "x$with_lm_sensors" = "xyes"
1326 then
1327         SAVE_CPPFLAGS="$CPPFLAGS"
1328         SAVE_LDFLAGS="$LDFLAGS"
1329         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
1330         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
1331
1332         AC_CHECK_LIB(sensors, sensors_init,
1333         [
1334                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
1335         ],
1336         [with_lm_sensors="no (libsensors not found)"])
1337
1338         CPPFLAGS="$SAVE_CPPFLAGS"
1339         LDFLAGS="$SAVE_LDFLAGS"
1340 fi
1341 if test "x$with_lm_sensors" = "xyes"
1342 then
1343         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
1344         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
1345         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
1346         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
1347 fi
1348 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
1349
1350 with_mysql_config="mysql_config"
1351 with_mysql_cflags=""
1352 with_mysql_libs=""
1353 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
1354 [
1355         if test "x$withval" = "xno"
1356         then
1357                 with_libmysql="no"
1358         else if test "x$withval" = "xyes"
1359         then
1360                 with_libmysql="yes"
1361         else
1362                 if test -f "$withval" && test -x "$withval";
1363                 then
1364                         with_mysql_config="$withval"
1365                 else if test -x "$withval/bin/mysql_config"
1366                 then
1367                         with_mysql_config="$withval/bin/mysql_config"
1368                 fi; fi
1369                 with_libmysql="yes"
1370         fi; fi
1371 ],
1372 [
1373         with_libmysql="yes"
1374 ])
1375 if test "x$with_libmysql" = "xyes"
1376 then
1377         with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
1378         mysql_config_status=$?
1379
1380         if test $mysql_config_status -ne 0
1381         then
1382                 with_libmysql="no ($with_mysql_config failed)"
1383         else
1384                 SAVE_CPPFLAGS="$CPPFLAGS"
1385                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
1386
1387                 have_mysql_h="no"
1388                 have_mysql_mysql_h="no"
1389                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
1390
1391                 if test "x$have_mysql_h" = "xno"
1392                 then
1393                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
1394                 fi
1395
1396                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
1397                 then
1398                         with_libmysql="no (mysql.h not found)"
1399                 fi
1400
1401                 CPPFLAGS="$SAVE_CPPFLAGS"
1402         fi
1403 fi
1404 if test "x$with_libmysql" = "xyes"
1405 then
1406         with_mysql_libs=`$with_mysql_config --libs 2>/dev/null`
1407         mysql_config_status=$?
1408
1409         if test $mysql_config_status -ne 0
1410         then
1411                 with_libmysql="no ($with_mysql_config failed)"
1412         else
1413                 AC_CHECK_LIB(mysqlclient, mysql_init,
1414                  [with_libmysql="yes"],
1415                  [with_libmysql="no (symbol 'mysql_init' not found)"],
1416                  [$with_mysql_libs])
1417         fi
1418 fi
1419 if test "x$with_libmysql" = "xyes"
1420 then
1421         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
1422         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
1423         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
1424         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
1425 fi
1426 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
1427
1428 with_own_liboconfig="no"
1429 liboconfig_LDFLAGS="$LDFLAGS"
1430 liboconfig_CPPFLAGS="$CPPFLAGS"
1431 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
1432 [
1433         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1434         then
1435                 if test -d "$withval/lib"
1436                 then
1437                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
1438                 fi
1439                 if test -d "$withval/include"
1440                 then
1441                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
1442                 fi
1443         fi
1444         if test "x$withval" = "xno"
1445         then
1446                 AC_MSG_ERROR("liboconfig is required")
1447         fi
1448 ],
1449 [
1450         with_liboconfig="yes"
1451 ])
1452
1453 save_LDFLAGS="$LDFLAGS"
1454 save_CPPFLAGS="$CPPFLAGS"
1455 LDFLAGS="$liboconfig_LDFLAGS"
1456 CPPFLAGS="$liboconfig_CPPFLAGS"
1457 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
1458 [
1459         with_liboconfig="yes"
1460         with_own_liboconfig="no"
1461 ],
1462 [
1463         with_liboconfig="yes"
1464         with_own_liboconfig="yes"
1465         LDFLAGS="$save_LDFLAGS"
1466         CPPFLAGS="$save_CPPFLAGS"
1467 ])
1468
1469 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
1470 if test "x$with_own_liboconfig" = "xyes"
1471 then
1472         with_liboconfig="yes (shipped version)"
1473 fi
1474
1475 #with_liboping="yes"
1476 with_own_liboping="no"
1477 liboping_LDFLAGS="$LDFLAGS"
1478 liboping_CPPFLAGS="$CPPFLAGS"
1479 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
1480 [
1481         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1482         then
1483                 if test -d "$withval/lib"
1484                 then
1485                         liboping_LDFLAGS="$LDFLAGS -L$withval/lib"
1486                 fi
1487                 if test -d "$withval/include"
1488                 then
1489                         liboping_CPPFLAGS="$CPPFLAGS -I$withval/include"
1490                 fi
1491         fi
1492         if test "x$withval" = "xno"
1493         then
1494                 with_liboping="no"
1495                 with_own_liboping="no"
1496         else if test "x$withval" = "xyes"
1497         then
1498                 with_liboping="yes"
1499         fi; fi
1500 ],
1501 [
1502         with_liboping="yes"
1503 ])
1504
1505 if test "x$with_liboping" = "xyes"
1506 then
1507         save_LDFLAGS="$LDFLAGS"
1508         save_CPPFLAGS="$CPPFLAGS"
1509         LDFLAGS="$liboping_LDFLAGS"
1510         CPPFLAGS="$liboping_CPPFLAGS"
1511         AC_CHECK_LIB(oping, ping_construct,
1512         [
1513                 with_liboping="yes"
1514                 with_own_liboping="no"
1515         ],
1516         [
1517                 with_liboping="yes"
1518                 with_own_liboping="yes"
1519                 LDFLAGS="$save_LDFLAGS"
1520                 CPPFLAGS="$save_CPPFLAGS"
1521         ])
1522 fi
1523 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
1524 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOPING, test "x$with_own_liboping" = "xyes")
1525
1526 with_libowcapi_cppflags=""
1527 with_libowcapi_libs="-lowcapi"
1528 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
1529 [
1530         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1531         then
1532                 with_libowcapi_cppflags="-I$withval/include"
1533                 with_libowcapi_libs="-L$withval/lib -lowcapi"
1534                 with_libowcapi="yes"
1535         else
1536                 with_libowcapi="$withval"
1537         fi
1538 ],
1539 [
1540         with_libowcapi="yes"
1541 ])
1542 if test "x$with_libowcapi" = "xyes"
1543 then
1544         SAVE_CPPFLAGS="$CPPFLAGS"
1545         CPPFLAGS="$with_libowcapi_cppflags"
1546         
1547         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
1548
1549         CPPFLAGS="$SAVE_CPPFLAGS"
1550 fi
1551 if test "x$with_libowcapi" = "xyes"
1552 then
1553         SAVE_LDFLAGS="$LDFLAGS"
1554         SAVE_CPPFLAGS="$CPPFLAGS"
1555         LDFLAGS="$with_libowcapi_libs"
1556         CPPFLAGS="$with_libowcapi_cppflags"
1557         
1558         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
1559
1560         LDFLAGS="$SAVE_LDFLAGS"
1561         CPPFLAGS="$SAVE_CPPFLAGS"
1562 fi
1563 if test "x$with_libowcapi" = "xyes"
1564 then
1565         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
1566         BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
1567         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
1568         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
1569 fi
1570
1571
1572 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
1573 [
1574         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1575         then
1576                 LDFLAGS="$LDFLAGS -L$withval/lib"
1577                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1578                 with_libpcap="yes"
1579         else
1580                 with_libpcap="$withval"
1581         fi
1582 ],
1583 [
1584         with_libpcap="yes"
1585 ])
1586 if test "x$with_libpcap" = "xyes"
1587 then
1588         AC_CHECK_LIB(pcap, pcap_open_live,
1589         [
1590                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
1591         ], [with_libpcap="no (libpcap not found)"])
1592 fi
1593 if test "x$with_libpcap" = "xyes"
1594 then
1595         AC_CHECK_HEADERS(pcap.h,
1596         [
1597                 AC_DEFINE(HAVE_PCAP_H, 1, [Define to 1 if you have the <pcap.h> header file.])
1598         ], [with_libpcap="no (pcap.h not found)"])
1599 fi
1600 if test "x$with_libpcap" = "xyes"
1601 then
1602         collect_libpcap=1
1603 else
1604         collect_libpcap=0
1605 fi
1606 AC_DEFINE_UNQUOTED(COLLECT_LIBPCAP, [$collect_libpcap],
1607         [Wether or not to use the pcap library])
1608 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
1609
1610 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1611 [
1612         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1613         then
1614                 LDFLAGS="$LDFLAGS -L$withval/lib"
1615                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1616                 with_libesmtp="yes"
1617         else
1618                 with_libesmtp="$withval"
1619         fi
1620 ],
1621 [
1622         with_libesmtp="yes"
1623 ])
1624 if test "x$with_libesmtp" = "xyes"
1625 then
1626         AC_CHECK_LIB(esmtp, smtp_create_session,
1627         [
1628                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1629         ], [with_libesmtp="no (libesmtp not found)"])
1630 fi
1631 if test "x$with_libesmtp" = "xyes"
1632 then
1633         AC_CHECK_HEADERS(libesmtp.h,
1634         [
1635                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1636         ], [with_libesmtp="no (libesmtp.h not found)"])
1637 fi
1638 if test "x$with_libesmtp" = "xyes"
1639 then
1640         collect_libesmtp=1
1641 else
1642         collect_libesmtp=0
1643 fi
1644 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1645         [Wether or not to use the esmtp library])
1646 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1647
1648 perl_interpreter="perl"
1649 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
1650 [
1651         if test -x "$withval"
1652         then
1653                 perl_interpreter="$withval"
1654                 with_libperl="yes"
1655         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
1656         then
1657                 LDFLAGS="$LDFLAGS -L$withval/lib"
1658                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1659                 perl_interpreter="$withval/bin/perl"
1660                 with_libperl="yes"
1661         else
1662                 with_libperl="$withval"
1663         fi; fi
1664 ],
1665 [
1666         with_libperl="yes"
1667 ])
1668
1669 AC_MSG_CHECKING([for perl])
1670 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
1671 if test -x "$perl_interpreter"
1672 then
1673         AC_MSG_RESULT([yes ($perl_interpreter)])
1674 else
1675         perl_interpreter=""
1676         AC_MSG_RESULT([no])
1677 fi
1678
1679 AC_SUBST(PERL, "$perl_interpreter")
1680
1681 if test "x$with_libperl" = "xyes" \
1682         && test -n "$perl_interpreter"
1683 then
1684   SAVE_CFLAGS=$CFLAGS
1685   SAVE_LDFLAGS=$LDFLAGS
1686   PERL_CFLAGS=`$perl_interpreter -MExtUtils::Embed -e ccopts`
1687   PERL_LDFLAGS=`$perl_interpreter -MExtUtils::Embed -e ldopts`
1688   CFLAGS="$CFLAGS $PERL_CFLAGS"
1689   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
1690
1691   AC_CACHE_CHECK([for libperl],
1692     [have_libperl],
1693     AC_LINK_IFELSE(
1694       AC_LANG_PROGRAM(
1695       [[
1696 #define PERL_NO_GET_CONTEXT
1697 #include <EXTERN.h>
1698 #include <perl.h>
1699 #include <XSUB.h>
1700       ]],
1701       [[
1702        dTHX;
1703        load_module (PERL_LOADMOD_NOIMPORT,
1704                          newSVpv ("Collectd::Plugin::FooBar", 24),
1705                          Nullsv);
1706       ]]),
1707       [have_libperl="yes"],
1708       [have_libperl="no"]
1709     )
1710   )
1711
1712   if test "x$have_libperl" = "xyes"
1713   then
1714           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
1715           AC_SUBST(PERL_CFLAGS)
1716           AC_SUBST(PERL_LDFLAGS)
1717   else
1718           with_libperl="no"
1719   fi
1720
1721   CFLAGS=$SAVE_CFLAGS
1722   LDFLAGS=$SAVE_LDFLAGS
1723 else if test -z "$perl_interpreter"; then
1724   with_libperl="no (no perl interpreter found)"
1725   have_libperl="no"
1726 fi; fi
1727 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
1728
1729 if test "x$with_libperl" = "xyes"
1730 then
1731         SAVE_CFLAGS=$CFLAGS
1732         SAVE_LDFLAGS=$LDFLAGS
1733         CFLAGS="$CFLAGS $PERL_CFLAGS"
1734         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
1735
1736         AC_CACHE_CHECK([if perl supports ithreads],
1737                 [have_perl_ithreads],
1738                 AC_LINK_IFELSE(
1739                         AC_LANG_PROGRAM(
1740                         [[
1741 #include <EXTERN.h>
1742 #include <perl.h>
1743 #include <XSUB.h>
1744
1745 #if !defined(USE_ITHREADS)
1746 # error "Perl does not support ithreads!"
1747 #endif /* !defined(USE_ITHREADS) */
1748                         ]],
1749                         [[ ]]),
1750                         [have_perl_ithreads="yes"],
1751                         [have_perl_ithreads="no"]
1752                 )
1753         )
1754
1755         if test "x$have_perl_ithreads" = "xyes"
1756         then
1757                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
1758         fi
1759
1760         CFLAGS=$SAVE_CFLAGS
1761         LDFLAGS=$SAVE_LDFLAGS
1762 fi
1763
1764 with_own_libiptc="no"
1765 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1766 [
1767         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1768         then
1769                 LDFLAGS="$LDFLAGS -L$withval/lib"
1770                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1771                 with_libiptc="yes"
1772         else
1773                 with_libiptc="$withval"
1774         fi
1775 ],
1776 [
1777         if test "x$ac_system" = "xLinux"
1778         then
1779                 with_libiptc="yes"
1780         else
1781                 with_libiptc="no (Linux only)"
1782         fi
1783 ])
1784 if test "x$with_libiptc" = "xyes"
1785 then
1786         AC_CHECK_LIB(iptc, iptc_init,
1787         [
1788                 AC_DEFINE(HAVE_LIBIPTC, 1, [Define to 1 if you have the iptc library (-liptc).])
1789         ],
1790         [
1791                 with_libiptc="yes"
1792                 with_own_libiptc="yes"
1793         ])
1794 fi
1795 if test "x$with_libiptc" = "xyes" -a "x$with_own_libiptc" != "xyes"
1796 then
1797         AC_CHECK_HEADERS(libiptc/libiptc.h,
1798         [
1799                 AC_DEFINE(HAVE_LIBIPTC_LIBIPTC_H, 1, [Define to 1 if you have the <libiptc/libiptc.h> header file.])
1800         ],
1801         [
1802                 with_libiptc="yes"
1803                 with_own_libiptc="yes"
1804         ])
1805 fi
1806 if test "x$with_libiptc" = "xyes"
1807 then
1808         SAVE_CFLAGS=$CFLAGS
1809         CFLAGS="$CFLAGS $KERNEL_CFLAGS"
1810
1811         AC_CHECK_HEADERS(linux/netfilter_ipv4/ip_tables.h linux/netfilter_ipv6/ip6_tables.h, [],
1812         [
1813                 with_libiptc="no (Linux iptables headers not found - check KERNEL_DIR)"
1814                 with_own_libiptc="no"
1815         ],
1816         [
1817 #include "$srcdir/src/libiptc/ipt_kernel_headers.h"
1818         ])
1819
1820         CFLAGS=$SAVE_CFLAGS
1821 fi
1822 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
1823 AM_CONDITIONAL(BUILD_WITH_OWN_LIBIPTC, test "x$with_own_libiptc" = "xyes")
1824 if test "x$with_own_libiptc" = "xyes"
1825 then
1826         AC_DEFINE(OWN_LIBIPTC, 1, [Define to 1 if we use the shipped iptc library.])
1827 fi
1828
1829 with_snmp_config="net-snmp-config"
1830 with_snmp_cflags=""
1831 with_snmp_libs=""
1832 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
1833 [
1834         if test "x$withval" = "xno"
1835         then
1836                 with_libnetsnmp="no"
1837         else if test "x$withval" = "xyes"
1838         then
1839                 with_libnetsnmp="yes"
1840         else
1841                 if test -x "$withval"
1842                 then
1843                         with_snmp_config="$withval"
1844                         with_libnetsnmp="yes"
1845                 else
1846                         with_snmp_config="$withval/bin/net-snmp-config"
1847                         with_libnetsnmp="yes"
1848                 fi
1849         fi; fi
1850 ],
1851 [with_libnetsnmp="yes"])
1852 if test "x$with_libnetsnmp" = "xyes"
1853 then
1854         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
1855         snmp_config_status=$?
1856
1857         if test $snmp_config_status -ne 0
1858         then
1859                 with_libnetsnmp="no ($with_snmp_config failed)"
1860         else
1861                 SAVE_CPPFLAGS="$CPPFLAGS"
1862                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
1863                 
1864                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
1865
1866                 CPPFLAGS="$SAVE_CPPFLAGS"
1867         fi
1868 fi
1869 if test "x$with_libnetsnmp" = "xyes"
1870 then
1871         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
1872         snmp_config_status=$?
1873
1874         if test $snmp_config_status -ne 0
1875         then
1876                 with_libnetsnmp="no ($with_snmp_config failed)"
1877         else
1878                 AC_CHECK_LIB(netsnmp, init_snmp,
1879                 [with_libnetsnmp="yes"],
1880                 [with_libnetsnmp="no (libnetsnmp not found)"],
1881                 [$with_snmp_libs])
1882         fi
1883 fi
1884 if test "x$with_libnetsnmp" = "xyes"
1885 then
1886         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
1887         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
1888         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
1889         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
1890 fi
1891 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
1892
1893 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
1894                 [with_libnotify="yes"],
1895                 [with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"])
1896
1897 with_libupsclient_config=""
1898 with_libupsclient_cflags=""
1899 with_libupsclient_libs=""
1900 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
1901 [
1902         if test "x$withval" = "xno"
1903         then
1904                 with_libupsclient="no"
1905         else if test "x$withval" = "xyes"
1906         then
1907                 with_libupsclient="use_pkgconfig"
1908         else
1909                 if test -x "$withval"
1910                 then
1911                         with_libupsclient_config="$withval"
1912                         with_libupsclient="use_libupsclient_config"
1913                 else if test -x "$withval/bin/libupsclient-config"
1914                 then
1915                         with_libupsclient_config="$withval/bin/net-snmp-config"
1916                         with_libupsclient="use_libupsclient_config"
1917                 else
1918                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
1919                         with_libupsclient_cflags="-I$withval/include"
1920                         with_libupsclient_libs="-L$withval/lib -lupsclient"
1921                         with_libupsclient="yes"
1922                 fi; fi
1923         fi; fi
1924 ],
1925 [with_libupsclient="use_pkgconfig"])
1926
1927 # configure using libupsclient-config
1928 if test "x$with_libupsclient" = "xuse_libupsclient_config"
1929 then
1930         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
1931         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
1932         if test $? -ne 0
1933         then
1934                 with_libupsclient="no ($with_libupsclient_config failed)"
1935         fi
1936         with_libupsclient_libs="`$with_libupsclient_config --libs`"
1937         if test $? -ne 0
1938         then
1939                 with_libupsclient="no ($with_libupsclient_config failed)"
1940         fi
1941 fi
1942 if test "x$with_libupsclient" = "xuse_libupsclient_config"
1943 then
1944         with_libupsclient="yes"
1945 fi
1946
1947 # configure using pkg-config
1948 if test "x$with_libupsclient" = "xuse_pkgconfig"
1949 then
1950         if test "x$PKG_CONFIG" = "x"
1951         then
1952                 with_libupsclient="no (Don't have pkg-config)"
1953         fi
1954 fi
1955 if test "x$with_libupsclient" = "xuse_pkgconfig"
1956 then
1957         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
1958         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
1959         if test $? -ne 0
1960         then
1961                 with_libupsclient="no (pkg-config doesn't know library)"
1962         fi
1963 fi
1964 if test "x$with_libupsclient" = "xuse_pkgconfig"
1965 then
1966         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
1967         if test $? -ne 0
1968         then
1969                 with_libupsclient="no ($PKG_CONFIG failed)"
1970         fi
1971         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
1972         if test $? -ne 0
1973         then
1974                 with_libupsclient="no ($PKG_CONFIG failed)"
1975         fi
1976 fi
1977 if test "x$with_libupsclient" = "xuse_pkgconfig"
1978 then
1979         with_libupsclient="yes"
1980 fi
1981
1982 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
1983 # the actual checks.
1984 if test "x$with_libupsclient" = "xyes"
1985 then
1986         SAVE_CPPFLAGS="$CPPFLAGS"
1987         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
1988
1989         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
1990
1991         CPPFLAGS="$SAVE_CPPFLAGS"
1992 fi
1993 if test "x$with_libupsclient" = "xyes"
1994 then
1995         SAVE_CPPFLAGS="$CPPFLAGS"
1996         SAVE_LDFLAGS="$LDFLAGS"
1997
1998         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
1999         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
2000
2001         AC_CHECK_LIB(upsclient, upscli_connect,
2002                      [with_libupsclient="yes"],
2003                      [with_libupsclient="no (symbol upscli_connect not found)"])
2004
2005         CPPFLAGS="$SAVE_CPPFLAGS"
2006         LDFLAGS="$SAVE_LDFLAGS"
2007 fi
2008 if test "x$with_libupsclient" = "xyes"
2009 then
2010         SAVE_CPPFLAGS="$CPPFLAGS"
2011         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
2012
2013         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
2014 [#include <stdlib.h>
2015 #include <stdio.h>
2016 #include <upsclient.h>])
2017
2018         CPPFLAGS="$SAVE_CPPFLAGS"
2019 fi
2020 if test "x$with_libupsclient" = "xyes"
2021 then
2022         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
2023         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
2024         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
2025         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
2026 fi
2027
2028 ### BEGIN of check for libxmms ###
2029 with_xmms_config="xmms-config"
2030 with_xmms_cflags=""
2031 with_xmms_libs=""
2032 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
2033 [
2034         if test "x$withval" != "xno" \
2035                 && test "x$withval" != "xyes"
2036         then
2037                 if test -f "$withval" && test -x "$withval";
2038                 then
2039                         with_xmms_config="$withval"
2040                 else if test -x "$withval/bin/xmms-config"
2041                 then
2042                         with_xmms_config="$withval/bin/xmms-config"
2043                 fi; fi
2044                 with_libxmms="yes"
2045         else if test "x$withval" = "xno"
2046         then
2047                 with_libxmms="no"
2048         else
2049                 with_libxmms="yes"
2050         fi; fi
2051 ],
2052 [
2053         with_libxmms="yes"
2054 ])
2055 if test "x$with_libxmms" = "xyes"
2056 then
2057         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
2058         xmms_config_status=$?
2059
2060         if test $xmms_config_status -ne 0
2061         then
2062                 with_libxmms="no"
2063         fi
2064 fi
2065 if test "x$with_libxmms" = "xyes"
2066 then
2067         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
2068         xmms_config_status=$?
2069
2070         if test $xmms_config_status -ne 0
2071         then
2072                 with_libxmms="no"
2073         fi
2074 fi
2075 if test "x$with_libxmms" = "xyes"
2076 then
2077         AC_CHECK_LIB(xmms, xmms_remote_get_info,
2078         [
2079                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
2080                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
2081                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
2082                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
2083         ],
2084         [
2085                 with_libxmms="no"
2086         ],
2087         [$with_xmms_libs])
2088 fi
2089 with_libxmms_numeric=0
2090 if test "x$with_libxmms" = "xyes"
2091 then
2092         with_libxmms_numeric=1
2093 fi
2094 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
2095 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
2096 ### END of check for libxmms ###
2097
2098 with_libnetlink_cflags=""
2099 with_libnetlink_libs="-lnetlink"
2100 AC_ARG_WITH(libnetlink, [AS_HELP_STRING([--with-libnetlink@<:@=PREFIX@:>@], [Path to libnetlink.])],
2101 [
2102  echo "libnetlink: withval = $withval"
2103  if test "x$withval" = "xyes"
2104  then
2105          with_libnetlink="yes"
2106  else if test "x$withval" = "xno"
2107  then
2108          with_libnetlink="no"
2109  else
2110          if test -d "$withval/include"
2111          then
2112                  with_libnetlink_cflags="-I$withval/include"
2113                  with_libnetlink_libs="-L$withval/lib -lnetlink"
2114                  with_libnetlink="yes"
2115          else
2116                  AC_MSG_ERROR("no such directory: $withval/include")
2117          fi
2118  fi; fi
2119 ],
2120 [
2121  if test "x$ac_system" = "xLinux"
2122  then
2123          with_libnetlink="yes"
2124  else
2125          with_libnetlink="no (Linux only library)"
2126  fi
2127 ])
2128 if test "x$with_libnetlink" = "xyes"
2129 then
2130         SAVE_CFLAGS=$CFLAGS
2131         CFLAGS="$CFLAGS $with_libnetlink_cflags"
2132
2133         with_libnetlink="no (libnetlink.h not found)"
2134
2135         AC_CHECK_HEADERS(libnetlink.h iproute/libnetlink.h linux/libnetlink.h,
2136         [
2137          with_libnetlink="yes"
2138          break
2139         ], [],
2140 [#include <stdio.h>
2141 #include <sys/types.h>
2142 #include <asm/types.h>
2143 #include <sys/socket.h>
2144 #include <linux/netlink.h>
2145 #include <linux/rtnetlink.h>])
2146         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2147 [#include <stdio.h>
2148 #include <sys/types.h>
2149 #include <asm/types.h>
2150 #include <sys/socket.h>])
2151
2152         AC_COMPILE_IFELSE(
2153 [#include <stdio.h>
2154 #include <sys/types.h>
2155 #include <asm/types.h>
2156 #include <sys/socket.h>
2157 #include <linux/netlink.h>
2158 #include <linux/rtnetlink.h>
2159
2160 int main (void)
2161 {
2162         int retval = TCA_STATS2;
2163         return (retval);
2164 }],
2165         [AC_DEFINE([HAVE_TCA_STATS2], 1, [True if the enum-member TCA_STATS2 exists])]
2166         []);
2167
2168         AC_COMPILE_IFELSE(
2169 [#include <stdio.h>
2170 #include <sys/types.h>
2171 #include <asm/types.h>
2172 #include <sys/socket.h>
2173 #include <linux/netlink.h>
2174 #include <linux/rtnetlink.h>
2175
2176 int main (void)
2177 {
2178         int retval = TCA_STATS;
2179         return (retval);
2180 }],
2181         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])]
2182         []);
2183
2184         CFLAGS="$SAVE_CFLAGS"
2185 fi
2186 if test "x$with_libnetlink" = "xyes"
2187 then
2188         AC_CHECK_LIB(netlink, rtnl_open,
2189                      [with_libnetlink="yes"],
2190                      [with_libnetlink="no (symbol 'rtnl_open' not found)"],
2191                      [$with_libnetlink_libs])
2192 fi
2193 if test "x$with_libnetlink" = "xyes"
2194 then
2195         BUILD_WITH_LIBNETLINK_CFLAGS="$with_libnetlink_cflags"
2196         BUILD_WITH_LIBNETLINK_LIBS="$with_libnetlink_libs"
2197         AC_SUBST(BUILD_WITH_LIBNETLINK_CFLAGS)
2198         AC_SUBST(BUILD_WITH_LIBNETLINK_LIBS)
2199 fi
2200 AM_CONDITIONAL(BUILD_WITH_LIBNETLINK, test "x$with_libnetlink" = "xyes")
2201
2202 with_libopenipmipthread="yes"
2203 with_libopenipmipthread_cflags=""
2204 with_libopenipmipthread_libs=""
2205
2206 AC_MSG_CHECKING([for pkg-config])
2207 temp_result="no"
2208 if test "x$PKG_CONFIG" = "x"
2209 then
2210         with_libopenipmipthread="no"
2211         temp_result="no"
2212 else
2213         temp_result="$PKG_CONFIG"
2214 fi
2215 AC_MSG_RESULT([$temp_result])
2216
2217 if test "x$with_libopenipmipthread" = "xyes"
2218 then
2219         AC_MSG_CHECKING([for libOpenIPMIpthread])
2220         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
2221         if test "$?" != "0"
2222         then
2223                 with_libopenipmipthread="no ($PKG_CONFIG doesn't know OpenIPMIpthread)"
2224         fi
2225         AC_MSG_RESULT([$with_libopenipmipthread])
2226 fi
2227
2228 if test "x$with_libopenipmipthread" = "xyes"
2229 then
2230         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
2231         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
2232         if test "$?" = "0"
2233         then
2234                 with_libopenipmipthread_cflags="$temp_result"
2235         else
2236                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
2237                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
2238         fi
2239         AC_MSG_RESULT([$temp_result])
2240 fi
2241
2242 if test "x$with_libopenipmipthread" = "xyes"
2243 then
2244         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
2245         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
2246         if test "$?" = "0"
2247         then
2248                 with_libopenipmipthread_ldflags="$temp_result"
2249         else
2250                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
2251                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
2252         fi
2253         AC_MSG_RESULT([$temp_result])
2254 fi
2255
2256 if test "x$with_libopenipmipthread" = "xyes"
2257 then
2258         SAVE_CPPFLAGS="$CPPFLAGS"
2259         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
2260
2261         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
2262                          [with_libopenipmipthread="yes"],
2263                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
2264 [#include <OpenIPMI/ipmiif.h>
2265 #include <OpenIPMI/ipmi_err.h>
2266 #include <OpenIPMI/ipmi_posix.h>
2267 #include <OpenIPMI/ipmi_conn.h>
2268 ])
2269
2270         CPPFLAGS="$SAVE_CPPFLAGS"
2271 fi
2272
2273 if test "x$with_libopenipmipthread" = "xyes"
2274 then
2275         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
2276         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
2277         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
2278         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
2279 fi
2280
2281 dnl Check for libpq.
2282 with_pg_config="pg_config"
2283 with_libpq_includedir=""
2284 with_libpq_libdir=""
2285 with_libpq_cppflags=""
2286 with_libpq_ldflags=""
2287 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
2288         [Path to libpq.])],
2289 [
2290         if test "x$withval" = "xno"
2291         then
2292                 with_libpq="no"
2293         else if test "x$withval" = "xyes"
2294         then
2295                 with_libpq="yes"
2296         else
2297                 if test -f "$withval" && test -x "$withval";
2298                 then
2299                         with_pg_config="$withval"
2300                 else if test -x "$withval/bin/pg_config"
2301                 then
2302                         with_pg_config="$withval/bin/pg_config"
2303                 fi; fi
2304                 with_libpq="yes"
2305         fi; fi
2306 ],
2307 [
2308         with_libpq="yes"
2309 ])
2310 if test "x$with_libpq" = "xyes"
2311 then
2312         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
2313         pg_config_status=$?
2314
2315         if test $pg_config_status -eq 0
2316         then
2317                 if test -n "$with_libpq_includedir"; then
2318                         for dir in $with_libpq_includedir; do
2319                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
2320                         done
2321                 fi
2322         else
2323                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
2324         fi
2325
2326         SAVE_CPPFLAGS="$CPPFLAGS"
2327         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
2328
2329         AC_CHECK_HEADERS(libpq-fe.h, [],
2330                 [with_libpq="no (libpq-fe.h not found)"], [])
2331
2332         CPPFLAGS="$SAVE_CPPFLAGS"
2333 fi
2334 if test "x$with_libpq" = "xyes"
2335 then
2336         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
2337         pg_config_status=$?
2338
2339         if test $pg_config_status -eq 0
2340         then
2341                 if test -n "$with_libpq_libdir"; then
2342                         for dir in $with_libpq_libdir; do
2343                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
2344                         done
2345                 fi
2346         else
2347                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
2348         fi
2349
2350         SAVE_LDFLAGS="$LDFLAGS"
2351         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
2352
2353         AC_CHECK_LIB(pq, PQconnectdb,
2354                 [with_libpq="yes"],
2355                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
2356
2357         LDFLAGS="$SAVE_LDFLAGS"
2358 fi
2359 if test "x$with_libpq" = "xyes"
2360 then
2361         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
2362         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
2363         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
2364         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
2365 fi
2366 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
2367
2368 dnl Check for libvirt and libxml2 libraries.
2369 with_libxml2="no (pkg-config isn't available)"
2370 with_libxml2_cflags=""
2371 with_libxml2_ldflags=""
2372 with_libvirt="no (pkg-config isn't available)"
2373 with_libvirt_cflags=""
2374 with_libvirt_ldflags=""
2375 if test "x$PKG_CONFIG" != "x"
2376 then
2377         pkg-config --exists 'libxml-2.0' 2>/dev/null
2378         if test "$?" = "0"
2379         then
2380                 with_libxml2="yes"
2381         else
2382                 with_libxml2="no (pkg-config doesn't know library)"
2383         fi
2384
2385         pkg-config --exists libvirt 2>/dev/null
2386         if test "$?" = "0"
2387         then
2388                 with_libvirt="yes"
2389         else
2390                 with_libvirt="no (pkg-config doesn't know library)"
2391         fi
2392 fi
2393 if test "x$with_libxml2" = "xyes"
2394 then
2395         with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
2396         if test $? -ne 0
2397         then
2398                 with_libxml2="no"
2399         fi
2400         with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
2401         if test $? -ne 0
2402         then
2403                 with_libxml2="no"
2404         fi
2405 fi
2406 if test "x$with_libxml2" = "xyes"
2407 then
2408         SAVE_CPPFLAGS="$CPPFLAGS"
2409         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
2410
2411         AC_CHECK_HEADERS(libxml/parser.h, [],
2412                       [with_libxml2="no (libxml/parser.h not found)"])
2413
2414         CPPFLAGS="$SAVE_CPPFLAGS"
2415 fi
2416 if test "x$with_libxml2" = "xyes"
2417 then
2418         SAVE_CFLAGS="$CFLAGS"
2419         SAVE_LDFLAGS="$LDFLAGS"
2420
2421         CFLAGS="$CFLAGS $with_libxml2_cflags"
2422         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
2423
2424         AC_CHECK_LIB(xml2, xmlXPathEval,
2425                      [with_libxml2="yes"],
2426                      [with_libxml2="no (symbol xmlXPathEval not found)"])
2427
2428         CFLAGS="$SAVE_CFLAGS"
2429         LDFLAGS="$SAVE_LDFLAGS"
2430 fi
2431 dnl Add the right compiler flags and libraries.
2432 if test "x$with_libxml2" = "xyes"; then
2433         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
2434         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
2435         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
2436         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
2437 fi
2438 if test "x$with_libvirt" = "xyes"
2439 then
2440         with_libvirt_cflags="`pkg-config --cflags libvirt`"
2441         if test $? -ne 0
2442         then
2443                 with_libvirt="no"
2444         fi
2445         with_libvirt_ldflags="`pkg-config --libs libvirt`"
2446         if test $? -ne 0
2447         then
2448                 with_libvirt="no"
2449         fi
2450 fi
2451 if test "x$with_libvirt" = "xyes"
2452 then
2453         SAVE_CPPFLAGS="$CPPFLAGS"
2454         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
2455
2456         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
2457                       [with_libvirt="no (libvirt/libvirt.h not found)"])
2458
2459         CPPFLAGS="$SAVE_CPPFLAGS"
2460 fi
2461 if test "x$with_libvirt" = "xyes"
2462 then
2463         SAVE_CFLAGS="$CFLAGS"
2464         SAVE_LDFLAGS="$LDFLAGS"
2465
2466         CFLAGS="$CFLAGS $with_libvirt_cflags"
2467         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
2468
2469         AC_CHECK_LIB(virt, virDomainBlockStats,
2470                      [with_libvirt="yes"],
2471                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
2472
2473         CFLAGS="$SAVE_CFLAGS"
2474         LDFLAGS="$SAVE_LDFLAGS"
2475 fi
2476 dnl Add the right compiler flags and libraries.
2477 if test "x$with_libvirt" = "xyes"; then
2478         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
2479         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
2480         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
2481         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
2482 fi
2483
2484 dnl End of check for libvirt and libxml2 libraries.
2485
2486 # Check for enabled/disabled features
2487 #
2488
2489 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
2490 # ------------------------------------------------------------
2491 dnl
2492 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
2493 dnl
2494 AC_DEFUN(
2495         [AC_COLLECTD],
2496         [
2497         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
2498         m4_if(
2499                 [$2],
2500                 [enable],
2501                 [dnl
2502                 m4_define([EnDis],[disabled])dnl
2503                 m4_define([YesNo],[no])dnl
2504                 ],dnl
2505                 [m4_if(
2506                         [$2],
2507                         [disable],
2508                         [dnl
2509                         m4_define([EnDis],[enabled])dnl
2510                         m4_define([YesNo],[yes])dnl
2511                         ],
2512                         [dnl
2513                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
2514                         ]dnl
2515                 )]dnl
2516         )dnl
2517         m4_if([$3], [feature], [],
2518                 [m4_if(
2519                         [$3], [module], [],
2520                         [dnl
2521                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
2522                         ]dnl
2523                 )]dnl
2524         )dnl
2525         AC_ARG_ENABLE(
2526                 [$1],
2527                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
2528                 [],
2529                 enable_$1='[YesNo]'dnl
2530         )# AC_ARG_ENABLE
2531 if test "x$enable_$1" = "xno"
2532 then
2533         collectd_$1=0
2534 else
2535         if test "x$enable_$1" = "xyes"
2536         then
2537                 collectd_$1=1
2538         else
2539                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
2540                 collectd_$1=1
2541                 enable_$1='yes'
2542         fi
2543 fi
2544         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
2545         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
2546         ]dnl
2547 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
2548
2549 # AC_PLUGIN(name, default, info)
2550 # ------------------------------------------------------------
2551 dnl
2552 AC_DEFUN(
2553   [AC_PLUGIN],
2554   [
2555     enable_plugin="no"
2556     AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
2557     [
2558      if test "x$enableval" = "xyes"
2559      then
2560              enable_plugin="yes"
2561      else
2562              enable_plugin="no"
2563      fi
2564     ],
2565     [
2566      if test "x$2" = "xyes"
2567      then
2568              enable_plugin="yes"
2569      else
2570              enable_plugin="no"
2571      fi
2572     ])
2573     if test "x$enable_plugin" = "xyes"
2574     then
2575             if test "x$2" = "xyes"
2576             then
2577                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
2578             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
2579                     dependency_error="yes"
2580                     enable_plugin="no (dependency error)"
2581             fi
2582     fi
2583     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
2584     enable_$1="$enable_plugin"
2585   ]
2586 )# AC_PLUGIN(name, default, info)
2587
2588 m4_divert_once([HELP_ENABLE], [
2589 collectd features:])
2590 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
2591 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
2592 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
2593 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
2594
2595 dependency_error="no"
2596 plugin_ascent="no"
2597 plugin_battery="no"
2598 plugin_cpu="no"
2599 plugin_cpufreq="no"
2600 plugin_df="no"
2601 plugin_disk="no"
2602 plugin_entropy="no"
2603 plugin_interface="no"
2604 plugin_ipmi="no"
2605 plugin_ipvs="no"
2606 plugin_irq="no"
2607 plugin_libvirt="no"
2608 plugin_load="no"
2609 plugin_memory="no"
2610 plugin_multimeter="no"
2611 plugin_nfs="no"
2612 plugin_perl="no"
2613 plugin_processes="no"
2614 plugin_serial="no"
2615 plugin_swap="no"
2616 plugin_tape="no"
2617 plugin_tcpconns="no"
2618 plugin_thermal="no"
2619 plugin_users="no"
2620 plugin_vmem="no"
2621 plugin_vserver="no"
2622 plugin_wireless="no"
2623
2624 # Linux
2625 if test "x$ac_system" = "xLinux"
2626 then
2627         plugin_battery="yes"
2628         plugin_cpu="yes"
2629         plugin_cpufreq="yes"
2630         plugin_disk="yes"
2631         plugin_entropy="yes"
2632         plugin_interface="yes"
2633         plugin_irq="yes"
2634         plugin_load="yes"
2635         plugin_memory="yes"
2636         plugin_nfs="yes"
2637         plugin_processes="yes"
2638         plugin_serial="yes"
2639         plugin_swap="yes"
2640         plugin_tcpconns="yes"
2641         plugin_thermal="yes"
2642         plugin_vmem="yes"
2643         plugin_vserver="yes"
2644         plugin_wireless="yes"
2645
2646         if test "x$have_net_ip_vs_h" = "xyes" -o "x$have_ip_vs_h" = "xyes"
2647         then
2648                 plugin_ipvs="yes"
2649         fi
2650 fi
2651
2652 if test "x$ac_system" = "xOpenBSD"
2653 then
2654         plugin_tcpconns="yes"
2655 fi
2656
2657 # Mac OS X devices
2658 if test "x$with_libiokit" = "xyes"
2659 then
2660         plugin_battery="yes"
2661         plugin_disk="yes"
2662 fi
2663
2664 # Solaris
2665 if test "x$with_devinfo$with_kstat" = "xyesyes"
2666 then
2667         plugin_cpu="yes"
2668         plugin_disk="yes"
2669         plugin_interface="yes"
2670         plugin_memory="yes"
2671         plugin_tape="yes"
2672 fi
2673
2674 if test "x$have_sys_swap_h$with_kstat$ac_system" = "xyesyesSolaris"
2675 then
2676         plugin_swap="yes"
2677 fi
2678
2679 # libstatgrab
2680 if test "x$with_libstatgrab" = "xyes"
2681 then
2682         plugin_cpu="yes"
2683         plugin_disk="yes"
2684         plugin_interface="yes"
2685         plugin_load="yes"
2686         plugin_memory="yes"
2687         plugin_swap="yes"
2688         plugin_users="yes"
2689 fi
2690
2691 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
2692 then
2693         plugin_ascent="yes"
2694 fi
2695
2696 if test "x$with_libopenipmipthread" = "xyes"
2697 then
2698         plugin_ipmi="yes"
2699 fi
2700
2701 if test "x$have_processor_info" = "xyes"
2702 then
2703         plugin_cpu="yes"
2704 fi
2705 if test "x$have_sysctlbyname" = "xyes"
2706 then
2707         plugin_cpu="yes"
2708         plugin_memory="yes"
2709         plugin_tcpconns="yes"
2710 fi
2711
2712 if test "x$have_statfs" = "xyes"
2713 then
2714         plugin_df="yes"
2715 fi
2716 if test "x$have_statvfs" = "xyes"
2717 then
2718         plugin_df="yes"
2719 fi
2720
2721 if test "x$have_getifaddrs" = "xyes"
2722 then
2723         plugin_interface="yes"
2724 fi
2725
2726 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
2727 then
2728         plugin_libvirt="yes"
2729 fi
2730
2731 if test "x$have_getloadavg" = "xyes"
2732 then
2733         plugin_load="yes"
2734 fi
2735
2736 if test "x$have_libperl$have_perl_ithreads" = "xyesyes"
2737 then
2738         plugin_perl="yes"
2739 fi
2740
2741 # Mac OS X memory interface
2742 if test "x$have_host_statistics" = "xyes"
2743 then
2744         plugin_memory="yes"
2745 fi
2746
2747 if test "x$have_termios_h" = "xyes"
2748 then
2749         plugin_multimeter="yes"
2750 fi
2751
2752 if test "x$have_thread_info" = "xyes"
2753 then
2754         plugin_processes="yes"
2755 fi
2756
2757 if test "x$with_kvm_getprocs" = "xyes"
2758 then
2759         plugin_processes="yes"
2760 fi
2761
2762 if test "x$with_kvm_getswapinfo" = "xyes"
2763 then
2764         plugin_swap="yes"
2765 fi
2766
2767 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
2768 then
2769         plugin_tcpconns="yes"
2770 fi
2771
2772 if test "x$have_getutent" = "xyes"
2773 then
2774         plugin_users="yes"
2775 fi
2776 if test "x$have_getutxent" = "xyes"
2777 then
2778         plugin_users="yes"
2779 fi
2780
2781 # FIXME: sysctl for swap plugin
2782
2783 m4_divert_once([HELP_ENABLE], [
2784 collectd plugins:])
2785
2786 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
2787 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
2788 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
2789 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
2790 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
2791 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
2792 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
2793 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
2794 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
2795 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
2796 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
2797 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
2798 AC_PLUGIN([email],       [yes],                [EMail statistics])
2799 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
2800 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
2801 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
2802 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
2803 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
2804 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
2805 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
2806 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
2807 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
2808 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
2809 AC_PLUGIN([load],        [$plugin_load],       [System load])
2810 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
2811 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
2812 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
2813 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
2814 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
2815 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
2816 AC_PLUGIN([netlink],     [$with_libnetlink],   [Enhanced Linux network statistics])
2817 AC_PLUGIN([network],     [yes],                [Network communication plugin])
2818 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
2819 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
2820 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
2821 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
2822 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
2823 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
2824 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
2825 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
2826 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
2827 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
2828 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
2829 AC_PLUGIN([rrdtool],     [$with_rrdtool],      [RRDTool output plugin])
2830 AC_PLUGIN([sensors],     [$with_lm_sensors],   [lm_sensors statistics])
2831 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
2832 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
2833 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
2834 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
2835 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
2836 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
2837 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
2838 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
2839 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
2840 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
2841 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
2842 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
2843 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
2844 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
2845 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
2846 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
2847
2848 dnl ip_vs.h
2849 if test "x$ac_system" = "xLinux" \
2850         && test "x$have_net_ip_vs_h$have_ip_vs_h" = "xnono"
2851 then
2852         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
2853 fi
2854
2855 dnl Perl bindings
2856 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
2857 [
2858         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2859         then
2860                 PERL_BINDINGS_OPTIONS="$withval"
2861                 with_perl_bindings="yes"
2862         else
2863                 PERL_BINDINGS_OPTIONS=""
2864                 with_perl_bindings="$withval"
2865         fi
2866 ],
2867 [
2868         PERL_BINDINGS_OPTIONS=""
2869         if test -n "$perl_interpreter"
2870         then
2871                 with_perl_bindings="yes"
2872         else
2873                 with_perl_bindings="no (no perl interpreter found)"
2874         fi
2875 ])
2876 if test "x$with_perl_bindings" = "xyes"
2877 then
2878         PERL_BINDINGS="perl"
2879 else
2880         PERL_BINDINGS=""
2881 fi
2882 AC_SUBST(PERL_BINDINGS)
2883 AC_SUBST(PERL_BINDINGS_OPTIONS)
2884
2885 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/libiptc/Makefile src/liboconfig/Makefile src/liboping/Makefile bindings/Makefile)
2886
2887 if test "x$with_rrdtool" = "xyes" \
2888         && test "x$librrd_threadsafe" != "xyes"
2889 then
2890         with_rrdtool="yes (warning: librrd is not thread-safe)"
2891 fi
2892
2893 if test "x$with_liboping" = "xyes" \
2894         && test "x$with_own_liboping" = "xyes"
2895 then
2896         with_liboping="yes (shipped version)"
2897 fi
2898
2899 if test "x$with_libiptc" = "xyes" -a "x$with_own_libiptc" = "xyes"
2900 then
2901         with_libiptc="yes (shipped version)"
2902 fi
2903
2904 if test "x$with_libperl" = "xyes"
2905 then
2906         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
2907 else
2908         enable_perl="no (needs libperl)"
2909 fi
2910
2911 if test "x$with_perl_bindings" = "xyes" \
2912         && test "x$PERL_BINDINGS_OPTIONS" != "x"
2913 then
2914         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
2915 fi
2916
2917 cat <<EOF;
2918
2919 Configuration:
2920   Libraries:
2921     libcurl . . . . . . . $with_libcurl
2922     libesmtp  . . . . . . $with_libesmtp
2923     libiokit  . . . . . . $with_libiokit
2924     libiptc . . . . . . . $with_libiptc
2925     libkstat  . . . . . . $with_kstat
2926     libkvm  . . . . . . . $with_libkvm
2927     libmysql  . . . . . . $with_libmysql
2928     libnetlink  . . . . . $with_libnetlink
2929     libnetsnmp  . . . . . $with_libnetsnmp
2930     libnotify . . . . . . $with_libnotify
2931     liboconfig  . . . . . $with_liboconfig
2932     libopenipmi . . . . . $with_libopenipmipthread
2933     liboping  . . . . . . $with_liboping
2934     libpcap . . . . . . . $with_libpcap
2935     libperl . . . . . . . $with_libperl
2936     libpthread  . . . . . $with_libpthread
2937     libpq . . . . . . . . $with_libpq
2938     librrd  . . . . . . . $with_rrdtool
2939     libsensors  . . . . . $with_lm_sensors
2940     libstatgrab . . . . . $with_libstatgrab
2941     libupsclient  . . . . $with_libupsclient
2942     libvirt . . . . . . . $with_libvirt
2943     libxml2 . . . . . . . $with_libxml2
2944     libxmms . . . . . . . $with_libxmms
2945
2946   Features:
2947     daemon mode . . . . . $enable_daemon
2948     debug . . . . . . . . $enable_debug
2949
2950   Bindings:
2951     perl  . . . . . . . . $with_perl_bindings
2952
2953   Modules:
2954     apache  . . . . . . . $enable_apache
2955     apcups  . . . . . . . $enable_apcups
2956     apple_sensors . . . . $enable_apple_sensors
2957     ascent  . . . . . . . $enable_ascent
2958     battery . . . . . . . $enable_battery
2959     cpu . . . . . . . . . $enable_cpu
2960     cpufreq . . . . . . . $enable_cpufreq
2961     csv . . . . . . . . . $enable_csv
2962     df  . . . . . . . . . $enable_df
2963     disk  . . . . . . . . $enable_disk
2964     dns . . . . . . . . . $enable_dns
2965     email . . . . . . . . $enable_email
2966     entropy . . . . . . . $enable_entropy
2967     exec  . . . . . . . . $enable_exec
2968     filecount . . . . . . $enable_filecount
2969     hddtemp . . . . . . . $enable_hddtemp
2970     interface . . . . . . $enable_interface
2971     iptables  . . . . . . $enable_iptables
2972     ipmi  . . . . . . . . $enable_ipmi
2973     ipvs  . . . . . . . . $enable_ipvs
2974     irq . . . . . . . . . $enable_irq
2975     libvirt . . . . . . . $enable_libvirt
2976     load  . . . . . . . . $enable_load
2977     logfile . . . . . . . $enable_logfile
2978     mbmon . . . . . . . . $enable_mbmon
2979     memcached . . . . . . $enable_memcached
2980     memory  . . . . . . . $enable_memory
2981     multimeter  . . . . . $enable_multimeter
2982     mysql . . . . . . . . $enable_mysql
2983     netlink . . . . . . . $enable_netlink
2984     network . . . . . . . $enable_network
2985     nfs . . . . . . . . . $enable_nfs
2986     nginx . . . . . . . . $enable_nginx
2987     notify_desktop  . . . $enable_notify_desktop
2988     notify_email  . . . . $enable_notify_email
2989     ntpd  . . . . . . . . $enable_ntpd
2990     nut . . . . . . . . . $enable_nut
2991     onewire . . . . . . . $enable_onewire
2992     perl  . . . . . . . . $enable_perl
2993     ping  . . . . . . . . $enable_ping
2994     postgresql  . . . . . $enable_postgresql
2995     powerdns  . . . . . . $enable_powerdns
2996     processes . . . . . . $enable_processes
2997     rrdtool . . . . . . . $enable_rrdtool
2998     sensors . . . . . . . $enable_sensors
2999     serial  . . . . . . . $enable_serial
3000     snmp  . . . . . . . . $enable_snmp
3001     swap  . . . . . . . . $enable_swap
3002     syslog  . . . . . . . $enable_syslog
3003     tail  . . . . . . . . $enable_tail
3004     tape  . . . . . . . . $enable_tape
3005     tcpconns  . . . . . . $enable_tcpconns
3006     teamspeak2  . . . . . $enable_teamspeak2
3007     thermal . . . . . . . $enable_thermal
3008     unixsock  . . . . . . $enable_unixsock
3009     users . . . . . . . . $enable_users
3010     uuid  . . . . . . . . $enable_uuid
3011     vmem  . . . . . . . . $enable_vmem
3012     vserver . . . . . . . $enable_vserver
3013     wireless  . . . . . . $enable_wireless
3014     xmms  . . . . . . . . $enable_xmms
3015
3016 EOF
3017
3018 if test "x$dependency_error" = "xyes"; then
3019         AC_MSG_ERROR("Some plugins are missing dependencies - see above summary for details")
3020 fi