Merge branch 'collectd-4.0' into collectd-4.1
[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_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
21
22 dnl configure libtool
23 AC_DISABLE_STATIC
24 AC_LIBLTDL_CONVENIENCE
25 AC_SUBST(LTDLINCL)
26 AC_SUBST(LIBLTDL)
27 AC_LIBTOOL_DLOPEN
28 AC_PROG_LIBTOOL
29 AC_PROG_LEX
30 AC_PROG_YACC
31 AC_CONFIG_SUBDIRS(libltdl)
32
33 AC_MSG_CHECKING([for kernel type ($host_os)])
34 case $host_os in
35         *linux*)
36         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
37         ac_system="Linux"
38         ;;
39         *solaris*)
40         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
41         ac_system="Solaris"
42         ;;
43         *darwin*)
44         ac_system="Darwin"
45         ;;
46         *)
47         ac_system="unknown"
48 esac
49 AC_MSG_RESULT([$ac_system])
50
51 #
52 # Checks for header files.
53 #
54 AC_HEADER_STDC
55 AC_HEADER_SYS_WAIT
56 AC_HEADER_DIRENT
57
58 AC_CHECK_HEADERS(stdint.h stdio.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h)
59
60 # For ping library
61 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
62 [#if HAVE_STDINT_H
63 # include <stdint.h>
64 #endif
65 #if HAVE_SYS_TYPES_H
66 # include <sys/types.h>
67 #endif
68 ])
69 AC_CHECK_HEADERS(netinet/in.h, [], [],
70 [#if HAVE_STDINT_H
71 # include <stdint.h>
72 #endif
73 #if HAVE_SYS_TYPES_H
74 # include <sys/types.h>
75 #endif
76 #if HAVE_NETINET_IN_SYSTM_H
77 # include <netinet/in_systm.h>
78 #endif
79 ])
80 AC_CHECK_HEADERS(netinet/ip.h, [], [],
81 [#if HAVE_STDINT_H
82 # include <stdint.h>
83 #endif
84 #if HAVE_SYS_TYPES_H
85 # include <sys/types.h>
86 #endif
87 #if HAVE_NETINET_IN_SYSTM_H
88 # include <netinet/in_systm.h>
89 #endif
90 #if HAVE_NETINET_IN_H
91 # include <netinet/in.h>
92 #endif
93 ])
94 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
95 [#if HAVE_STDINT_H
96 # include <stdint.h>
97 #endif
98 #if HAVE_SYS_TYPES_H
99 # include <sys/types.h>
100 #endif
101 #if HAVE_NETINET_IN_SYSTM_H
102 # include <netinet/in_systm.h>
103 #endif
104 #if HAVE_NETINET_IN_H
105 # include <netinet/in.h>
106 #endif
107 #if HAVE_NETINET_IP_H
108 # include <netinet/ip.h>
109 #endif
110 ])
111 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
112 [#if HAVE_STDINT_H
113 # include <stdint.h>
114 #endif
115 #if HAVE_SYS_TYPES_H
116 # include <sys/types.h>
117 #endif
118 #if HAVE_NETINET_IN_SYSTM_H
119 # include <netinet/in_systm.h>
120 #endif
121 #if HAVE_NETINET_IN_H
122 # include <netinet/in.h>
123 #endif
124 #if HAVE_NETINET_IP_H
125 # include <netinet/ip.h>
126 #endif
127 ])
128 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
129 [#if HAVE_STDINT_H
130 # include <stdint.h>
131 #endif
132 #if HAVE_SYS_TYPES_H
133 # include <sys/types.h>
134 #endif
135 #if HAVE_NETINET_IN_SYSTM_H
136 # include <netinet/in_systm.h>
137 #endif
138 #if HAVE_NETINET_IN_H
139 # include <netinet/in.h>
140 #endif
141 ])
142 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
143 [#if HAVE_STDINT_H
144 # include <stdint.h>
145 #endif
146 #if HAVE_SYS_TYPES_H
147 # include <sys/types.h>
148 #endif
149 #if HAVE_NETINET_IN_SYSTM_H
150 # include <netinet/in_systm.h>
151 #endif
152 #if HAVE_NETINET_IN_H
153 # include <netinet/in.h>
154 #endif
155 #if HAVE_NETINET_IP6_H
156 # include <netinet/ip6.h>
157 #endif
158 ])
159 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
160 [#if HAVE_STDINT_H
161 # include <stdint.h>
162 #endif
163 #if HAVE_SYS_TYPES_H
164 # include <sys/types.h>
165 #endif
166 #if HAVE_NETINET_IN_SYSTM_H
167 # include <netinet/in_systm.h>
168 #endif
169 #if HAVE_NETINET_IN_H
170 # include <netinet/in.h>
171 #endif
172 #if HAVE_NETINET_IP_H
173 # include <netinet/ip.h>
174 #endif
175 ])
176 AC_CHECK_HEADERS(netinet/udp.h, [], [],
177 [#if HAVE_STDINT_H
178 # include <stdint.h>
179 #endif
180 #if HAVE_SYS_TYPES_H
181 # include <sys/types.h>
182 #endif
183 #if HAVE_NETINET_IN_SYSTM_H
184 # include <netinet/in_systm.h>
185 #endif
186 #if HAVE_NETINET_IN_H
187 # include <netinet/in.h>
188 #endif
189 #if HAVE_NETINET_IP_H
190 # include <netinet/ip.h>
191 #endif
192 ])
193
194 # For cpu modules
195 AC_CHECK_HEADERS(sys/dkstat.h)
196 if test "x$ac_system" = "xDarwin"
197 then
198         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)
199         AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
200 fi
201 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
202 [
203 #if HAVE_SYS_TYPES_H
204 #  include <sys/types.h>
205 #endif
206 #if HAVE_SYS_PARAM_H
207 # include <sys/param.h>
208 #endif
209 ])
210
211 # For hddtemp module
212 AC_CHECK_HEADERS(linux/major.h libgen.h)
213
214 # For the battery plugin
215 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
216 [
217 #if HAVE_IOKIT_IOKITLIB_H
218 #  include <IOKit/IOKitLib.h>
219 #endif
220 #if HAVE_IOKIT_IOTYPES_H
221 #  include <IOKit/IOTypes.h>
222 #endif
223 ])
224
225 # For the swap module
226 AC_CHECK_HEADERS(sys/swap.h, [], [],
227 [
228 #if HAVE_SYS_TYPES_H
229 #  include <sys/types.h>
230 #endif
231 #if HAVE_SYS_PARAM_H
232 # include <sys/param.h>
233 #endif
234 ])
235
236 # For load module
237 # For the processes plugin
238 # For users module
239 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
240
241 # For interface plugin
242 AC_CHECK_HEADERS(ifaddrs.h)
243 AC_CHECK_HEADERS(net/if.h, [], [],
244 [
245 #if HAVE_SYS_TYPES_H
246 #  include <sys/types.h>
247 #endif
248 #if HAVE_SYS_SOCKET_H
249 #  include <sys/socket.h>
250 #endif
251 ])
252 AC_CHECK_HEADERS(linux/if.h, [], [],
253 [
254 #if HAVE_SYS_TYPES_H
255 #  include <sys/types.h>
256 #endif
257 #if HAVE_SYS_SOCKET_H
258 #  include <sys/socket.h>
259 #endif
260 ])
261 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
262 [
263 #if HAVE_SYS_TYPES_H
264 #  include <sys/types.h>
265 #endif
266 #if HAVE_SYS_SOCKET_H
267 #  include <sys/socket.h>
268 #endif
269 #if HAVE_LINUX_IF_H
270 # include <linux/if.h>
271 #endif
272 ])
273
274 # For quota module
275 AC_CHECK_HEADERS(sys/ucred.h, [], [],
276 [
277 #if HAVE_SYS_TYPES_H
278 #  include <sys/types.h>
279 #endif
280 #if HAVE_SYS_PARAM_H
281 # include <sys/param.h>
282 #endif
283 ])
284
285 # For mount interface
286 AC_CHECK_HEADERS(sys/mount.h, [], [],
287 [
288 #if HAVE_SYS_TYPES_H
289 #  include <sys/types.h>
290 #endif
291 #if HAVE_SYS_PARAM_H
292 # include <sys/param.h>
293 #endif
294 ])
295
296 # For the email plugin
297 AC_CHECK_HEADERS(linux/un.h, [], [],
298 [
299 #if HAVE_SYS_SOCKET_H
300 #       include <sys/socket.h>
301 #endif
302 ])
303
304 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)
305
306 # For the dns plugin
307 AC_CHECK_HEADERS(arpa/nameser.h)
308 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
309 [
310 #if HAVE_ARPA_NAMESER_H
311 # include <arpa/nameser.h>
312 #endif
313 ])
314
315 AC_CHECK_HEADERS(net/if_arp.h, [], [],
316 [#if HAVE_SYS_SOCKET_H
317 # include <sys/socket.h>
318 #endif
319 ])
320 AC_CHECK_HEADERS(net/ppp_defs.h)
321 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
322 [#if HAVE_NET_PPP_DEFS_H
323 # include <net/ppp_defs.h>
324 #endif
325 ])
326 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
327 [#if HAVE_STDINT_H
328 # include <stdint.h>
329 #endif
330 #if HAVE_SYS_TYPES_H
331 # include <sys/types.h>
332 #endif
333 #if HAVE_SYS_SOCKET_H
334 # include <sys/socket.h>
335 #endif
336 #if HAVE_NET_IF_H
337 # include <net/if.h>
338 #endif
339 #if HAVE_NETINET_IN_H
340 # include <netinet/in.h>
341 #endif
342 ])
343
344 # For the multimeter plugin
345 have_termios_h="no"
346 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
347
348 #
349 # Checking for libraries
350 #
351 AC_CHECK_LIB(m, ext)
352
353 #
354 # Checks for typedefs, structures, and compiler characteristics.
355 #
356 AC_C_CONST
357 AC_TYPE_PID_T
358 AC_TYPE_SIZE_T
359 AC_TYPE_UID_T
360 AC_HEADER_TIME
361
362 #
363 # Checks for library functions.
364 #
365 AC_PROG_GCC_TRADITIONAL
366 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog)
367
368 AC_FUNC_STRERROR_R
369
370 AC_CHECK_FUNCS(getpwnam_r)
371 AC_CHECK_FUNCS(getgrnam_r)
372
373 socket_needs_socket="no"
374 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
375 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
376
377 nanosleep_needs_rt="no"
378 AC_CHECK_FUNCS(nanosleep, [], AC_CHECK_LIB(rt, nanosleep, [nanosleep_needs_rt="yes"], AC_MSG_ERROR(cannot find nanosleep)))
379 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
380
381 AC_CHECK_FUNCS(regcomp regerror regexec regfree)
382
383 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
384 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
385 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
386 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
387 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
388 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
389 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
390 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
391 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
392 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
393
394 # For load module
395 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
396
397 # Check for NAN
398 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
399 [
400  if test "x$withval" = "xno"; then
401          nan_type="none"
402  else if test "x$withval" = "xyes"; then
403          nan_type="zero"
404  else
405          nan_type="$withval"
406  fi; fi
407 ],
408 [nan_type="none"])
409 if test "x$nan_type" = "xnone"; then
410   AC_CACHE_CHECK([whether NAN is defined by default],
411     [have_nan_default],
412     AC_COMPILE_IFELSE(
413       AC_LANG_PROGRAM(
414       [[
415 #include <stdlib.h>
416 #include <math.h>
417 static float foo = NAN;
418       ]],
419       [[
420        if (isnan (foo))
421         return 0;
422        else
423         return 1;
424       ]]),
425       [have_nan_default="yes"],
426       [have_nan_default="no"]
427     )
428   )
429   if test "x$have_nan_default" = "xyes"
430   then
431     nan_type="default"
432   fi
433 fi
434 if test "x$nan_type" = "xnone"; then
435   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
436     [have_nan_isoc],
437     AC_COMPILE_IFELSE(
438       AC_LANG_PROGRAM(
439       [[
440 #include <stdlib.h>
441 #define __USE_ISOC99 1
442 #include <math.h>
443 static float foo = NAN;
444       ]],
445       [[
446        if (isnan (foo))
447         return 0;
448        else
449         return 1;
450       ]]),
451       [have_nan_isoc="yes"],
452       [have_nan_isoc="no"]
453     )
454   )
455   if test "x$have_nan_isoc" = "xyes"
456   then
457     nan_type="isoc99"
458   fi
459 fi
460 if test "x$nan_type" = "xnone"; then
461   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
462     [have_nan_zero],
463     AC_RUN_IFELSE(
464       AC_LANG_PROGRAM(
465       [[
466 #include <stdlib.h>
467 #include <math.h>
468 #ifdef NAN
469 # undef NAN
470 #endif
471 #define NAN (0.0 / 0.0)
472 #ifndef isnan
473 # define isnan(f) ((f) != (f))
474 #endif
475 static float foo = NAN;
476       ]],
477       [[
478        if (isnan (foo))
479         return 0;
480        else
481         return 1;
482       ]]),
483       [have_nan_zero="yes"],
484       [have_nan_zero="no"]
485     )
486   )
487   if test "x$have_nan_zero" = "xyes"
488   then
489     nan_type="zero"
490   fi
491 fi
492
493 if test "x$nan_type" = "xdefault"; then
494   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
495     [Define if NAN is defined by default and can initialize static variables.])
496 else if test "x$nan_type" = "xisoc99"; then
497   AC_DEFINE(NAN_STATIC_ISOC, 1,
498     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
499 else if test "x$nan_type" = "xzero"; then
500   AC_DEFINE(NAN_ZERO_ZERO, 1,
501     [Define if NAN can be defined as (0.0 / 0.0)])
502 else
503   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
504 fi; fi; fi
505
506 # For mount interface
507 #AC_CHECK_FUNCS(getfsent getvfsent)
508
509 have_getfsstat="no"
510 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
511 have_getvfsstat="no"
512 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
513 have_listmntent="no"
514 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
515
516 have_getmntent="no"
517 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
518 if test "x$have_getmntent" = "xno"; then
519         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
520 fi
521 if test "x$have_getmntent" = "xno"; then
522         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
523 fi
524 if test "x$have_getmntent" = "xno"; then
525         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
526 fi
527
528 if test "x$have_getmntent" = "xc"; then
529         AC_CACHE_CHECK([whether getmntent takes one argument],
530                 [have_one_getmntent],
531                 AC_COMPILE_IFELSE(
532                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
533 #include <mntent.h>
534 #include "$srcdir/src/utils_mount.h"]],
535                                 [[
536                                  FILE *fh;
537                                  struct mntent *me;
538                                  fh = setmntent ("/etc/mtab", "r");
539                                  me = getmntent (fh);
540                                 ]]
541                         ),
542                         [have_one_getmntent="yes"],
543                         [have_one_getmntent="no"]
544                 )
545         )
546         AC_CACHE_CHECK([whether getmntent takes two arguments],
547                 [have_two_getmntent],
548                 AC_COMPILE_IFELSE(
549                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
550 #include <sys/mnttab.h>
551 #include "$srcdir/src/utils_mount.h"]],
552                                 [[
553                                  FILE *fh;
554                                  struct mnttab mt;
555                                  int status;
556                                  fh = fopen ("/etc/mnttab", "r");
557                                  status = getmntent (fh, &mt);
558                                 ]]
559                         ),
560                         [have_two_getmntent="yes"],
561                         [have_two_getmntent="no"]
562                 )
563         )
564 fi
565
566 # Check for different versions of `getmntent' here..
567
568 if test "x$have_getmntent" = "xc"; then
569         if test "x$have_one_getmntent" = "xyes"; then
570                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
571                           [Define if the function getmntent exists and takes one argument.])
572         fi
573         if test "x$have_two_getmntent" = "xyes"; then
574                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
575                           [Define if the function getmntent exists and takes two arguments.])
576         fi
577 fi
578 if test "x$have_getmntent" = "xsun"; then
579         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
580                   [Define if the function getmntent exists. It's the version from libsun.])
581 fi
582 if test "x$have_getmntent" = "xseq"; then
583         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
584                   [Define if the function getmntent exists. It's the version from libseq.])
585 fi
586 if test "x$have_getmntent" = "xgen"; then
587         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
588                   [Define if the function getmntent exists. It's the version from libgen.])
589 fi
590
591 # Check for structures
592 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
593         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
594         [],
595         [
596         #include <sys/types.h>
597         #include <sys/socket.h>
598         #include <net/if.h>
599         ])
600 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
601         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
602         [],
603         [
604         #include <sys/types.h>
605         #include <sys/socket.h>
606         #include <linux/if.h>
607         #include <linux/netdevice.h>
608         ])
609
610 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
611 [#if HAVE_STDINT_H
612 # include <stdint.h>
613 #endif
614 #if HAVE_SYS_TYPES_H
615 # include <sys/types.h>
616 #endif
617 #if HAVE_NETINET_IN_SYSTM_H
618 # include <netinet/in_systm.h>
619 #endif
620 #if HAVE_NETINET_IN_H
621 # include <netinet/in.h>
622 #endif
623 #if HAVE_NETINET_IP_H
624 # include <netinet/ip.h>
625 #endif
626 #if HAVE_NETINET_UDP_H
627 # include <netinet/udp.h>
628 #endif
629 ])
630 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
631 [#if HAVE_STDINT_H
632 # include <stdint.h>
633 #endif
634 #if HAVE_SYS_TYPES_H
635 # include <sys/types.h>
636 #endif
637 #if HAVE_NETINET_IN_SYSTM_H
638 # include <netinet/in_systm.h>
639 #endif
640 #if HAVE_NETINET_IN_H
641 # include <netinet/in.h>
642 #endif
643 #if HAVE_NETINET_IP_H
644 # include <netinet/ip.h>
645 #endif
646 #if HAVE_NETINET_UDP_H
647 # include <netinet/udp.h>
648 #endif
649 ])
650
651 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
652         [],
653         [],
654         [
655 #if HAVE_KSTAT_H
656 # include <kstat.h>
657 #endif
658         ])
659
660 with_libresolv="yes"
661 AC_CHECK_LIB(resolv, res_search,
662 [
663         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
664 ],
665 [with_libresolv="no"])
666 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
667
668
669 m4_divert_once([HELP_WITH], [
670 collectd additional packages:])
671
672 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
673 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
674 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
675         then
676                 LDFLAGS="$LDFLAGS -L$withval/lib"
677                 CPPFLAGS="$CPPFLAGS -I$withval/include"
678                 with_rrdtool="yes"
679         fi
680 ], [with_rrdtool="yes"])
681 if test "x$with_rrdtool" = "xyes"
682 then
683         AC_CHECK_LIB(rrd, rrd_update,
684         [
685                 AC_DEFINE(HAVE_LIBRRD, 1, [Define to 1 if you have the rrd library (-lrrd).])
686         ],
687         [with_rrdtool="no (librrd not found)"], [-lm])
688 fi
689 if test "x$with_rrdtool" = "xyes"
690 then
691         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
692 fi
693 if test "x$with_rrdtool" = "xyes"
694 then
695         collect_rrdtool=1
696 else
697         collect_rrdtool=0
698 fi
699 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
700         [Wether or not to use rrdtool library])
701 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
702
703 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
704 [       if test "x$withval" != "xno" -a "x$withval" != "xyes"
705         then
706                 LDFLAGS="$LDFLAGS -L$withval/lib"
707                 CPPFLAGS="$CPPFLAGS -I$withval/include"
708                 with_libpthread="yes"
709         else
710                 if test "x$withval" = "xno"
711                 then
712                         with_libpthread="no (disabled)"
713                 fi
714         fi
715 ], [with_libpthread="yes"])
716 if test "x$with_libpthread" = "xyes"
717 then
718         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
719 fi
720 if test "x$with_libpthread" = "xyes"
721 then
722         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
723 fi
724 if test "x$with_libpthread" = "xyes"
725 then
726         collect_pthread=1
727 else
728         collect_pthread=0
729 fi
730 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
731         [Wether or not to use pthread (POSIX threads) library])
732 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
733
734 if test "x$ac_system" = "xSolaris"
735 then
736         with_kstat="yes"
737         with_devinfo="yes"
738 else
739         with_kstat="no (Solaris only)"
740         with_devinfo="no (Solaris only)"
741 fi
742
743 if test "x$with_kstat" = "xyes"
744 then
745         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
746 fi
747 if test "x$with_kstat" = "xyes"
748 then
749         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
750         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
751 fi
752 if test "x$with_kstat" = "xyes"
753 then
754         AC_DEFINE(HAVE_LIBKSTAT, 1,
755                   [Define to 1 if you have the 'kstat' library (-lkstat)])
756 fi
757 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
758 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
759
760 ### BEGIN of check for libcurl ###
761 with_curl_config="curl-config"
762 with_curl_cflags=""
763 with_curl_libs=""
764 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
765 [
766         if test "x$withval" = "xno"
767         then
768                 with_libcurl="no"
769         else if test "x$withval" = "xyes"
770         then
771                 with_libcurl="yes"
772         else
773                 if test -f "$withval" && test -x "$withval"
774                 then
775                         with_curl_config="$withval"
776                         with_libcurl="yes"
777                 else if test -x "$withval/bin/curl-config"
778                 then
779                         with_curl_config="$withval/bin/curl-config"
780                         with_libcurl="yes"
781                 fi; fi
782                 with_libcurl="yes"
783         fi; fi
784 ],
785 [
786         with_libcurl="yes"
787 ])
788 if test "x$with_libcurl" = "xyes"
789 then
790         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
791         curl_config_status=$?
792
793         if test $curl_config_status -ne 0
794         then
795                 with_libcurl="no ($with_curl_config failed)"
796         else
797                 SAVE_CFLAGS=$CFLAGS
798                 CFLAGS="$CFLAGS $with_curl_cflags"
799
800                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
801
802                 CFLAGS="$SAVE_CFLAGS"
803         fi
804 fi
805 if test "x$with_libcurl" = "xyes"
806 then
807         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
808         curl_config_status=$?
809
810         if test $curl_config_status -ne 0
811         then
812                 with_libcurl="no ($with_curl_config failed)"
813         else
814                 AC_CHECK_LIB(curl, curl_easy_init,
815                  [with_libcurl="yes"],
816                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
817                  [$with_curl_libs])
818         fi
819 fi
820 if test "x$with_libcurl" = "xyes"
821 then
822         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
823         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
824         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
825         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
826 fi
827 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
828 ### END of check for libcurl ###
829
830 with_libiokit="no"
831 collectd_libiokit=0
832 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
833 [
834         with_libiokit="yes"
835         collectd_libiokit=1
836 ], 
837 [
838         with_libiokit="no"
839         collectd_libiokit=0
840 ])
841 AC_DEFINE_UNQUOTED(COLLECT_LIBIOKIT, [$collect_libiokit], [Wether or not to use the IOKit library])
842 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
843
844 with_libstatgrab="yes"
845 with_libdevstat="no"
846 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
847 [
848         if test "x$withval" != "xno" -a "x$withval" != "xyes"
849         then
850                 LDFLAGS="$LDFLAGS -L$withval/lib"
851                 CPPFLAGS="$CPPFLAGS -I$withval/include"
852                 with_libstatgrab="yes"
853         fi
854 ],
855 [
856         if test "x$ac_system" == "xunknown"
857         then
858                 with_libstatgrab="yes"
859         else
860                 with_libstatgrab="no"
861         fi
862 ])
863 if test "x$with_libstatgrab" = "xyes"
864 then
865         AC_CHECK_LIB(statgrab, sg_init, [with_libstatgrab="yes"], [with_libstatgrab="no (libstatgrab not found)"])
866 fi
867 if test "x$with_libstatgrab" = "xyes"
868 then
869         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
870 fi
871 if test "x$with_libstatgrab" = "xyes"
872 then
873         AC_CHECK_LIB(devstat, getdevs, [with_libdevstat="yes"], [with_libdevstat="no"])
874 fi
875 if test "x$with_libstatgrab" = "xyes"
876 then
877         collect_libstatgrab=1
878 else
879         collect_libstatgrab=0
880 fi
881 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
882         [Wether or not to use statgrab library])
883 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
884 AM_CONDITIONAL(BUILD_WITH_LIBDEVSTAT,  test "x$with_libdevstat"  = "xyes")
885
886 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_libkvm="yes"], [with_libkvm="no"])
887 if test "x$with_libkvm" = "xyes"
888 then
889         AC_DEFINE(HAVE_LIBKVM, 1, [Define to 1 if you have the 'kvm' library (-lkvm)])
890 fi
891 AM_CONDITIONAL(BUILD_WITH_LIBKVM, test "x$with_libkvm" = "xyes")
892
893 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
894 [
895         if test "x$withval" != "xno" && test "x$withval" != "xyes"
896         then
897                 LDFLAGS="$LDFLAGS -L$withval/lib"
898                 CPPFLAGS="$CPPFLAGS -I$withval/include"
899                 with_lm_sensors="yes"
900         fi
901 ],
902 [
903         if test "x$ac_system" = "xLinux"
904         then
905                 with_lm_sensors="yes"
906         else
907                 with_lm_sensors="no (Linux only library)"
908         fi
909 ])
910 if test "x$with_lm_sensors" = "xyes"
911 then
912         AC_CHECK_LIB(sensors, sensors_init,
913         [
914                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
915         ],
916         [with_lm_sensors="no (libsensors not found)"])
917 fi
918 if test "x$with_lm_sensors" = "xyes"
919 then
920         AC_CHECK_HEADERS(sensors/sensors.h,
921         [
922                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
923         ],
924         [with_lm_sensors="no (sensors/sensors.h not found)"])
925 fi
926 if test "x$with_lm_sensors" = "xyes"
927 then
928         collect_lm_sensors=1
929 else
930         collect_lm_sensors=0
931 fi
932 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
933         [Wether or not to use sensors library])
934 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
935
936 with_mysql_config="mysql_config"
937 with_mysql_cflags=""
938 with_mysql_libs=""
939 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
940 [
941         if test "x$withval" = "xno"
942         then
943                 with_libmysql="no"
944         else if test "x$withval" = "xyes"
945         then
946                 with_libmysql="yes"
947         else
948                 if test -f "$withval" && test -x "$withval";
949                 then
950                         with_mysql_config="$withval"
951                 else if test -x "$withval/bin/mysql_config"
952                 then
953                         with_mysql_config="$withval/bin/mysql_config"
954                 fi; fi
955                 with_libmysql="yes"
956         fi; fi
957 ],
958 [
959         with_libmysql="yes"
960 ])
961 if test "x$with_libmysql" = "xyes"
962 then
963         with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
964         mysql_config_status=$?
965
966         if test $mysql_config_status -ne 0
967         then
968                 with_libmysql="no"
969         else
970                 SAVE_CFLAGS=$CFLAGS
971                 CFLAGS="$CFLAGS $with_mysql_cflags"
972
973                 AC_CHECK_HEADERS(mysql/mysql.h, [], [with_libmysql="no (mysql/mysql.h not found)"], [])
974
975                 CFLAGS="$SAVE_CFLAGS"
976         fi
977 fi
978 if test "x$with_libmysql" = "xyes"
979 then
980         with_mysql_libs=`$with_mysql_config --libs 2>/dev/null`
981         mysql_config_status=$?
982
983         if test $mysql_config_status -ne 0
984         then
985                 with_libmysql="no"
986         else
987                 AC_CHECK_LIB(mysqlclient, mysql_init,
988                  [with_libmysql="yes"],
989                  [with_libmysql="no (symbol 'mysql_init' not found)"],
990                  [$with_mysql_libs])
991         fi
992 fi
993 if test "x$with_libmysql" = "xyes"
994 then
995         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
996         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
997         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
998         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
999 fi
1000 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
1001
1002 with_own_liboconfig="no"
1003 liboconfig_LDFLAGS="$LDFLAGS"
1004 liboconfig_CPPFLAGS="$CPPFLAGS"
1005 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
1006 [
1007         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1008         then
1009                 if test -d "$withval/lib"
1010                 then
1011                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
1012                 fi
1013                 if test -d "$withval/include"
1014                 then
1015                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
1016                 fi
1017         fi
1018         if test "x$withval" = "xno"
1019         then
1020                 AC_MSG_ERROR("liboconfig is required")
1021         fi
1022 ],
1023 [
1024         with_liboconfig="yes"
1025 ])
1026
1027 save_LDFLAGS="$LDFLAGS"
1028 save_CPPFLAGS="$CPPFLAGS"
1029 LDFLAGS="$liboconfig_LDFLAGS"
1030 CPPFLAGS="$liboconfig_CPPFLAGS"
1031 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
1032 [
1033         with_liboconfig="yes"
1034         with_own_liboconfig="no"
1035 ],
1036 [
1037         with_liboconfig="yes"
1038         with_own_liboconfig="yes"
1039         LDFLAGS="$save_LDFLAGS"
1040         CPPFLAGS="$save_CPPFLAGS"
1041 ])
1042
1043 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
1044 if test "x$with_own_liboconfig" = "xyes"
1045 then
1046         with_liboconfig="yes (shipped version)"
1047 fi
1048
1049 #with_liboping="yes"
1050 with_own_liboping="no"
1051 liboping_LDFLAGS="$LDFLAGS"
1052 liboping_CPPFLAGS="$CPPFLAGS"
1053 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
1054 [
1055         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1056         then
1057                 if test -d "$withval/lib"
1058                 then
1059                         liboping_LDFLAGS="$LDFLAGS -L$withval/lib"
1060                 fi
1061                 if test -d "$withval/include"
1062                 then
1063                         liboping_CPPFLAGS="$CPPFLAGS -I$withval/include"
1064                 fi
1065         fi
1066         if test "x$withval" = "xno"
1067         then
1068                 with_liboping="no"
1069                 with_own_liboping="no"
1070         fi
1071 ],
1072 [
1073         #753
1074         with_liboping="yes"
1075 ])
1076
1077 if test "x$with_liboping" = "xyes"
1078 then
1079         save_LDFLAGS="$LDFLAGS"
1080         save_CPPFLAGS="$CPPFLAGS"
1081         LDFLAGS="$liboping_LDFLAGS"
1082         CPPFLAGS="$liboping_CPPFLAGS"
1083         AC_CHECK_LIB(oping, ping_construct,
1084         [
1085                 with_liboping="yes"
1086                 with_own_liboping="no"
1087         ],
1088         [
1089                 with_liboping="yes"
1090                 with_own_liboping="yes"
1091                 LDFLAGS="$save_LDFLAGS"
1092                 CPPFLAGS="$save_CPPFLAGS"
1093         ])
1094 fi
1095 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
1096 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOPING, test "x$with_own_liboping" = "xyes")
1097
1098 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
1099 [
1100         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1101         then
1102                 LDFLAGS="$LDFLAGS -L$withval/lib"
1103                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1104                 with_libpcap="yes"
1105         fi
1106 ],
1107 [
1108         with_libpcap="yes"
1109 ])
1110 if test "x$with_libpcap" = "xyes"
1111 then
1112         AC_CHECK_LIB(pcap, pcap_open_live,
1113         [
1114                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
1115         ], [with_libpcap="no (libpcap not found)"])
1116 fi
1117 if test "x$with_libpcap" = "xyes"
1118 then
1119         AC_CHECK_HEADERS(pcap.h,
1120         [
1121                 AC_DEFINE(HAVE_PCAP_H, 1, [Define to 1 if you have the <pcap.h> header file.])
1122         ], [with_libpcap="no (pcap.h not found)"])
1123 fi
1124 if test "x$with_libpcap" = "xyes"
1125 then
1126         collect_libpcap=1
1127 else
1128         collect_libpcap=0
1129 fi
1130 AC_DEFINE_UNQUOTED(COLLECT_LIBPCAP, [$collect_libpcap],
1131         [Wether or not to use the pcap library])
1132 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
1133
1134 perl_interpreter="perl"
1135 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
1136 [
1137         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1138         then
1139                 LDFLAGS="$LDFLAGS -L$withval/lib"
1140                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1141                 perl_interpreter="$withval/bin/perl"
1142                 with_libperl="yes"
1143         fi
1144 ],
1145 [
1146         with_libperl="yes"
1147 ])
1148 if test "x$with_libperl" = "xyes"
1149 then
1150   SAVE_CFLAGS=$CFLAGS
1151   SAVE_LDFLAGS=$LDFLAGS
1152   PERL_CFLAGS=`$perl_interpreter -MExtUtils::Embed -e ccopts`
1153   PERL_LDFLAGS=`$perl_interpreter -MExtUtils::Embed -e ldopts`
1154   CFLAGS="$CFLAGS $PERL_CFLAGS"
1155   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
1156
1157   AC_CACHE_CHECK([for libperl],
1158     [have_libperl],
1159     AC_LINK_IFELSE(
1160       AC_LANG_PROGRAM(
1161       [[
1162 #include <EXTERN.h>
1163 #include <perl.h>
1164 #include <XSUB.h>
1165       ]],
1166       [[
1167        PerlInterpreter *perl = NULL;
1168        Perl_load_module (perl, PERL_LOADMOD_NOIMPORT,
1169                          newSVpv ("Collectd::Plugin::FooBar", 24),
1170                          Nullsv);
1171       ]]),
1172       [have_libperl="yes"],
1173       [have_libperl="no"]
1174     )
1175   )
1176
1177   if test "x$have_libperl" = "xyes"
1178   then
1179           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
1180           AC_SUBST(PERL_CFLAGS)
1181           AC_SUBST(PERL_LDFLAGS)
1182   else
1183           with_libperl="no"
1184   fi
1185
1186   CFLAGS=$SAVE_CFLAGS
1187   LDFLAGS=$SAVE_LDFLAGS
1188 fi
1189 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
1190
1191 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1192 [
1193         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1194         then
1195                 LDFLAGS="$LDFLAGS -L$withval/lib"
1196                 CPPFLAGS="$CPPFLAGS -I$withval/include"
1197                 with_libiptc="yes"
1198         fi
1199 ],
1200 [
1201         if test "x$ac_system" = "xLinux"
1202         then
1203                 with_libiptc="yes"
1204         else
1205                 with_libiptc="no (Linux only)"
1206         fi
1207 ])
1208 if test "x$with_libiptc" = "xyes"
1209 then
1210         AC_CHECK_LIB(iptc, iptc_init,
1211         [
1212                 AC_DEFINE(HAVE_LIBIPTC, 1, [Define to 1 if you have the iptc library (-liptc).])
1213         ], [with_libiptc="no (libiptc not found)"])
1214 fi
1215 if test "x$with_libiptc" = "xyes"
1216 then
1217         AC_CHECK_HEADERS(libiptc/libiptc.h,
1218         [
1219                 AC_DEFINE(HAVE_LIBIPTC_LIBIPTC_H, 1, [Define to 1 if you have the <libiptc/libiptc.h> header file.])
1220         ], [with_libiptc="no (libiptc/libiptc.h not found)"])
1221 fi
1222 if test "x$with_libiptc" = "xyes"
1223 then
1224         collect_libiptc=1
1225 else
1226         collect_libiptc=0
1227 fi
1228 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
1229
1230 with_snmp_config="net-snmp-config"
1231 with_snmp_cflags=""
1232 with_snmp_libs=""
1233 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
1234 [
1235         if test "x$withval" = "xno"
1236         then
1237                 with_libnetsnmp="no"
1238         else if "x$withval" = "xyes"
1239         then
1240                 with_libnetsnmp="yes"
1241         else
1242                 if test -x "$withval"
1243                 then
1244                         with_snmp_config="$withval"
1245                         with_libnetsnmp="yes"
1246                 else
1247                         with_snmp_config="$withval/bin/net-snmp-config"
1248                         with_libnetsnmp="yes"
1249                 fi
1250         fi; fi
1251 ],
1252 [with_libnetsnmp="yes"])
1253 if test "x$with_libnetsnmp" = "xyes"
1254 then
1255         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
1256         snmp_config_status=$?
1257
1258         if test $snmp_config_status -ne 0
1259         then
1260                 with_libnetsnmp="no ($with_snmp_config failed)"
1261         else
1262                 SAVE_CFLAGS=$CFLAGS
1263                 CFLAGS="$CFLAGS $with_snmp_cflags"
1264                 
1265                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
1266
1267                 CFLAGS="$SAVE_CFLAGS"
1268         fi
1269 fi
1270 if test "x$with_libnetsnmp" = "xyes"
1271 then
1272         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
1273         snmp_config_status=$?
1274
1275         if test $snmp_config_status -ne 0
1276         then
1277                 with_libnetsnmp="no ($with_snmp_config failed)"
1278         else
1279                 AC_CHECK_LIB(netsnmp, init_snmp,
1280                 [with_libnetsnmp="yes"],
1281                 [with_libnetsnmp="no (libnetsnmp not found)"],
1282                 [$with_snmp_libs])
1283         fi
1284 fi
1285 if test "x$with_libnetsnmp" = "xyes"
1286 then
1287         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
1288         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
1289         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
1290         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
1291 fi
1292 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
1293
1294 with_upsclient_config="libupsclient-config"
1295 with_upsclient_cflags=""
1296 with_upsclient_libs=""
1297 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to libupsclient.])],
1298 [
1299         if test "x$withval" = "xno"
1300         then
1301                 with_libupsclient="no"
1302         else
1303                 if test "x$withval" != "xyes"
1304                 then
1305                         if test -f "$withval" && test -x "$withval";
1306                         then
1307                                 with_upsclient_config="$withval"
1308                         else
1309                                 with_upsclient_config="$withval/bin/libupsclient-config"
1310                         fi
1311                 fi
1312                 with_libupsclient="yes"
1313         fi
1314 ],
1315 [
1316         with_libupsclient="yes"
1317 ])
1318 if test "x$with_libupsclient" = "xyes"
1319 then
1320         with_upsclient_cflags=`$with_upsclient_config --cflags 2>/dev/null`
1321         upsclient_config_status=$?
1322
1323         if test $upsclient_config_status -ne 0
1324         then
1325                 with_libupsclient="no ($with_upsclient_config failed)"
1326         fi
1327 fi
1328 if test "x$with_libupsclient" = "xyes"
1329 then
1330         SAVE_CFLAGS="$CFLAGS"
1331         CFLAGS="$CFLAGS $with_upsclient_cflags"
1332
1333         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
1334
1335         CFLAGS="$SAVE_CFLAGS"
1336 fi
1337 if test "x$with_libupsclient" = "xyes"
1338 then
1339         with_upsclient_libs=`$with_upsclient_config --libs 2>/dev/null`
1340         upsclient_config_status=$?
1341
1342         if test $upsclient_config_status -ne 0
1343         then
1344                 with_libupsclient="no ($with_upsclient_config failed)"
1345         fi
1346 fi
1347 if test "x$with_libupsclient" = "xyes"
1348 then
1349         AC_CHECK_LIB(upsclient, upscli_connect,
1350         [
1351                 BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_upsclient_cflags"
1352                 BUILD_WITH_LIBUPSCLIENT_LIBS="$with_upsclient_libs"
1353                 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
1354                 AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
1355         ],
1356         [
1357                 with_libupsclient="no (symbol 'upscli_connect' not found)"
1358         ], [$with_upsclient_libs])
1359 fi
1360 if test "x$with_libupsclient" = "xyes"
1361 then
1362         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [], 
1363 [#include <stdlib.h>
1364 #include <stdio.h>
1365 #include <upsclient.h>])
1366 fi
1367 AM_CONDITIONAL(BUILD_WITH_LIBUPSCLIENT, test "x$with_libupsclient" = "xyes")
1368
1369 ### BEGIN of check for libxmms ###
1370 with_xmms_config="xmms-config"
1371 with_xmms_cflags=""
1372 with_xmms_libs=""
1373 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
1374 [
1375         if test "x$withval" != "xno" -a "x$withval" != "xyes"
1376         then
1377                 if test -f "$withval" && test -x "$withval";
1378                 then
1379                         with_xmms_config="$withval"
1380                 else if test -x "$withval/bin/xmms-config"
1381                 then
1382                         with_xmms_config="$withval/bin/xmms-config"
1383                 fi; fi
1384                 with_libxmms="yes"
1385         else if test "x$withval" = "xno"
1386         then
1387                 with_libxmms="no"
1388         else
1389                 with_libxmms="yes"
1390         fi; fi
1391 ],
1392 [
1393         with_libxmms="yes"
1394 ])
1395 if test "x$with_libxmms" = "xyes"
1396 then
1397         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
1398         xmms_config_status=$?
1399
1400         if test $xmms_config_status -ne 0
1401         then
1402                 with_libxmms="no"
1403         fi
1404 fi
1405 if test "x$with_libxmms" = "xyes"
1406 then
1407         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
1408         xmms_config_status=$?
1409
1410         if test $xmms_config_status -ne 0
1411         then
1412                 with_libxmms="no"
1413         fi
1414 fi
1415 if test "x$with_libxmms" = "xyes"
1416 then
1417         AC_CHECK_LIB(xmms, xmms_remote_get_info,
1418         [
1419                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
1420                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
1421                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
1422                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
1423         ],
1424         [
1425                 with_libxmms="no"
1426         ],
1427         [$with_xmms_libs])
1428 fi
1429 with_libxmms_numeric=0
1430 if test "x$with_libxmms" = "xyes"
1431 then
1432         with_libxmms_numeric=1
1433 fi
1434 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
1435 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
1436 ### END of check for libxmms ###
1437
1438 with_libnetlink_cflags=""
1439 with_libnetlink_libs="-lnetlink"
1440 AC_ARG_WITH(libnetlink, [AS_HELP_STRING([--with-libnetlink@<:@=PREFIX@:>@], [Path to libnetlink.])],
1441 [
1442  echo "libnetlink: withval = $withval"
1443  if test "x$withval" = "xyes"
1444  then
1445          with_libnetlink="yes"
1446  else if test "x$withval" = "xno"
1447  then
1448          with_libnetlink="no"
1449  else
1450          if test -d "$withval/include"
1451          then
1452                  with_libnetlink_cflags="-I$withval/include"
1453                  with_libnetlink_libs="-L$withval/lib -lnetlink"
1454                  with_libnetlink="yes"
1455          else
1456                  AC_MSG_ERROR("no such directory: $withval/include")
1457          fi
1458  fi; fi
1459 ],
1460 [
1461  if test "x$ac_system" = "xLinux"
1462  then
1463          with_libnetlink="yes"
1464  else
1465          with_libnetlink="no (Linux only library)"
1466  fi
1467 ])
1468 if test "x$with_libnetlink" = "xyes"
1469 then
1470         SAVE_CFLAGS=$CFLAGS
1471         CFLAGS="$CFLAGS $with_libnetlink_cflags"
1472
1473         with_libnetlink="no (libnetlink.h not found)"
1474
1475         AC_CHECK_HEADERS(libnetlink.h iproute/libnetlink.h linux/libnetlink.h,
1476         [
1477          with_libnetlink="yes"
1478          break
1479         ], [],
1480 [#include <stdio.h>
1481 #include <sys/types.h>
1482 #include <asm/types.h>
1483 #include <sys/socket.h>
1484 #include <linux/netlink.h>
1485 #include <linux/rtnetlink.h>])
1486         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
1487 [#include <stdio.h>
1488 #include <sys/types.h>
1489 #include <asm/types.h>
1490 #include <sys/socket.h>])
1491
1492         AC_COMPILE_IFELSE(
1493 [#include <stdio.h>
1494 #include <sys/types.h>
1495 #include <asm/types.h>
1496 #include <sys/socket.h>
1497 #include <linux/netlink.h>
1498 #include <linux/rtnetlink.h>
1499
1500 int main (void)
1501 {
1502         int retval = TCA_STATS2;
1503         return (retval);
1504 }],
1505         [AC_DEFINE([HAVE_TCA_STATS2], 1, [True if the enum-member TCA_STATS2 exists])]
1506         []);
1507
1508         AC_COMPILE_IFELSE(
1509 [#include <stdio.h>
1510 #include <sys/types.h>
1511 #include <asm/types.h>
1512 #include <sys/socket.h>
1513 #include <linux/netlink.h>
1514 #include <linux/rtnetlink.h>
1515
1516 int main (void)
1517 {
1518         int retval = TCA_STATS;
1519         return (retval);
1520 }],
1521         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])]
1522         []);
1523
1524         CFLAGS="$SAVE_CFLAGS"
1525 fi
1526 if test "x$with_libnetlink" = "xyes"
1527 then
1528         AC_CHECK_LIB(netlink, rtnl_open,
1529                      [with_libnetlink="yes"],
1530                      [with_libnetlink="no (symbol 'rtnl_open' not found)"],
1531                      [$with_libnetlink_libs])
1532 fi
1533 if test "x$with_libnetlink" = "xyes"
1534 then
1535         BUILD_WITH_LIBNETLINK_CFLAGS="$with_libnetlink_cflags"
1536         BUILD_WITH_LIBNETLINK_LIBS="$with_libnetlink_libs"
1537         AC_SUBST(BUILD_WITH_LIBNETLINK_CFLAGS)
1538         AC_SUBST(BUILD_WITH_LIBNETLINK_LIBS)
1539 fi
1540 AM_CONDITIONAL(BUILD_WITH_LIBNETLINK, test "x$with_libnetlink" = "xyes")
1541
1542 # Check for enabled/disabled features
1543 #
1544
1545 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
1546 # ------------------------------------------------------------
1547 dnl
1548 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
1549 dnl
1550 AC_DEFUN(
1551         [AC_COLLECTD],
1552         [
1553         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
1554         m4_if(
1555                 [$2],
1556                 [enable],
1557                 [dnl
1558                 m4_define([EnDis],[disabled])dnl
1559                 m4_define([YesNo],[no])dnl
1560                 ],dnl
1561                 [m4_if(
1562                         [$2],
1563                         [disable],
1564                         [dnl
1565                         m4_define([EnDis],[enabled])dnl
1566                         m4_define([YesNo],[yes])dnl
1567                         ],
1568                         [dnl
1569                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
1570                         ]dnl
1571                 )]dnl
1572         )dnl
1573         m4_if([$3], [feature], [],
1574                 [m4_if(
1575                         [$3], [module], [],
1576                         [dnl
1577                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
1578                         ]dnl
1579                 )]dnl
1580         )dnl
1581         AC_ARG_ENABLE(
1582                 [$1],
1583                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
1584                 [],
1585                 enable_$1='[YesNo]'dnl
1586         )# AC_ARG_ENABLE
1587 if test "x$enable_$1" = "xno"
1588 then
1589         collectd_$1=0
1590 else
1591         if test "x$enable_$1" = "xyes"
1592         then
1593                 collectd_$1=1
1594         else
1595                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
1596                 collectd_$1=1
1597                 enable_$1='yes'
1598         fi
1599 fi
1600         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
1601         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
1602         ]dnl
1603 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
1604
1605 # AC_PLUGIN(name, default, info)
1606 # ------------------------------------------------------------
1607 dnl
1608 AC_DEFUN(
1609   [AC_PLUGIN],
1610   [
1611     enable_plugin="no"
1612     AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
1613     [
1614      if test "x$enableval" = "xyes"
1615      then
1616              enable_plugin="yes"
1617      else
1618              enable_plugin="no"
1619      fi
1620     ],
1621     [
1622      if test "x$2" = "xyes"
1623      then
1624              enable_plugin="yes"
1625      else
1626              enable_plugin="no"
1627      fi
1628     ])
1629     if test "x$enable_plugin" = "xyes"
1630     then
1631             AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
1632     fi
1633     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
1634     enable_$1="$enable_plugin"
1635   ]
1636 )# AC_PLUGIN(name, default, info)
1637
1638 m4_divert_once([HELP_ENABLE], [
1639 collectd features:])
1640 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
1641 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
1642 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
1643 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
1644
1645 plugin_battery="no"
1646 plugin_cpu="no"
1647 plugin_cpufreq="no"
1648 plugin_df="no"
1649 plugin_disk="no"
1650 plugin_entropy="no"
1651 plugin_interface="no"
1652 plugin_irq="no"
1653 plugin_load="no"
1654 plugin_memory="no"
1655 plugin_multimeter="no"
1656 plugin_nfs="no"
1657 plugin_processes="no"
1658 plugin_serial="no"
1659 plugin_swap="no"
1660 plugin_tape="no"
1661 plugin_users="no"
1662 plugin_vserver="no"
1663 plugin_wireless="no"
1664
1665 # Linux
1666 if test "x$ac_system" = "xLinux"
1667 then
1668         plugin_battery="yes"
1669         plugin_cpu="yes"
1670         plugin_cpufreq="yes"
1671         plugin_disk="yes"
1672         plugin_entropy="yes"
1673         plugin_interface="yes"
1674         plugin_irq="yes"
1675         plugin_load="yes"
1676         plugin_memory="yes"
1677         plugin_nfs="yes"
1678         plugin_processes="yes"
1679         plugin_serial="yes"
1680         plugin_swap="yes"
1681         plugin_vserver="yes"
1682         plugin_wireless="yes"
1683 fi
1684
1685 # Mac OS X devices
1686 if test "x$with_libiokit" = "xyes"
1687 then
1688         plugin_battery="yes"
1689         plugin_disk="yes"
1690 fi
1691
1692 # Solaris
1693 if test "x$with_devinfo$with_kstat" = "xyesyes"
1694 then
1695         plugin_cpu="yes"
1696         plugin_disk="yes"
1697         plugin_interface="yes"
1698         plugin_memory="yes"
1699         plugin_swap="yes"
1700         plugin_tape="yes"
1701 fi
1702
1703 # libstatgrab
1704 if test "x$with_libstatgrab" = "xyes"
1705 then
1706         plugin_interface="yes"
1707         plugin_load="yes"
1708         plugin_memory="yes"
1709         plugin_swap="yes"
1710 fi
1711
1712 if test "x$have_processor_info" = "xyes"
1713 then
1714         plugin_cpu="yes"
1715 fi
1716 if test "x$have_sysctlbyname" = "xyes"
1717 then
1718         plugin_cpu="yes"
1719         plugin_memory="yes"
1720 fi
1721
1722 if test "x$have_statfs" = "xyes"
1723 then
1724         plugin_df="yes"
1725 fi
1726 if test "x$have_statvfs" = "xyes"
1727 then
1728         plugin_df="yes"
1729 fi
1730
1731 if test "x$have_getifaddrs" = "xyes"
1732 then
1733         plugin_interface="yes"
1734 fi
1735
1736 if test "x$have_getloadavg" = "xyes"
1737 then
1738         plugin_load="yes"
1739 fi
1740
1741 # Mac OS X memory interface
1742 if test "x$have_host_statistics" = "xyes"
1743 then
1744         plugin_memory="yes"
1745 fi
1746
1747 if test "x$have_termios_h" = "xyes"
1748 then
1749         plugin_multimeter="yes"
1750 fi
1751
1752 if test "x$have_thread_info" = "xyes"
1753 then
1754         plugin_processes="yes"
1755 fi
1756
1757 if test "x$with_libkvm" = "xyes"
1758 then
1759         plugin_swap="yes"
1760 fi
1761
1762 if test "x$have_getutent" = "xyes"
1763 then
1764         plugin_users="yes"
1765 fi
1766 if test "x$have_getutxent" = "xyes"
1767 then
1768         plugin_users="yes"
1769 fi
1770
1771 # FIXME: sysctl for swap plugin
1772
1773 m4_divert_once([HELP_ENABLE], [
1774 collectd plugins:])
1775
1776 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
1777 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
1778 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
1779 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
1780 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
1781 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
1782 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
1783 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
1784 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
1785 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
1786 AC_PLUGIN([email],       [yes],                [EMail statistics])
1787 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
1788 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
1789 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
1790 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
1791 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
1792 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
1793 AC_PLUGIN([load],        [$plugin_load],       [System load])
1794 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
1795 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
1796 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
1797 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
1798 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
1799 AC_PLUGIN([netlink],     [$with_libnetlink],   [Enhanced Linux network statistics])
1800 AC_PLUGIN([network],     [yes],                [Network communication plugin])
1801 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
1802 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
1803 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
1804 AC_PLUGIN([perl],        [$with_libperl],      [Embed a Perl interpreter])
1805 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
1806 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
1807 AC_PLUGIN([rrdtool],     [$with_rrdtool],      [RRDTool output plugin])
1808 AC_PLUGIN([sensors],     [$with_lm_sensors],   [lm_sensors statistics])
1809 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
1810 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
1811 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
1812 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
1813 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
1814 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
1815 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
1816 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
1817 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
1818 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
1819
1820 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/liboconfig/Makefile src/liboping/Makefile)
1821
1822 if test "x$with_liboping" = "xyes" -a "x$with_own_liboping" = "xyes"
1823 then
1824         with_liboping="yes (shipped version)"
1825 fi
1826
1827 if test "x$with_libperl" = "xyes"
1828 then
1829         with_libperl="yes (version `perl -MConfig -e 'print $Config{version};'`)"
1830 else
1831         enable_perl="no (needs libperl)"
1832 fi
1833
1834 cat <<EOF;
1835
1836 Configuration:
1837   Libraries:
1838     libcurl . . . . . . $with_libcurl
1839     libiokit  . . . . . $with_libiokit
1840     libiptc . . . . . . $with_libiptc
1841     libkstat  . . . . . $with_kstat
1842     libkvm  . . . . . . $with_libkvm
1843     libmysql  . . . . . $with_libmysql
1844     libnetlink  . . . . $with_libnetlink
1845     libnetsnmp  . . . . $with_libnetsnmp
1846     liboconfig  . . . . $with_liboconfig
1847     liboping  . . . . . $with_liboping
1848     libpcap . . . . . . $with_libpcap
1849     libperl . . . . . . $with_libperl
1850     libpthread  . . . . $with_libpthread
1851     librrd  . . . . . . $with_rrdtool
1852     libsensors  . . . . $with_lm_sensors
1853     libstatgrab . . . . $with_libstatgrab
1854     libupsclient  . . . $with_libupsclient
1855     libxmms . . . . . . $with_libxmms
1856
1857   Features:
1858     daemon mode . . . . $enable_daemon
1859     debug . . . . . . . $enable_debug
1860
1861   Modules:
1862     apache  . . . . . . $enable_apache
1863     apcups  . . . . . . $enable_apcups
1864     apple_sensors . . . $enable_apple_sensors
1865     battery . . . . . . $enable_battery
1866     cpu . . . . . . . . $enable_cpu
1867     cpufreq . . . . . . $enable_cpufreq
1868     csv . . . . . . . . $enable_csv
1869     df  . . . . . . . . $enable_df
1870     disk  . . . . . . . $enable_disk
1871     dns . . . . . . . . $enable_dns
1872     email . . . . . . . $enable_email
1873     entropy . . . . . . $enable_entropy
1874     exec  . . . . . . . $enable_exec
1875     hddtemp . . . . . . $enable_hddtemp
1876     interface . . . . . $enable_interface
1877     iptables  . . . . . $enable_iptables
1878     irq . . . . . . . . $enable_irq
1879     load  . . . . . . . $enable_load
1880     logfile . . . . . . $enable_logfile
1881     mbmon . . . . . . . $enable_mbmon
1882     memory  . . . . . . $enable_memory
1883     multimeter  . . . . $enable_multimeter
1884     mysql . . . . . . . $enable_mysql
1885     netlink . . . . . . $enable_netlink
1886     network . . . . . . $enable_network
1887     nfs . . . . . . . . $enable_nfs
1888     ntpd  . . . . . . . $enable_ntpd
1889     nut . . . . . . . . $enable_nut
1890     perl  . . . . . . . $enable_perl
1891     ping  . . . . . . . $enable_ping
1892     processes . . . . . $enable_processes
1893     sensors . . . . . . $enable_sensors
1894     serial  . . . . . . $enable_serial
1895     snmp  . . . . . . . $enable_snmp
1896     swap  . . . . . . . $enable_swap
1897     syslog  . . . . . . $enable_syslog
1898     tape  . . . . . . . $enable_tape
1899     unixsock  . . . . . $enable_unixsock
1900     users . . . . . . . $enable_users
1901     vserver . . . . . . $enable_vserver
1902     wireless  . . . . . $enable_wireless
1903     xmms  . . . . . . . $enable_xmms
1904
1905 EOF