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