vmware plugin: Small refactorings and avoid dispatching after error.
[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 AC_CONFIG_AUX_DIR([libltdl/config])
6
7 m4_ifdef([LT_PACKAGE_VERSION],
8         # libtool >= 2.2
9         [
10          LT_CONFIG_LTDL_DIR([libltdl])
11          LT_INIT([dlopen])
12          LTDL_INIT([convenience])
13          AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.])
14         ]
15 ,
16         # libtool <= 1.5
17         [
18          AC_LIBLTDL_CONVENIENCE
19          AC_SUBST(LTDLINCL)
20          AC_SUBST(LIBLTDL)
21          AC_LIBTOOL_DLOPEN
22          AC_CONFIG_SUBDIRS(libltdl)
23          AC_DEFINE(LIBTOOL_VERSION, 1, [Define to used libtool version.])
24         ]
25 )
26
27 AM_INIT_AUTOMAKE([tar-pax dist-bzip2])
28 AC_LANG(C)
29
30 AC_PREFIX_DEFAULT("/opt/collectd")
31
32 AC_SYS_LARGEFILE
33
34 #
35 # Checks for programs.
36 #
37 AC_PROG_CC
38 AC_PROG_CPP
39 AC_PROG_INSTALL
40 AC_PROG_LN_S
41 AC_PROG_MAKE_SET
42 AM_PROG_CC_C_O
43 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
44
45 AC_DISABLE_STATIC
46 AC_PROG_LIBTOOL
47 AC_PROG_LEX
48 AC_PROG_YACC
49 PKG_PROG_PKG_CONFIG
50
51 AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no])
52 AC_CHECK_HEADERS([google/protobuf-c/protobuf-c.h],
53                  [have_protobuf_c_h="yes"],
54                  [have_protobuf_c_h="no"])
55 if test "x$have_protoc_c" = "xyes" && test "x$have_protobuf_c_h" != "xyes"
56 then
57         have_protoc_c="no (unable to find <google/protobuf-c/protobuf-c.h>)"
58 fi
59 AM_CONDITIONAL(HAVE_PROTOC_C, test "x$have_protoc_c" = "xyes")
60
61 AC_MSG_CHECKING([for kernel type ($host_os)])
62 case $host_os in
63         *linux*)
64         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
65         ac_system="Linux"
66         ;;
67         *solaris*)
68         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
69         ac_system="Solaris"
70         ;;
71         *darwin*)
72         ac_system="Darwin"
73         ;;
74         *openbsd*)
75         ac_system="OpenBSD"
76         ;;
77         *aix*)
78         AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel])
79         ac_system="AIX"
80         ;;
81         *)
82         ac_system="unknown"
83 esac
84 AC_MSG_RESULT([$ac_system])
85
86 if test "x$ac_system" = "xLinux"
87 then
88         AC_ARG_VAR([KERNEL_DIR], [path to Linux kernel sources])
89         if test -z "$KERNEL_DIR"
90         then
91                 KERNEL_DIR="/lib/modules/`uname -r`/source"
92         fi
93
94         KERNEL_CFLAGS="-I$KERNEL_DIR/include"
95         AC_SUBST(KERNEL_CFLAGS)
96 fi
97
98 if test "x$ac_system" = "xSolaris"
99 then
100         AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Define to enforce POSIX thread semantics under Solaris.])
101         AC_DEFINE(_REENTRANT,               1, [Define to enable reentrancy interfaces.])
102 fi
103 if test "x$ac_system" = "xAIX"
104 then
105         AC_DEFINE(_THREAD_SAFE_ERRNO, 1, [Define to use the thread-safe version of errno under AIX.])
106 fi
107
108 # Where to install .pc files.
109 pkgconfigdir="${libdir}/pkgconfig"
110 AC_SUBST(pkgconfigdir)
111
112 # Check for standards compliance mode
113 AC_ARG_ENABLE(standards,
114               AS_HELP_STRING([--enable-standards], [Enable standards compliance mode]),
115               [enable_standards="$enableval"],
116               [enable_standards="no"])
117 if test "x$enable_standards" = "xyes"
118 then
119         AC_DEFINE(_ISOC99_SOURCE,        1, [Define to enforce ISO C99 compliance.])
120         AC_DEFINE(_POSIX_C_SOURCE, 200809L, [Define to enforce POSIX.1-2008 compliance.])
121         AC_DEFINE(_XOPEN_SOURCE,       700, [Define to enforce X/Open 7 (XSI) compliance.])
122         AC_DEFINE(_REENTRANT,            1, [Define to enable reentrancy interfaces.])
123         if test "x$GCC" = "xyes"
124         then
125                 CFLAGS="$CFLAGS -std=c99"
126         fi
127 fi
128 AM_CONDITIONAL(BUILD_FEATURE_STANDARDS, test "x$enable_standards" = "xyes")
129
130 #
131 # Checks for header files.
132 #
133 AC_HEADER_STDC
134 AC_HEADER_SYS_WAIT
135 AC_HEADER_DIRENT
136 AC_HEADER_STDBOOL
137
138 AC_CHECK_HEADERS(stdio.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h endian.h sys/isa_defs.h fnmatch.h libgen.h)
139
140 # For ping library
141 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
142 [#if HAVE_STDINT_H
143 # include <stdint.h>
144 #endif
145 #if HAVE_SYS_TYPES_H
146 # include <sys/types.h>
147 #endif
148 ])
149 AC_CHECK_HEADERS(netinet/in.h, [], [],
150 [#if HAVE_STDINT_H
151 # include <stdint.h>
152 #endif
153 #if HAVE_SYS_TYPES_H
154 # include <sys/types.h>
155 #endif
156 #if HAVE_NETINET_IN_SYSTM_H
157 # include <netinet/in_systm.h>
158 #endif
159 ])
160 AC_CHECK_HEADERS(netinet/ip.h, [], [],
161 [#if HAVE_STDINT_H
162 # include <stdint.h>
163 #endif
164 #if HAVE_SYS_TYPES_H
165 # include <sys/types.h>
166 #endif
167 #if HAVE_NETINET_IN_SYSTM_H
168 # include <netinet/in_systm.h>
169 #endif
170 #if HAVE_NETINET_IN_H
171 # include <netinet/in.h>
172 #endif
173 ])
174 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
175 [#if HAVE_STDINT_H
176 # include <stdint.h>
177 #endif
178 #if HAVE_SYS_TYPES_H
179 # include <sys/types.h>
180 #endif
181 #if HAVE_NETINET_IN_SYSTM_H
182 # include <netinet/in_systm.h>
183 #endif
184 #if HAVE_NETINET_IN_H
185 # include <netinet/in.h>
186 #endif
187 #if HAVE_NETINET_IP_H
188 # include <netinet/ip.h>
189 #endif
190 ])
191 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
192 [#if HAVE_STDINT_H
193 # include <stdint.h>
194 #endif
195 #if HAVE_SYS_TYPES_H
196 # include <sys/types.h>
197 #endif
198 #if HAVE_NETINET_IN_SYSTM_H
199 # include <netinet/in_systm.h>
200 #endif
201 #if HAVE_NETINET_IN_H
202 # include <netinet/in.h>
203 #endif
204 #if HAVE_NETINET_IP_H
205 # include <netinet/ip.h>
206 #endif
207 ])
208 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
209 [#if HAVE_STDINT_H
210 # include <stdint.h>
211 #endif
212 #if HAVE_SYS_TYPES_H
213 # include <sys/types.h>
214 #endif
215 #if HAVE_NETINET_IN_SYSTM_H
216 # include <netinet/in_systm.h>
217 #endif
218 #if HAVE_NETINET_IN_H
219 # include <netinet/in.h>
220 #endif
221 ])
222 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
223 [#if HAVE_STDINT_H
224 # include <stdint.h>
225 #endif
226 #if HAVE_SYS_TYPES_H
227 # include <sys/types.h>
228 #endif
229 #if HAVE_NETINET_IN_SYSTM_H
230 # include <netinet/in_systm.h>
231 #endif
232 #if HAVE_NETINET_IN_H
233 # include <netinet/in.h>
234 #endif
235 #if HAVE_NETINET_IP6_H
236 # include <netinet/ip6.h>
237 #endif
238 ])
239 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
240 [#if HAVE_STDINT_H
241 # include <stdint.h>
242 #endif
243 #if HAVE_SYS_TYPES_H
244 # include <sys/types.h>
245 #endif
246 #if HAVE_NETINET_IN_SYSTM_H
247 # include <netinet/in_systm.h>
248 #endif
249 #if HAVE_NETINET_IN_H
250 # include <netinet/in.h>
251 #endif
252 #if HAVE_NETINET_IP_H
253 # include <netinet/ip.h>
254 #endif
255 ])
256 AC_CHECK_HEADERS(netinet/udp.h, [], [],
257 [#if HAVE_STDINT_H
258 # include <stdint.h>
259 #endif
260 #if HAVE_SYS_TYPES_H
261 # include <sys/types.h>
262 #endif
263 #if HAVE_NETINET_IN_SYSTM_H
264 # include <netinet/in_systm.h>
265 #endif
266 #if HAVE_NETINET_IN_H
267 # include <netinet/in.h>
268 #endif
269 #if HAVE_NETINET_IP_H
270 # include <netinet/ip.h>
271 #endif
272 ])
273
274 # For cpu modules
275 AC_CHECK_HEADERS(sys/dkstat.h)
276 if test "x$ac_system" = "xDarwin"
277 then
278         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)
279         AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h IOKit/IOKitLib.h IOKit/IOTypes.h IOKit/ps/IOPSKeys.h IOKit/IOBSD.h IOKit/storage/IOBlockStorageDriver.h)
280         # For the battery plugin
281         AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
282 [
283 #if HAVE_IOKIT_IOKITLIB_H
284 #  include <IOKit/IOKitLib.h>
285 #endif
286 #if HAVE_IOKIT_IOTYPES_H
287 #  include <IOKit/IOTypes.h>
288 #endif
289 ])
290
291 fi
292
293 AC_CHECK_HEADERS(sys/sysctl.h, [], [],
294 [
295 #if HAVE_SYS_TYPES_H
296 #  include <sys/types.h>
297 #endif
298 #if HAVE_SYS_PARAM_H
299 # include <sys/param.h>
300 #endif
301 ])
302
303 AC_MSG_CHECKING([for sysctl kern.cp_times])
304 if test -x /sbin/sysctl
305 then
306         /sbin/sysctl kern.cp_times 2>/dev/null
307         if test $? -eq 0
308         then
309                 AC_MSG_RESULT([yes])
310                 AC_DEFINE(HAVE_SYSCTL_KERN_CP_TIMES, 1,
311                 [Define if sysctl supports kern.cp_times])
312         else
313                 AC_MSG_RESULT([no])
314         fi
315 else
316         AC_MSG_RESULT([no])
317 fi
318
319 # For hddtemp module
320 AC_CHECK_HEADERS(linux/major.h)
321
322 # For md module (Linux only)
323 if test "x$ac_system" = "xLinux"
324 then
325         AC_CHECK_HEADERS(linux/raid/md_u.h,
326                          [have_linux_raid_md_u_h="yes"],
327                          [have_linux_raid_md_u_h="no"],
328 [
329 #include <sys/ioctl.h>
330 #include <linux/major.h>
331 #include <linux/types.h>
332 ])
333 else
334         have_linux_raid_md_u_h="no"
335 fi
336
337 # For the swap module
338 have_linux_wireless_h="no"
339 if test "x$ac_system" = "xLinux"
340 then
341   AC_CHECK_HEADERS(linux/wireless.h,
342                    [have_linux_wireless_h="yes"],
343                    [have_linux_wireless_h="no"],
344 [
345 #include <dirent.h>
346 #include <sys/ioctl.h>
347 #include <sys/socket.h>
348 ])
349 fi
350
351 # For the swap module
352 have_sys_swap_h="yes"
353 AC_CHECK_HEADERS(sys/swap.h vm/anon.h, [], [have_sys_swap_h="no"],
354 [
355 #undef _FILE_OFFSET_BITS
356 #undef _LARGEFILE64_SOURCE
357 #if HAVE_SYS_TYPES_H
358 #  include <sys/types.h>
359 #endif
360 #if HAVE_SYS_PARAM_H
361 # include <sys/param.h>
362 #endif
363 ])
364
365 if test "x$have_sys_swap_h$ac_system" = "xnoSolaris"
366 then
367         hint_64=""
368         if test "x$GCC" = "xyes"
369         then
370                 hint_64="CFLAGS='-m64'"
371         else
372                 hint_64="CFLAGS='-xarch=v9'"
373         fi
374         AC_MSG_NOTICE([Solaris detected and sys/swap.h not usable. Try building a 64-bit binary ($hint_64 ./configure).])
375 fi
376
377 # For load module
378 # For the processes plugin
379 # For users module
380 AC_CHECK_HEADERS(sys/loadavg.h linux/config.h utmp.h utmpx.h)
381
382 # For interface plugin
383 AC_CHECK_HEADERS(ifaddrs.h)
384 AC_CHECK_HEADERS(net/if.h, [], [],
385 [
386 #if HAVE_SYS_TYPES_H
387 #  include <sys/types.h>
388 #endif
389 #if HAVE_SYS_SOCKET_H
390 #  include <sys/socket.h>
391 #endif
392 ])
393 AC_CHECK_HEADERS(linux/if.h, [], [],
394 [
395 #if HAVE_SYS_TYPES_H
396 #  include <sys/types.h>
397 #endif
398 #if HAVE_SYS_SOCKET_H
399 #  include <sys/socket.h>
400 #endif
401 ])
402 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
403 [
404 #if HAVE_SYS_TYPES_H
405 #  include <sys/types.h>
406 #endif
407 #if HAVE_SYS_SOCKET_H
408 #  include <sys/socket.h>
409 #endif
410 #if HAVE_LINUX_IF_H
411 # include <linux/if.h>
412 #endif
413 ])
414
415 # For ethstat module
416 AC_CHECK_HEADERS(linux/sockios.h,
417     [have_linux_sockios_h="yes"],
418     [have_linux_sockios_h="no"],
419     [
420 #if HAVE_SYS_IOCTL_H
421 # include <sys/ioctl.h>
422 #endif
423 #if HAVE_NET_IF_H
424 # include <net/if.h>
425 #endif
426     ])
427 AC_CHECK_HEADERS(linux/ethtool.h,
428     [have_linux_ethtool_h="yes"],
429     [have_linux_ethtool_h="no"],
430     [
431 #if HAVE_SYS_IOCTL_H
432 # include <sys/ioctl.h>
433 #endif
434 #if HAVE_NET_IF_H
435 # include <net/if.h>
436 #endif
437 #if HAVE_LINUX_SOCKIOS_H
438 # include <linux/sockios.h>
439 #endif
440     ])
441
442 # For ipvs module
443 have_linux_ip_vs_h="no"
444 have_net_ip_vs_h="no"
445 have_ip_vs_h="no"
446 ip_vs_h_needs_kernel_cflags="no"
447 if test "x$ac_system" = "xLinux"
448 then
449         AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
450         AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
451         AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
452
453         if test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono" && test -d "$KERNEL_DIR"
454         then
455                 SAVE_CFLAGS="$CFLAGS"
456                 CFLAGS="$CFLAGS $KERNEL_CFLAGS"
457
458                 AC_MSG_NOTICE([Did not find ip_vs.h. Trying again using headers from $KERNEL_DIR.])
459
460                 AC_CHECK_HEADERS(linux/ip_vs.h, [have_linux_ip_vs_h="yes"])
461                 AC_CHECK_HEADERS(net/ip_vs.h, [have_net_ip_vs_h="yes"])
462                 AC_CHECK_HEADERS(ip_vs.h, [have_ip_vs_h="yes"])
463
464                 if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
465                 then
466                         ip_vs_h_needs_kernel_cflags="yes"
467                 fi
468
469                 CFLAGS="$SAVE_CFLAGS"
470         fi
471 fi
472 AM_CONDITIONAL(IP_VS_H_NEEDS_KERNEL_CFLAGS, test "x$ip_vs_h_needs_kernel_cflags" = "xyes")
473
474 # For quota module
475 AC_CHECK_HEADERS(sys/ucred.h, [], [],
476 [
477 #if HAVE_SYS_TYPES_H
478 #  include <sys/types.h>
479 #endif
480 #if HAVE_SYS_PARAM_H
481 # include <sys/param.h>
482 #endif
483 ])
484
485 # For mount interface
486 AC_CHECK_HEADERS(sys/mount.h, [], [],
487 [
488 #if HAVE_SYS_TYPES_H
489 #  include <sys/types.h>
490 #endif
491 #if HAVE_SYS_PARAM_H
492 # include <sys/param.h>
493 #endif
494 ])
495
496 # For the email plugin
497 AC_CHECK_HEADERS(linux/un.h, [], [],
498 [
499 #if HAVE_SYS_SOCKET_H
500 #       include <sys/socket.h>
501 #endif
502 ])
503
504 AC_CHECK_HEADERS(pwd.h grp.h sys/un.h ctype.h limits.h xfs/xqm.h fs_info.h fshelp.h paths.h mntent.h mnttab.h sys/fstyp.h sys/fs_types.h sys/mntent.h sys/mnttab.h sys/statfs.h sys/statvfs.h sys/vfs.h sys/vfstab.h kvm.h wordexp.h)
505
506 # For the dns plugin
507 AC_CHECK_HEADERS(arpa/nameser.h)
508 AC_CHECK_HEADERS(arpa/nameser_compat.h, [], [],
509 [
510 #if HAVE_ARPA_NAMESER_H
511 # include <arpa/nameser.h>
512 #endif
513 ])
514
515 AC_CHECK_HEADERS(net/if_arp.h, [], [],
516 [#if HAVE_SYS_SOCKET_H
517 # include <sys/socket.h>
518 #endif
519 ])
520 AC_CHECK_HEADERS(net/ppp_defs.h)
521 AC_CHECK_HEADERS(net/if_ppp.h, [], [],
522 [#if HAVE_NET_PPP_DEFS_H
523 # include <net/ppp_defs.h>
524 #endif
525 ])
526 AC_CHECK_HEADERS(netinet/if_ether.h, [], [],
527 [#if HAVE_STDINT_H
528 # include <stdint.h>
529 #endif
530 #if HAVE_SYS_TYPES_H
531 # include <sys/types.h>
532 #endif
533 #if HAVE_SYS_SOCKET_H
534 # include <sys/socket.h>
535 #endif
536 #if HAVE_NET_IF_H
537 # include <net/if.h>
538 #endif
539 #if HAVE_NETINET_IN_H
540 # include <netinet/in.h>
541 #endif
542 ])
543
544 AC_CHECK_HEADERS(netinet/ip_compat.h)
545
546 have_net_pfvar_h="no"
547 AC_CHECK_HEADERS(net/pfvar.h,
548                [have_net_pfvar_h="yes"],
549                [have_net_pfvar_h="no"],
550 [
551 #if HAVE_SYS_IOCTL_H
552 # include <sys/ioctl.h>
553 #endif
554 #if HAVE_SYS_SOCKET_H
555 # include <sys/socket.h>
556 #endif
557 #if HAVE_NET_IF_H
558 # include <net/if.h>
559 #endif
560 ])
561
562 # For the multimeter plugin
563 have_termios_h="no"
564 AC_CHECK_HEADERS(termios.h, [have_termios_h="yes"])
565
566 #
567 # Checks for typedefs, structures, and compiler characteristics.
568 #
569 AC_C_CONST
570 AC_TYPE_PID_T
571 AC_TYPE_SIZE_T
572 AC_TYPE_UID_T
573 AC_HEADER_TIME
574
575 #
576 # Checks for library functions.
577 #
578 AC_PROG_GCC_TRADITIONAL
579 AC_CHECK_FUNCS(gettimeofday select strdup strtol getaddrinfo getnameinfo strchr memcpy strstr strcmp strncmp strncpy strlen strncasecmp strcasecmp openlog closelog sysconf setenv if_indextoname)
580
581 AC_FUNC_STRERROR_R
582
583 SAVE_CFLAGS="$CFLAGS"
584 # Emulate behavior of src/Makefile.am
585 if test "x$GCC" = "xyes"
586 then
587         CFLAGS="$CFLAGS -Wall -Werror"
588 fi
589
590 AC_CACHE_CHECK([for strtok_r],
591   [c_cv_have_strtok_r_default],
592   AC_LINK_IFELSE(
593     [AC_LANG_PROGRAM(
594 [[[
595 #include <stdlib.h>
596 #include <stdio.h>
597 #include <string.h>
598 ]]],
599 [[[
600       char buffer[] = "foo,bar,baz";
601       char *token;
602       char *dummy;
603       char *saveptr;
604
605       dummy = buffer;
606       saveptr = NULL;
607       while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
608       {
609         dummy = NULL;
610         printf ("token = %s;\n", token);
611       }
612 ]]]
613     )],
614     [c_cv_have_strtok_r_default="yes"],
615     [c_cv_have_strtok_r_default="no"]
616   )
617 )
618
619 if test "x$c_cv_have_strtok_r_default" = "xno"
620 then
621   CFLAGS="$CFLAGS -D_REENTRANT=1"
622
623   AC_CACHE_CHECK([if strtok_r needs _REENTRANT],
624     [c_cv_have_strtok_r_reentrant],
625     AC_LINK_IFELSE(
626       [AC_LANG_PROGRAM(
627 [[[
628 #include <stdlib.h>
629 #include <stdio.h>
630 #include <string.h>
631 ]]],
632 [[[
633         char buffer[] = "foo,bar,baz";
634         char *token;
635         char *dummy;
636         char *saveptr;
637
638         dummy = buffer;
639         saveptr = NULL;
640         while ((token = strtok_r (dummy, ",", &saveptr)) != NULL)
641         {
642           dummy = NULL;
643           printf ("token = %s;\n", token);
644         }
645 ]]]
646       )],
647       [c_cv_have_strtok_r_reentrant="yes"],
648       [AC_MSG_FAILURE([strtok_r isn't available. Please file a bugreport!])]
649     )
650   )
651 fi
652
653 CFLAGS="$SAVE_CFLAGS"
654 if test "x$c_cv_have_strtok_r_reentrant" = "xyes"
655 then
656         CFLAGS="$CFLAGS -D_REENTRANT=1"
657 fi
658
659 AC_CHECK_FUNCS(getpwnam_r getgrnam_r setgroups regcomp regerror regexec regfree)
660
661 socket_needs_socket="no"
662 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
663 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
664
665 clock_gettime_needs_rt="no"
666 clock_gettime_needs_posix4="no"
667 have_clock_gettime="no"
668 AC_CHECK_FUNCS(clock_gettime, [have_clock_gettime="yes"])
669 if test "x$have_clock_gettime" = "xno"
670 then
671         AC_CHECK_LIB(rt, clock_gettime, [clock_gettime_needs_rt="yes"
672                                          have_clock_gettime="yes"])
673 fi
674 if test "x$have_clock_gettime" = "xno"
675 then
676         AC_CHECK_LIB(posix4, clock_gettime, [clock_gettime_needs_posix4="yes"
677                                              have_clock_gettime="yes"])
678 fi
679 if test "x$have_clock_gettime" = "xyes"
680 then
681         AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if the clock_gettime(2) function is available.])
682 else
683         AC_MSG_WARN(cannot find clock_gettime)
684 fi
685
686 nanosleep_needs_rt="no"
687 nanosleep_needs_posix4="no"
688 AC_CHECK_FUNCS(nanosleep,
689     [],
690     AC_CHECK_LIB(rt, nanosleep,
691         [nanosleep_needs_rt="yes"],
692         AC_CHECK_LIB(posix4, nanosleep,
693             [nanosleep_needs_posix4="yes"],
694             AC_MSG_ERROR(cannot find nanosleep))))
695
696 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$clock_gettime_needs_rt" = "xyes" || test "x$nanosleep_needs_rt" = "xyes")
697 AM_CONDITIONAL(BUILD_WITH_LIBPOSIX4, test "x$clock_gettime_needs_posix4" = "xyes" || test "x$nanosleep_needs_posix4" = "xyes")
698
699 AC_CHECK_FUNCS(sysctl, [have_sysctl="yes"], [have_sysctl="no"])
700 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
701 AC_CHECK_FUNCS(host_statistics, [have_host_statistics="yes"], [have_host_statistics="no"])
702 AC_CHECK_FUNCS(processor_info, [have_processor_info="yes"], [have_processor_info="no"])
703 AC_CHECK_FUNCS(thread_info, [have_thread_info="yes"], [have_thread_info="no"])
704 AC_CHECK_FUNCS(statfs, [have_statfs="yes"], [have_statfs="no"])
705 AC_CHECK_FUNCS(statvfs, [have_statvfs="yes"], [have_statvfs="no"])
706 AC_CHECK_FUNCS(getifaddrs, [have_getifaddrs="yes"], [have_getifaddrs="no"])
707 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
708 AC_CHECK_FUNCS(syslog, [have_syslog="yes"], [have_syslog="no"])
709 AC_CHECK_FUNCS(getutent, [have_getutent="yes"], [have_getutent="no"])
710 AC_CHECK_FUNCS(getutxent, [have_getutxent="yes"], [have_getutxent="no"])
711
712 # Check for strptime {{{
713 if test "x$GCC" = "xyes"
714 then
715         SAVE_CFLAGS="$CFLAGS"
716         CFLAGS="$CFLAGS -Wall -Wextra -Werror"
717 fi
718
719 AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"])
720 if test "x$have_strptime" = "xyes"
721 then
722         AC_CACHE_CHECK([whether strptime is exported by default],
723                        [c_cv_have_strptime_default],
724                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
725 [[[
726 #include <time.h>
727 ]]],
728 [[[
729  struct tm stm;
730  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
731 ]]]
732                        )],
733                        [c_cv_have_strptime_default="yes"],
734                        [c_cv_have_strptime_default="no"]))
735 fi
736 if test "x$have_strptime" = "xyes" && test "x$c_cv_have_strptime_default" = "xno"
737 then
738         AC_CACHE_CHECK([whether strptime needs standards mode],
739                        [c_cv_have_strptime_standards],
740                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
741 [[[
742 #ifndef _ISOC99_SOURCE
743 # define _ISOC99_SOURCE 1
744 #endif
745 #ifndef _POSIX_C_SOURCE
746 # define _POSIX_C_SOURCE 200112L
747 #endif
748 #ifndef _XOPEN_SOURCE
749 # define _XOPEN_SOURCE 500
750 #endif
751 #include <time.h>
752 ]]],
753 [[[
754  struct tm stm;
755  (void) strptime ("2010-12-30%13:42:42", "%Y-%m-%dT%T", &stm);
756 ]]]
757                        )],
758                        [c_cv_have_strptime_standards="yes"],
759                        [c_cv_have_strptime_standards="no"]))
760
761         if test "x$c_cv_have_strptime_standards" = "xyes"
762         then
763                 AC_DEFINE([STRPTIME_NEEDS_STANDARDS], 1, [Set to true if strptime is only exported in X/Open mode (GNU libc).])
764         else
765                 have_strptime="no"
766         fi
767 fi
768
769 if test "x$GCC" = "xyes"
770 then
771         CFLAGS="$SAVE_CFLAGS"
772 fi
773 # }}} Check for strptime
774
775 AC_CHECK_FUNCS(swapctl, [have_swapctl="yes"], [have_swapctl="no"])
776 if test "x$have_swapctl" = "xyes"; then
777         AC_CACHE_CHECK([whether swapctl takes two arguments],
778                 [c_cv_have_swapctl_two_args],
779                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
780 [[[
781 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
782 #  undef _FILE_OFFSET_BITS
783 #  undef _LARGEFILE64_SOURCE
784 #endif
785 #include <sys/stat.h>
786 #include <sys/swap.h>
787 ]]],
788 [[[
789 int num = swapctl(0, NULL);
790 ]]]
791                         )],
792                         [c_cv_have_swapctl_two_args="yes"],
793                         [c_cv_have_swapctl_two_args="no"]
794                 )
795         )
796         AC_CACHE_CHECK([whether swapctl takes three arguments],
797                 [c_cv_have_swapctl_three_args],
798                 AC_COMPILE_IFELSE(
799                         [AC_LANG_PROGRAM(
800 [[[
801 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
802 #  undef _FILE_OFFSET_BITS
803 #  undef _LARGEFILE64_SOURCE
804 #endif
805 #include <sys/stat.h>
806 #include <sys/swap.h>
807 ]]],
808 [[[
809 int num = swapctl(0, NULL, 0);
810 ]]]
811                         )],
812                         [c_cv_have_swapctl_three_args="yes"],
813                         [c_cv_have_swapctl_three_args="no"]
814                 )
815         )
816 fi
817 # Check for different versions of `swapctl' here..
818 if test "x$have_swapctl" = "xyes"; then
819         if test "x$c_cv_have_swapctl_two_args" = "xyes"; then
820                 AC_DEFINE(HAVE_SWAPCTL_TWO_ARGS, 1,
821                           [Define if the function swapctl exists and takes two arguments.])
822         fi
823         if test "x$c_cv_have_swapctl_three_args" = "xyes"; then
824                 AC_DEFINE(HAVE_SWAPCTL_THREE_ARGS, 1,
825                           [Define if the function swapctl exists and takes three arguments.])
826         fi
827 fi
828
829 # Check for NAN
830 AC_ARG_WITH(nan-emulation, [AS_HELP_STRING([--with-nan-emulation], [use emulated NAN. For crosscompiling only.])],
831 [
832  if test "x$withval" = "xno"; then
833          nan_type="none"
834  else if test "x$withval" = "xyes"; then
835          nan_type="zero"
836  else
837          nan_type="$withval"
838  fi; fi
839 ],
840 [nan_type="none"])
841 if test "x$nan_type" = "xnone"; then
842   AC_CACHE_CHECK([whether NAN is defined by default],
843     [c_cv_have_nan_default],
844     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
845 [[[
846 #include <stdlib.h>
847 #include <math.h>
848 static double foo = NAN;
849 ]]],
850 [[[
851        if (isnan (foo))
852         return 0;
853        else
854         return 1;
855 ]]]
856       )],
857       [c_cv_have_nan_default="yes"],
858       [c_cv_have_nan_default="no"]
859     )
860   )
861   if test "x$c_cv_have_nan_default" = "xyes"
862   then
863     nan_type="default"
864   fi
865 fi
866 if test "x$nan_type" = "xnone"; then
867   AC_CACHE_CHECK([whether NAN is defined by __USE_ISOC99],
868     [c_cv_have_nan_isoc],
869     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
870 [[[
871 #include <stdlib.h>
872 #define __USE_ISOC99 1
873 #include <math.h>
874 static double foo = NAN;
875 ]]],
876 [[[
877        if (isnan (foo))
878         return 0;
879        else
880         return 1;
881 ]]]
882       )],
883       [c_cv_have_nan_isoc="yes"],
884       [c_cv_have_nan_isoc="no"]
885     )
886   )
887   if test "x$c_cv_have_nan_isoc" = "xyes"
888   then
889     nan_type="isoc99"
890   fi
891 fi
892 if test "x$nan_type" = "xnone"; then
893   SAVE_LDFLAGS=$LDFLAGS
894   LDFLAGS="$LDFLAGS -lm"
895   AC_CACHE_CHECK([whether NAN can be defined by 0/0],
896     [c_cv_have_nan_zero],
897     AC_RUN_IFELSE([AC_LANG_PROGRAM(
898 [[[
899 #include <stdlib.h>
900 #include <math.h>
901 #ifdef NAN
902 # undef NAN
903 #endif
904 #define NAN (0.0 / 0.0)
905 #ifndef isnan
906 # define isnan(f) ((f) != (f))
907 #endif
908 static double foo = NAN;
909 ]]],
910 [[[
911        if (isnan (foo))
912         return 0;
913        else
914         return 1;
915 ]]]
916       )],
917       [c_cv_have_nan_zero="yes"],
918       [c_cv_have_nan_zero="no"]
919     )
920   )
921   LDFLAGS=$SAVE_LDFLAGS
922   if test "x$c_cv_have_nan_zero" = "xyes"
923   then
924     nan_type="zero"
925   fi
926 fi
927
928 if test "x$nan_type" = "xdefault"; then
929   AC_DEFINE(NAN_STATIC_DEFAULT, 1,
930     [Define if NAN is defined by default and can initialize static variables.])
931 else if test "x$nan_type" = "xisoc99"; then
932   AC_DEFINE(NAN_STATIC_ISOC, 1,
933     [Define if NAN is defined by __USE_ISOC99 and can initialize static variables.])
934 else if test "x$nan_type" = "xzero"; then
935   AC_DEFINE(NAN_ZERO_ZERO, 1,
936     [Define if NAN can be defined as (0.0 / 0.0)])
937 else
938   AC_MSG_ERROR([Didn't find out how to statically initialize variables to NAN. Sorry.])
939 fi; fi; fi
940
941 AC_ARG_WITH(fp-layout, [AS_HELP_STRING([--with-fp-layout], [set the memory layout of doubles. For crosscompiling only.])],
942 [
943  if test "x$withval" = "xnothing"; then
944         fp_layout_type="nothing"
945  else if test "x$withval" = "xendianflip"; then
946         fp_layout_type="endianflip"
947  else if test "x$withval" = "xintswap"; then
948         fp_layout_type="intswap"
949  else
950         AC_MSG_ERROR([Invalid argument for --with-fp-layout. Valid arguments are: nothing, endianflip, intswap]);
951 fi; fi; fi
952 ],
953 [fp_layout_type="unknown"])
954
955 if test "x$fp_layout_type" = "xunknown"; then
956   AC_CACHE_CHECK([if doubles are stored in x86 representation],
957     [c_cv_fp_layout_need_nothing],
958     AC_RUN_IFELSE([AC_LANG_PROGRAM(
959 [[[
960 #include <stdlib.h>
961 #include <stdio.h>
962 #include <string.h>
963 #if HAVE_STDINT_H
964 # include <stdint.h>
965 #endif
966 #if HAVE_INTTYPES_H
967 # include <inttypes.h>
968 #endif
969 #if HAVE_STDBOOL_H
970 # include <stdbool.h>
971 #endif
972 ]]],
973 [[[
974         uint64_t i0;
975         uint64_t i1;
976         uint8_t c[8];
977         double d;
978
979         d = 8.642135e130; 
980         memcpy ((void *) &i0, (void *) &d, 8);
981
982         i1 = i0;
983         memcpy ((void *) c, (void *) &i1, 8);
984
985         if ((c[0] == 0x2f) && (c[1] == 0x25)
986                         && (c[2] == 0xc0) && (c[3] == 0xc7)
987                         && (c[4] == 0x43) && (c[5] == 0x2b)
988                         && (c[6] == 0x1f) && (c[7] == 0x5b))
989                 return (0);
990         else
991                 return (1);
992 ]]]
993       )],
994       [c_cv_fp_layout_need_nothing="yes"],
995       [c_cv_fp_layout_need_nothing="no"]
996     )
997   )
998   if test "x$c_cv_fp_layout_need_nothing" = "xyes"; then
999     fp_layout_type="nothing"
1000   fi
1001 fi
1002 if test "x$fp_layout_type" = "xunknown"; then
1003   AC_CACHE_CHECK([if endianflip converts to x86 representation],
1004     [c_cv_fp_layout_need_endianflip],
1005     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1006 [[[
1007 #include <stdlib.h>
1008 #include <stdio.h>
1009 #include <string.h>
1010 #if HAVE_STDINT_H
1011 # include <stdint.h>
1012 #endif
1013 #if HAVE_INTTYPES_H
1014 # include <inttypes.h>
1015 #endif
1016 #if HAVE_STDBOOL_H
1017 # include <stdbool.h>
1018 #endif
1019 #define endianflip(A) ((((uint64_t)(A) & 0xff00000000000000LL) >> 56) | \
1020                        (((uint64_t)(A) & 0x00ff000000000000LL) >> 40) | \
1021                        (((uint64_t)(A) & 0x0000ff0000000000LL) >> 24) | \
1022                        (((uint64_t)(A) & 0x000000ff00000000LL) >> 8)  | \
1023                        (((uint64_t)(A) & 0x00000000ff000000LL) << 8)  | \
1024                        (((uint64_t)(A) & 0x0000000000ff0000LL) << 24) | \
1025                        (((uint64_t)(A) & 0x000000000000ff00LL) << 40) | \
1026                        (((uint64_t)(A) & 0x00000000000000ffLL) << 56))
1027 ]]],
1028 [[[
1029         uint64_t i0;
1030         uint64_t i1;
1031         uint8_t c[8];
1032         double d;
1033
1034         d = 8.642135e130; 
1035         memcpy ((void *) &i0, (void *) &d, 8);
1036
1037         i1 = endianflip (i0);
1038         memcpy ((void *) c, (void *) &i1, 8);
1039
1040         if ((c[0] == 0x2f) && (c[1] == 0x25)
1041                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1042                         && (c[4] == 0x43) && (c[5] == 0x2b)
1043                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1044                 return (0);
1045         else
1046                 return (1);
1047 ]]]
1048       )],
1049       [c_cv_fp_layout_need_endianflip="yes"],
1050       [c_cv_fp_layout_need_endianflip="no"]
1051     )
1052   )
1053   if test "x$c_cv_fp_layout_need_endianflip" = "xyes"; then
1054     fp_layout_type="endianflip"
1055   fi
1056 fi
1057 if test "x$fp_layout_type" = "xunknown"; then
1058   AC_CACHE_CHECK([if intswap converts to x86 representation],
1059     [c_cv_fp_layout_need_intswap],
1060     AC_RUN_IFELSE([AC_LANG_PROGRAM(
1061 [[[
1062 #include <stdlib.h>
1063 #include <stdio.h>
1064 #include <string.h>
1065 #if HAVE_STDINT_H
1066 # include <stdint.h>
1067 #endif
1068 #if HAVE_INTTYPES_H
1069 # include <inttypes.h>
1070 #endif
1071 #if HAVE_STDBOOL_H
1072 # include <stdbool.h>
1073 #endif
1074 #define intswap(A)    ((((uint64_t)(A) & 0xffffffff00000000LL) >> 32) | \
1075                        (((uint64_t)(A) & 0x00000000ffffffffLL) << 32))
1076 ]]],
1077 [[[
1078         uint64_t i0;
1079         uint64_t i1;
1080         uint8_t c[8];
1081         double d;
1082
1083         d = 8.642135e130; 
1084         memcpy ((void *) &i0, (void *) &d, 8);
1085
1086         i1 = intswap (i0);
1087         memcpy ((void *) c, (void *) &i1, 8);
1088
1089         if ((c[0] == 0x2f) && (c[1] == 0x25)
1090                         && (c[2] == 0xc0) && (c[3] == 0xc7)
1091                         && (c[4] == 0x43) && (c[5] == 0x2b)
1092                         && (c[6] == 0x1f) && (c[7] == 0x5b))
1093                 return (0);
1094         else
1095                 return (1);
1096 ]]]
1097       )],
1098       [c_cv_fp_layout_need_intswap="yes"],
1099       [c_cv_fp_layout_need_intswap="no"]
1100     )
1101   )
1102   if test "x$c_cv_fp_layout_need_intswap" = "xyes"; then
1103     fp_layout_type="intswap"
1104   fi
1105 fi
1106
1107 if test "x$fp_layout_type" = "xnothing"; then
1108   AC_DEFINE(FP_LAYOUT_NEED_NOTHING, 1,
1109   [Define if doubles are stored in x86 representation.])
1110 else if test "x$fp_layout_type" = "xendianflip"; then
1111   AC_DEFINE(FP_LAYOUT_NEED_ENDIANFLIP, 1,
1112   [Define if endianflip is needed to convert to x86 representation.])
1113 else if test "x$fp_layout_type" = "xintswap"; then
1114   AC_DEFINE(FP_LAYOUT_NEED_INTSWAP, 1,
1115   [Define if intswap is needed to convert to x86 representation.])
1116 else
1117   AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.])
1118 fi; fi; fi
1119
1120 have_getfsstat="no"
1121 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1122 have_getvfsstat="no"
1123 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1124 have_listmntent="no"
1125 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1126
1127 have_getmntent="no"
1128 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1129 if test "x$have_getmntent" = "xno"; then
1130         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1131 fi
1132 if test "x$have_getmntent" = "xno"; then
1133         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1134 fi
1135 if test "x$have_getmntent" = "xno"; then
1136         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1137 fi
1138
1139 if test "x$have_getmntent" = "xc"; then
1140         AC_CACHE_CHECK([whether getmntent takes one argument],
1141                 [c_cv_have_one_getmntent],
1142                 AC_COMPILE_IFELSE(
1143                         [AC_LANG_PROGRAM(
1144 [[[
1145 #include "$srcdir/src/utils_mount.h"
1146 ]]],
1147 [[[
1148 FILE *fh;
1149 struct mntent *me;
1150 fh = setmntent ("/etc/mtab", "r");
1151 me = getmntent (fh);
1152 ]]]
1153                         )],
1154                         [c_cv_have_one_getmntent="yes"],
1155                         [c_cv_have_one_getmntent="no"]
1156                 )
1157         )
1158         AC_CACHE_CHECK([whether getmntent takes two arguments],
1159                 [c_cv_have_two_getmntent],
1160                 AC_COMPILE_IFELSE(
1161                         [AC_LANG_PROGRAM(
1162 [[[
1163 #include "$srcdir/src/utils_mount.h"
1164 ]]],
1165 [[[
1166                                  FILE *fh;
1167                                  struct mnttab mt;
1168                                  int status;
1169                                  fh = fopen ("/etc/mnttab", "r");
1170                                  status = getmntent (fh, &mt);
1171 ]]]
1172                         )],
1173                         [c_cv_have_two_getmntent="yes"],
1174                         [c_cv_have_two_getmntent="no"]
1175                 )
1176         )
1177 fi
1178
1179 # Check for different versions of `getmntent' here..
1180
1181 if test "x$have_getmntent" = "xc"; then
1182         if test "x$c_cv_have_one_getmntent" = "xyes"; then
1183                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1184                           [Define if the function getmntent exists and takes one argument.])
1185         fi
1186         if test "x$c_cv_have_two_getmntent" = "xyes"; then
1187                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1188                           [Define if the function getmntent exists and takes two arguments.])
1189         fi
1190 fi
1191 if test "x$have_getmntent" = "xsun"; then
1192         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1193                   [Define if the function getmntent exists. It's the version from libsun.])
1194 fi
1195 if test "x$have_getmntent" = "xseq"; then
1196         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1197                   [Define if the function getmntent exists. It's the version from libseq.])
1198 fi
1199 if test "x$have_getmntent" = "xgen"; then
1200         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1201                   [Define if the function getmntent exists. It's the version from libgen.])
1202 fi
1203
1204 # Check for htonll
1205 AC_MSG_CHECKING([if have htonll defined])
1206
1207     have_htonll="no"
1208     AC_LINK_IFELSE([AC_LANG_PROGRAM(
1209 [[[
1210 #include <sys/types.h>
1211 #include <netinet/in.h>
1212 #if HAVE_INTTYPES_H
1213 # include <inttypes.h>
1214 #endif
1215 ]]],
1216 [[[
1217           return htonll(0);
1218 ]]]
1219     )],
1220     [
1221       have_htonll="yes"
1222       AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1223     ])
1224  
1225 AC_MSG_RESULT([$have_htonll])
1226
1227 # Check for structures
1228 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1229         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1230         [],
1231         [
1232         #include <sys/types.h>
1233         #include <sys/socket.h>
1234         #include <net/if.h>
1235         ])
1236 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1237         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1238         [],
1239         [
1240         #include <sys/types.h>
1241         #include <sys/socket.h>
1242         #include <linux/if.h>
1243         #include <linux/netdevice.h>
1244         ])
1245
1246 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1247         [],
1248         [
1249         #include <netinet/in.h>
1250         #include <net/if.h>
1251         ])
1252
1253 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1254         [
1255                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1256                         [Define if struct kinfo_proc exists in the FreeBSD variant.])
1257                 have_struct_kinfo_proc_freebsd="yes"
1258         ],
1259         [
1260                 have_struct_kinfo_proc_freebsd="no"
1261         ],
1262         [
1263 #include <kvm.h>
1264 #include <sys/param.h>
1265 #include <sys/sysctl.h>
1266 #include <sys/user.h>
1267         ])
1268
1269 AC_CHECK_MEMBERS([struct kinfo_proc.kp_proc, struct kinfo_proc.kp_eproc],
1270         [
1271                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1272                         [Define if struct kinfo_proc exists in the OpenBSD variant.])
1273                 have_struct_kinfo_proc_openbsd="yes"
1274         ],
1275         [
1276                 have_struct_kinfo_proc_openbsd="no"
1277         ],
1278         [
1279 #include <sys/param.h>
1280 #include <sys/sysctl.h>
1281 #include <kvm.h>
1282         ])
1283
1284 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1285 [#define _BSD_SOURCE
1286 #if HAVE_STDINT_H
1287 # include <stdint.h>
1288 #endif
1289 #if HAVE_SYS_TYPES_H
1290 # include <sys/types.h>
1291 #endif
1292 #if HAVE_NETINET_IN_SYSTM_H
1293 # include <netinet/in_systm.h>
1294 #endif
1295 #if HAVE_NETINET_IN_H
1296 # include <netinet/in.h>
1297 #endif
1298 #if HAVE_NETINET_IP_H
1299 # include <netinet/ip.h>
1300 #endif
1301 #if HAVE_NETINET_UDP_H
1302 # include <netinet/udp.h>
1303 #endif
1304 ])
1305 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1306 [#define _BSD_SOURCE
1307 #if HAVE_STDINT_H
1308 # include <stdint.h>
1309 #endif
1310 #if HAVE_SYS_TYPES_H
1311 # include <sys/types.h>
1312 #endif
1313 #if HAVE_NETINET_IN_SYSTM_H
1314 # include <netinet/in_systm.h>
1315 #endif
1316 #if HAVE_NETINET_IN_H
1317 # include <netinet/in.h>
1318 #endif
1319 #if HAVE_NETINET_IP_H
1320 # include <netinet/ip.h>
1321 #endif
1322 #if HAVE_NETINET_UDP_H
1323 # include <netinet/udp.h>
1324 #endif
1325 ])
1326
1327 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1328         [],
1329         [],
1330         [
1331 #if HAVE_KSTAT_H
1332 # include <kstat.h>
1333 #endif
1334         ])
1335
1336 #
1337 # Checks for libraries begin here
1338 #
1339
1340 with_libresolv="yes"
1341 AC_CHECK_LIB(resolv, res_search,
1342 [
1343         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1344 ],
1345 [with_libresolv="no"])
1346 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1347
1348 dnl Check for HAL (hardware abstraction library)
1349 with_libhal="yes"
1350 AC_CHECK_LIB(hal,libhal_device_property_exists,
1351              [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1352              [with_libhal="no"])
1353 if test "x$with_libhal" = "xyes"; then
1354         if test "x$PKG_CONFIG" != "x"; then
1355                 BUILD_WITH_LIBHAL_CFLAGS="`pkg-config --cflags hal`"
1356                 BUILD_WITH_LIBHAL_LIBS="`pkg-config --libs hal`"
1357                 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1358                 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1359         fi
1360 fi
1361
1362 m4_divert_once([HELP_WITH], [
1363 collectd additional packages:])
1364
1365 AM_CONDITIONAL([BUILD_AIX],[test "x$x$ac_system" = "xAIX"]) 
1366
1367 if test "x$ac_system" = "xAIX"
1368 then
1369         with_perfstat="yes"
1370         with_procinfo="yes"
1371 else
1372         with_perfstat="no (AIX only)"
1373         with_procinfo="no (AIX only)"
1374 fi
1375
1376 if test "x$with_perfstat" = "xyes"
1377 then
1378         AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1379 #       AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1380 fi
1381 if test "x$with_perfstat" = "xyes"
1382 then
1383          AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1384          # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1385          AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1386          if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1387          then
1388                 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1389          fi
1390 fi
1391 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1392
1393 # Processes plugin under AIX.
1394 if test "x$with_procinfo" = "xyes"
1395 then
1396         AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1397 fi
1398 if test "x$with_procinfo" = "xyes"
1399 then
1400          AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1401 fi
1402
1403 if test "x$ac_system" = "xSolaris"
1404 then
1405         with_kstat="yes"
1406         with_devinfo="yes"
1407 else
1408         with_kstat="no (Solaris only)"
1409         with_devinfo="no (Solaris only)"
1410 fi
1411
1412 if test "x$with_kstat" = "xyes"
1413 then
1414         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1415 fi
1416 if test "x$with_kstat" = "xyes"
1417 then
1418         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1419         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1420 fi
1421 if test "x$with_kstat" = "xyes"
1422 then
1423         AC_DEFINE(HAVE_LIBKSTAT, 1,
1424                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1425 fi
1426 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1427 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1428
1429 with_libiokit="no"
1430 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
1431 [
1432         with_libiokit="yes"
1433 ], 
1434 [
1435         with_libiokit="no"
1436 ])
1437 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1438
1439 with_libkvm="no"
1440 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1441 if test "x$with_kvm_getprocs" = "xyes"
1442 then
1443         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1444                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1445         with_libkvm="yes"
1446 fi
1447 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1448
1449 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1450 if test "x$with_kvm_getswapinfo" = "xyes"
1451 then
1452         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1453                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1454         with_libkvm="yes"
1455 fi
1456 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1457
1458 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1459 if test "x$with_kvm_nlist" = "xyes"
1460 then
1461         AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1462         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1463                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1464         with_libkvm="yes"
1465 fi
1466 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1467
1468 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1469 if test "x$with_kvm_openfiles" = "xyes"
1470 then
1471         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1472                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1473         with_libkvm="yes"
1474 fi
1475 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1476
1477 # --with-libcredis {{{
1478 AC_ARG_WITH(libcredis, [AS_HELP_STRING([--with-libcredis@<:@=PREFIX@:>@], [Path to libcredis.])],
1479 [
1480  if test "x$withval" = "xyes"
1481  then
1482          with_libcredis="yes"
1483  else if test "x$withval" = "xno"
1484  then
1485          with_libcredis="no"
1486  else
1487          with_libcredis="yes"
1488          LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS -I$withval/include"
1489          LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS -L$withval/lib"
1490  fi; fi
1491 ],
1492 [with_libcredis="yes"])
1493
1494 SAVE_CPPFLAGS="$CPPFLAGS"
1495 SAVE_LDFLAGS="$LDFLAGS"
1496
1497 CPPFLAGS="$CPPFLAGS $LIBCREDIS_CPPFLAGS"
1498 LDFLAGS="$LDFLAGS $LIBCREDIS_LDFLAGS"
1499
1500 if test "x$with_libcredis" = "xyes"
1501 then
1502         if test "x$LIBCREDIS_CPPFLAGS" != "x"
1503         then
1504                 AC_MSG_NOTICE([libcredis CPPFLAGS: $LIBCREDIS_CPPFLAGS])
1505         fi
1506         AC_CHECK_HEADERS(credis.h,
1507         [with_libcredis="yes"],
1508         [with_libcredis="no (credis.h not found)"])
1509 fi
1510 if test "x$with_libcredis" = "xyes"
1511 then
1512         if test "x$LIBCREDIS_LDFLAGS" != "x"
1513         then
1514                 AC_MSG_NOTICE([libcredis LDFLAGS: $LIBCREDIS_LDFLAGS])
1515         fi
1516         AC_CHECK_LIB(credis, credis_info,
1517         [with_libcredis="yes"],
1518         [with_libcredis="no (symbol 'credis_info' not found)"])
1519
1520 fi
1521
1522 CPPFLAGS="$SAVE_CPPFLAGS"
1523 LDFLAGS="$SAVE_LDFLAGS"
1524
1525 if test "x$with_libcredis" = "xyes"
1526 then
1527         BUILD_WITH_LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS"
1528         BUILD_WITH_LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS"
1529         AC_SUBST(BUILD_WITH_LIBCREDIS_CPPFLAGS)
1530         AC_SUBST(BUILD_WITH_LIBCREDIS_LDFLAGS)
1531 fi
1532 AM_CONDITIONAL(BUILD_WITH_LIBCREDIS, test "x$with_libcredis" = "xyes")
1533 # }}}
1534
1535 # --with-libcurl {{{
1536 with_curl_config="curl-config"
1537 with_curl_cflags=""
1538 with_curl_libs=""
1539 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1540 [
1541         if test "x$withval" = "xno"
1542         then
1543                 with_libcurl="no"
1544         else if test "x$withval" = "xyes"
1545         then
1546                 with_libcurl="yes"
1547         else
1548                 if test -f "$withval" && test -x "$withval"
1549                 then
1550                         with_curl_config="$withval"
1551                         with_libcurl="yes"
1552                 else if test -x "$withval/bin/curl-config"
1553                 then
1554                         with_curl_config="$withval/bin/curl-config"
1555                         with_libcurl="yes"
1556                 fi; fi
1557                 with_libcurl="yes"
1558         fi; fi
1559 ],
1560 [
1561         with_libcurl="yes"
1562 ])
1563 if test "x$with_libcurl" = "xyes"
1564 then
1565         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1566         curl_config_status=$?
1567
1568         if test $curl_config_status -ne 0
1569         then
1570                 with_libcurl="no ($with_curl_config failed)"
1571         else
1572                 SAVE_CPPFLAGS="$CPPFLAGS"
1573                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1574
1575                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1576
1577                 CPPFLAGS="$SAVE_CPPFLAGS"
1578         fi
1579 fi
1580 if test "x$with_libcurl" = "xyes"
1581 then
1582         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1583         curl_config_status=$?
1584
1585         if test $curl_config_status -ne 0
1586         then
1587                 with_libcurl="no ($with_curl_config failed)"
1588         else
1589                 AC_CHECK_LIB(curl, curl_easy_init,
1590                  [with_libcurl="yes"],
1591                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1592                  [$with_curl_libs])
1593         fi
1594 fi
1595 if test "x$with_libcurl" = "xyes"
1596 then
1597         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1598         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1599         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1600         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1601 fi
1602 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1603 # }}}
1604
1605 # --with-libdbi {{{
1606 with_libdbi_cppflags=""
1607 with_libdbi_ldflags=""
1608 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1609 [
1610         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1611         then
1612                 with_libdbi_cppflags="-I$withval/include"
1613                 with_libdbi_ldflags="-L$withval/lib"
1614                 with_libdbi="yes"
1615         else
1616                 with_libdbi="$withval"
1617         fi
1618 ],
1619 [
1620         with_libdbi="yes"
1621 ])
1622 if test "x$with_libdbi" = "xyes"
1623 then
1624         SAVE_CPPFLAGS="$CPPFLAGS"
1625         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1626
1627         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1628
1629         CPPFLAGS="$SAVE_CPPFLAGS"
1630 fi
1631 if test "x$with_libdbi" = "xyes"
1632 then
1633         SAVE_CPPFLAGS="$CPPFLAGS"
1634         SAVE_LDFLAGS="$LDFLAGS"
1635         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1636         LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1637
1638         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1639
1640         CPPFLAGS="$SAVE_CPPFLAGS"
1641         LDFLAGS="$SAVE_LDFLAGS"
1642 fi
1643 if test "x$with_libdbi" = "xyes"
1644 then
1645         BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1646         BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1647         BUILD_WITH_LIBDBI_LIBS="-ldbi"
1648         AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1649         AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1650         AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1651 fi
1652 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1653 # }}}
1654
1655 # --with-libesmtp {{{
1656 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1657 [
1658         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1659         then
1660                 LDFLAGS="$LDFLAGS -L$withval/lib"
1661                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1662                 with_libesmtp="yes"
1663         else
1664                 with_libesmtp="$withval"
1665         fi
1666 ],
1667 [
1668         with_libesmtp="yes"
1669 ])
1670 if test "x$with_libesmtp" = "xyes"
1671 then
1672         AC_CHECK_LIB(esmtp, smtp_create_session,
1673         [
1674                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1675         ], [with_libesmtp="no (libesmtp not found)"])
1676 fi
1677 if test "x$with_libesmtp" = "xyes"
1678 then
1679         AC_CHECK_HEADERS(libesmtp.h,
1680         [
1681                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1682         ], [with_libesmtp="no (libesmtp.h not found)"])
1683 fi
1684 if test "x$with_libesmtp" = "xyes"
1685 then
1686         collect_libesmtp=1
1687 else
1688         collect_libesmtp=0
1689 fi
1690 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1691         [Wether or not to use the esmtp library])
1692 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1693 # }}}
1694
1695 # --with-libganglia {{{
1696 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
1697 [
1698  if test -f "$withval" && test -x "$withval"
1699  then
1700          with_libganglia_config="$withval"
1701          with_libganglia="yes"
1702  else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
1703  then
1704          with_libganglia_config="$withval/bin/ganglia-config"
1705          with_libganglia="yes"
1706  else if test -d "$withval"
1707  then
1708          GANGLIA_CPPFLAGS="-I$withval/include"
1709          GANGLIA_LDFLAGS="-L$withval/lib"
1710          with_libganglia="yes"
1711  else
1712          with_libganglia_config="ganglia-config"
1713          with_libganglia="$withval"
1714  fi; fi; fi
1715 ],
1716 [
1717  with_libganglia_config="ganglia-config"
1718  with_libganglia="yes"
1719 ])
1720
1721 if test "x$with_libganglia" = "xyes" && test "x$with_libganglia_config" != "x"
1722 then
1723         if test "x$GANGLIA_CPPFLAGS" = "x"
1724         then
1725                 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
1726         fi
1727
1728         if test "x$GANGLIA_LDFLAGS" = "x"
1729         then
1730                 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
1731         fi
1732
1733         if test "x$GANGLIA_LIBS" = "x"
1734         then
1735                 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
1736         fi
1737 fi
1738
1739 SAVE_CPPFLAGS="$CPPFLAGS"
1740 SAVE_LDFLAGS="$LDFLAGS"
1741 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
1742 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
1743
1744 if test "x$with_libganglia" = "xyes"
1745 then
1746         AC_CHECK_HEADERS(gm_protocol.h,
1747         [
1748                 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
1749                           [Define to 1 if you have the <gm_protocol.h> header file.])
1750         ], [with_libganglia="no (gm_protocol.h not found)"])
1751 fi
1752
1753 if test "x$with_libganglia" = "xyes"
1754 then
1755         AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
1756         [
1757                 AC_DEFINE(HAVE_LIBGANGLIA, 1,
1758                           [Define to 1 if you have the ganglia library (-lganglia).])
1759         ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
1760 fi
1761
1762 CPPFLAGS="$SAVE_CPPFLAGS"
1763 LDFLAGS="$SAVE_LDFLAGS"
1764
1765 AC_SUBST(GANGLIA_CPPFLAGS)
1766 AC_SUBST(GANGLIA_LDFLAGS)
1767 AC_SUBST(GANGLIA_LIBS)
1768 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
1769 # }}}
1770
1771 # --with-libgcrypt {{{
1772 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
1773 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
1774 GCRYPT_LIBS="$GCRYPT_LIBS"
1775 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
1776 [
1777  if test -f "$withval" && test -x "$withval"
1778  then
1779          with_libgcrypt_config="$withval"
1780          with_libgcrypt="yes"
1781  else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
1782  then
1783          with_libgcrypt_config="$withval/bin/gcrypt-config"
1784          with_libgcrypt="yes"
1785  else if test -d "$withval"
1786  then
1787          GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
1788          GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
1789          with_libgcrypt="yes"
1790  else
1791          with_libgcrypt_config="gcrypt-config"
1792          with_libgcrypt="$withval"
1793  fi; fi; fi
1794 ],
1795 [
1796  with_libgcrypt_config="libgcrypt-config"
1797  with_libgcrypt="yes"
1798 ])
1799
1800 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
1801 then
1802         if test "x$GCRYPT_CPPFLAGS" = "x"
1803         then
1804                 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
1805         fi
1806
1807         if test "x$GCRYPT_LDFLAGS" = "x"
1808         then
1809                 gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null`
1810                 GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib"
1811         fi
1812
1813         if test "x$GCRYPT_LIBS" = "x"
1814         then
1815                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
1816         fi
1817 fi
1818
1819 SAVE_CPPFLAGS="$CPPFLAGS"
1820 SAVE_LDFLAGS="$LDFLAGS"
1821 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
1822 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
1823
1824 if test "x$with_libgcrypt" = "xyes"
1825 then
1826         if test "x$GCRYPT_CPPFLAGS" != "x"
1827         then
1828                 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
1829         fi
1830         AC_CHECK_HEADERS(gcrypt.h,
1831                 [with_libgcrypt="yes"],
1832                 [with_libgcrypt="no (gcrypt.h not found)"])
1833 fi
1834
1835 if test "x$with_libgcrypt" = "xyes"
1836 then
1837         if test "x$GCRYPT_LDFLAGS" != "x"
1838         then
1839                 AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS])
1840         fi
1841         AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
1842                 [with_libgcrypt="yes"],
1843                 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
1844
1845         if test "$with_libgcrypt" != "no"; then
1846                 AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")
1847                 GCRYPT_CPPFLAGS="$LIBGCRYPT_CPPFLAGS"
1848                 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
1849         fi
1850 fi
1851
1852 CPPFLAGS="$SAVE_CPPFLAGS"
1853 LDFLAGS="$SAVE_LDFLAGS"
1854
1855 if test "x$with_libgcrypt" = "xyes"
1856 then
1857         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
1858 fi
1859
1860 AC_SUBST(GCRYPT_CPPFLAGS)
1861 AC_SUBST(GCRYPT_LDFLAGS)
1862 AC_SUBST(GCRYPT_LIBS)
1863 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
1864 # }}}
1865
1866 # --with-libiptc {{{
1867 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1868 [
1869         if test "x$withval" = "xshipped"
1870         then
1871                 with_libiptc="own"
1872         else if test "x$withval" = "xyes"
1873         then
1874                 with_libiptc="pkgconfig"
1875         else if test "x$withval" = "xno"
1876         then
1877                 with_libiptc="no"
1878         else
1879                 with_libiptc="yes"
1880                 with_libiptc_cflags="-I$withval/include"
1881                 with_libiptc_libs="-L$withval/lib"
1882         fi; fi; fi
1883 ],
1884 [
1885         if test "x$ac_system" = "xLinux"
1886         then
1887                 with_libiptc="pkgconfig"
1888         else
1889                 with_libiptc="no (Linux only)"
1890         fi
1891 ])
1892
1893 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
1894 then
1895         with_libiptc="no (Don't have pkg-config)"
1896 fi
1897
1898 if test "x$with_libiptc" = "xpkgconfig"
1899 then
1900         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
1901         if test $? -ne 0
1902         then
1903                 with_libiptc="no (pkg-config doesn't know libiptc)"
1904         fi
1905 fi
1906 if test "x$with_libiptc" = "xpkgconfig"
1907 then
1908         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
1909         if test $? -ne 0
1910         then
1911                 with_libiptc="no ($PKG_CONFIG failed)"
1912         fi
1913         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
1914         if test $? -ne 0
1915         then
1916                 with_libiptc="no ($PKG_CONFIG failed)"
1917         fi
1918 fi
1919
1920 SAVE_CPPFLAGS="$CPPFLAGS"
1921 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
1922
1923 # check whether the header file for libiptc is available.
1924 if test "x$with_libiptc" = "xpkgconfig"
1925 then
1926         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
1927                         [with_libiptc="no (header file missing)"])
1928 fi
1929 # If the header file is available, check for the required type declaractions.
1930 # They may be missing in old versions of libiptc. In that case, they will be
1931 # declared in the iptables plugin.
1932 if test "x$with_libiptc" = "xpkgconfig"
1933 then
1934         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
1935 fi
1936 # Check for the iptc_init symbol in the library.
1937 # This could be in iptc or ip4tc
1938 if test "x$with_libiptc" = "xpkgconfig"
1939 then
1940         SAVE_LIBS="$LIBS"
1941         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
1942                         [with_libiptc="pkgconfig"],
1943                         [with_libiptc="no"],
1944                         [$with_libiptc_libs])
1945         LIBS="$SAVE_LIBS"
1946 fi
1947 if test "x$with_libiptc" = "xpkgconfig"
1948 then
1949         with_libiptc="yes"
1950 fi
1951
1952 CPPFLAGS="$SAVE_CPPFLAGS"
1953
1954 if test "x$with_libiptc" = "xown"
1955 then
1956         with_libiptc_cflags=""
1957         with_libiptc_libs=""
1958 fi
1959 if test "x$with_libiptc" = "xown"
1960 then
1961         AC_CHECK_HEADERS(linux/netfilter_ipv4/ip_tables.h linux/netfilter_ipv6/ip6_tables.h linux/netfilter/x_tables.h, [],
1962         [
1963                 with_libiptc="no (Linux iptables headers not found)"
1964         ],
1965         [
1966 #include "$srcdir/src/owniptc/ipt_kernel_headers.h"
1967         ])
1968 fi
1969 AM_CONDITIONAL(BUILD_WITH_OWN_LIBIPTC, test "x$with_libiptc" = "xown")
1970 if test "x$with_libiptc" = "xown"
1971 then
1972         AC_DEFINE(OWN_LIBIPTC, 1, [Define to 1 if we use the shipped iptc library.])
1973         with_libiptc="yes"
1974 fi
1975
1976 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
1977 if test "x$with_libiptc" = "xyes"
1978 then
1979         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
1980         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
1981         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
1982         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
1983 fi
1984 # }}}
1985
1986 # --with-java {{{
1987 with_java_home="$JAVA_HOME"
1988 with_java_vmtype="client"
1989 with_java_cflags=""
1990 with_java_libs=""
1991 JAVAC="$JAVAC"
1992 JAR="$JAR"
1993 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
1994 [
1995         if test "x$withval" = "xno"
1996         then
1997                 with_java="no"
1998         else if test "x$withval" = "xyes"
1999         then
2000                 with_java="yes"
2001         else
2002                 with_java_home="$withval"
2003                 with_java="yes"
2004         fi; fi
2005 ],
2006 [with_java="yes"])
2007 if test "x$with_java" = "xyes"
2008 then
2009         if test -d "$with_java_home"
2010         then
2011                 AC_MSG_CHECKING([for jni.h])
2012                 TMPVAR=`find "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2013                 if test "x$TMPVAR" != "x"
2014                 then
2015                         AC_MSG_RESULT([found in $TMPVAR])
2016                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2017                 else
2018                         AC_MSG_RESULT([not found])
2019                 fi
2020
2021                 AC_MSG_CHECKING([for jni_md.h])
2022                 TMPVAR=`find "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2023                 if test "x$TMPVAR" != "x"
2024                 then
2025                         AC_MSG_RESULT([found in $TMPVAR])
2026                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2027                 else
2028                         AC_MSG_RESULT([not found])
2029                 fi
2030
2031                 AC_MSG_CHECKING([for libjvm.so])
2032                 TMPVAR=`find "$with_java_home" -name libjvm.so -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2033                 if test "x$TMPVAR" != "x"
2034                 then
2035                         AC_MSG_RESULT([found in $TMPVAR])
2036                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2037                 else
2038                         AC_MSG_RESULT([not found])
2039                 fi
2040
2041                 if test "x$JAVAC" = "x"
2042                 then
2043                         AC_MSG_CHECKING([for javac])
2044                         TMPVAR=`find "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2045                         if test "x$TMPVAR" != "x"
2046                         then
2047                                 JAVAC="$TMPVAR"
2048                                 AC_MSG_RESULT([$JAVAC])
2049                         else
2050                                 AC_MSG_RESULT([not found])
2051                         fi
2052                 fi
2053                 if test "x$JAR" = "x"
2054                 then
2055                         AC_MSG_CHECKING([for jar])
2056                         TMPVAR=`find "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2057                         if test "x$TMPVAR" != "x"
2058                         then
2059                                 JAR="$TMPVAR"
2060                                 AC_MSG_RESULT([$JAR])
2061                         else
2062                                 AC_MSG_RESULT([not found])
2063                         fi
2064                 fi
2065         else if test "x$with_java_home" != "x"
2066         then
2067                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2068         fi; fi
2069 fi
2070
2071 if test "x$JAVA_CPPFLAGS" != "x"
2072 then
2073         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2074 fi
2075 if test "x$JAVA_CFLAGS" != "x"
2076 then
2077         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2078 fi
2079 if test "x$JAVA_LDFLAGS" != "x"
2080 then
2081         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2082 fi
2083 if test "x$JAVAC" = "x"
2084 then
2085         with_javac_path="$PATH"
2086         if test "x$with_java_home" != "x"
2087         then
2088                 with_javac_path="$with_java_home:with_javac_path"
2089                 if test -d "$with_java_home/bin"
2090                 then
2091                         with_javac_path="$with_java_home/bin:with_javac_path"
2092                 fi
2093         fi
2094
2095         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2096 fi
2097 if test "x$JAVAC" = "x"
2098 then
2099         with_java="no (javac not found)"
2100 fi
2101 if test "x$JAR" = "x"
2102 then
2103         with_jar_path="$PATH"
2104         if test "x$with_java_home" != "x"
2105         then
2106                 with_jar_path="$with_java_home:$with_jar_path"
2107                 if test -d "$with_java_home/bin"
2108                 then
2109                         with_jar_path="$with_java_home/bin:$with_jar_path"
2110                 fi
2111         fi
2112
2113         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2114 fi
2115 if test "x$JAR" = "x"
2116 then
2117         with_java="no (jar not found)"
2118 fi
2119
2120 SAVE_CPPFLAGS="$CPPFLAGS"
2121 SAVE_CFLAGS="$CFLAGS"
2122 SAVE_LDFLAGS="$LDFLAGS"
2123 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2124 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2125 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2126
2127 if test "x$with_java" = "xyes"
2128 then
2129         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2130 fi
2131 if test "x$with_java" = "xyes"
2132 then
2133         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2134         [with_java="yes"],
2135         [with_java="no (libjvm not found)"],
2136         [$JAVA_LIBS])
2137 fi
2138 if test "x$with_java" = "xyes"
2139 then
2140         JAVA_LIBS="$JAVA_LIBS -ljvm"
2141         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2142 fi
2143
2144 CPPFLAGS="$SAVE_CPPFLAGS"
2145 CFLAGS="$SAVE_CFLAGS"
2146 LDFLAGS="$SAVE_LDFLAGS"
2147
2148 AC_SUBST(JAVA_CPPFLAGS)
2149 AC_SUBST(JAVA_CFLAGS)
2150 AC_SUBST(JAVA_LDFLAGS)
2151 AC_SUBST(JAVA_LIBS)
2152 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2153 # }}}
2154
2155 # --with-libmemcached {{{
2156 with_libmemcached_cppflags=""
2157 with_libmemcached_ldflags=""
2158 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2159 [
2160         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2161         then
2162                 with_libmemcached_cppflags="-I$withval/include"
2163                 with_libmemcached_ldflags="-L$withval/lib"
2164                 with_libmemcached="yes"
2165         else
2166                 with_libmemcached="$withval"
2167         fi
2168 ],
2169 [
2170         with_libmemcached="yes"
2171 ])
2172 if test "x$with_libmemcached" = "xyes"
2173 then
2174         SAVE_CPPFLAGS="$CPPFLAGS"
2175         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2176
2177         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2178
2179         CPPFLAGS="$SAVE_CPPFLAGS"
2180 fi
2181 if test "x$with_libmemcached" = "xyes"
2182 then
2183         SAVE_CPPFLAGS="$CPPFLAGS"
2184         SAVE_LDFLAGS="$LDFLAGS"
2185         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2186         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2187
2188         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2189
2190         CPPFLAGS="$SAVE_CPPFLAGS"
2191         LDFLAGS="$SAVE_LDFLAGS"
2192 fi
2193 if test "x$with_libmemcached" = "xyes"
2194 then
2195         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2196         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2197         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2198         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2199         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2200         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2201         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2202 fi
2203 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2204 # }}}
2205
2206 # --with-libmodbus {{{
2207 with_libmodbus_config=""
2208 with_libmodbus_cflags=""
2209 with_libmodbus_libs=""
2210 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2211 [
2212         if test "x$withval" = "xno"
2213         then
2214                 with_libmodbus="no"
2215         else if test "x$withval" = "xyes"
2216         then
2217                 with_libmodbus="use_pkgconfig"
2218         else if test -d "$with_libmodbus/lib"
2219         then
2220                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2221                 with_libmodbus_cflags="-I$withval/include"
2222                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2223                 with_libmodbus="yes"
2224         fi; fi; fi
2225 ],
2226 [with_libmodbus="use_pkgconfig"])
2227
2228 # configure using pkg-config
2229 if test "x$with_libmodbus" = "xuse_pkgconfig"
2230 then
2231         if test "x$PKG_CONFIG" = "x"
2232         then
2233                 with_libmodbus="no (Don't have pkg-config)"
2234         fi
2235 fi
2236 if test "x$with_libmodbus" = "xuse_pkgconfig"
2237 then
2238         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2239         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2240         if test $? -ne 0
2241         then
2242                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2243         fi
2244 fi
2245 if test "x$with_libmodbus" = "xuse_pkgconfig"
2246 then
2247         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2248         if test $? -ne 0
2249         then
2250                 with_libmodbus="no ($PKG_CONFIG failed)"
2251         fi
2252         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2253         if test $? -ne 0
2254         then
2255                 with_libmodbus="no ($PKG_CONFIG failed)"
2256         fi
2257 fi
2258 if test "x$with_libmodbus" = "xuse_pkgconfig"
2259 then
2260         with_libmodbus="yes"
2261 fi
2262
2263 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2264 # the actual checks.
2265 if test "x$with_libmodbus" = "xyes"
2266 then
2267         SAVE_CPPFLAGS="$CPPFLAGS"
2268         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2269
2270         AC_CHECK_HEADERS(modbus/modbus.h, [], [with_libmodbus="no (modbus/modbus.h not found)"])
2271
2272         CPPFLAGS="$SAVE_CPPFLAGS"
2273 fi
2274 if test "x$with_libmodbus" = "xyes"
2275 then
2276         SAVE_CPPFLAGS="$CPPFLAGS"
2277         SAVE_LDFLAGS="$LDFLAGS"
2278
2279         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2280         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2281
2282         AC_CHECK_LIB(modbus, modbus_connect,
2283                      [with_libmodbus="yes"],
2284                      [with_libmodbus="no (symbol modbus_connect not found)"])
2285
2286         CPPFLAGS="$SAVE_CPPFLAGS"
2287         LDFLAGS="$SAVE_LDFLAGS"
2288 fi
2289 if test "x$with_libmodbus" = "xyes"
2290 then
2291         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2292         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2293         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2294         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2295 fi
2296 # }}}
2297
2298 # --with-libmongoc {{{
2299 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2300 [
2301  if test "x$withval" = "xyes"
2302  then
2303          with_libmongoc="yes"
2304  else if test "x$withval" = "xno"
2305  then
2306          with_libmongoc="no"
2307  else
2308          with_libmongoc="yes"
2309          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2310          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2311  fi; fi
2312 ],
2313 [with_libmongoc="yes"])
2314
2315 SAVE_CPPFLAGS="$CPPFLAGS"
2316 SAVE_LDFLAGS="$LDFLAGS"
2317
2318 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2319 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2320
2321 if test "x$with_libmongoc" = "xyes"
2322 then
2323         if test "x$LIBMONGOC_CPPFLAGS" != "x"
2324         then
2325                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2326         fi
2327         AC_CHECK_HEADERS(mongo.h,
2328         [with_libmongoc="yes"],
2329         [with_libmongoc="no ('mongo.h' not found)"],
2330 [#if HAVE_STDINT_H
2331 # define MONGO_HAVE_STDINT 1
2332 #else
2333 # define MONGO_USE_LONG_LONG_INT 1
2334 #endif
2335 ])
2336 fi
2337 if test "x$with_libmongoc" = "xyes"
2338 then
2339         if test "x$LIBMONGOC_LDFLAGS" != "x"
2340         then
2341                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2342         fi
2343         AC_CHECK_LIB(mongoc, mongo_run_command,
2344         [with_libmongoc="yes"],
2345         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2346 fi
2347
2348 CPPFLAGS="$SAVE_CPPFLAGS"
2349 LDFLAGS="$SAVE_LDFLAGS"
2350
2351 if test "x$with_libmongoc" = "xyes"
2352 then
2353         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2354         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2355         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2356         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2357 fi
2358 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2359 # }}}
2360
2361 # --with-libmysql {{{
2362 with_mysql_config="mysql_config"
2363 with_mysql_cflags=""
2364 with_mysql_libs=""
2365 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2366 [
2367         if test "x$withval" = "xno"
2368         then
2369                 with_libmysql="no"
2370         else if test "x$withval" = "xyes"
2371         then
2372                 with_libmysql="yes"
2373         else
2374                 if test -f "$withval" && test -x "$withval";
2375                 then
2376                         with_mysql_config="$withval"
2377                 else if test -x "$withval/bin/mysql_config"
2378                 then
2379                         with_mysql_config="$withval/bin/mysql_config"
2380                 fi; fi
2381                 with_libmysql="yes"
2382         fi; fi
2383 ],
2384 [
2385         with_libmysql="yes"
2386 ])
2387 if test "x$with_libmysql" = "xyes"
2388 then
2389         with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
2390         mysql_config_status=$?
2391
2392         if test $mysql_config_status -ne 0
2393         then
2394                 with_libmysql="no ($with_mysql_config failed)"
2395         else
2396                 SAVE_CPPFLAGS="$CPPFLAGS"
2397                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2398
2399                 have_mysql_h="no"
2400                 have_mysql_mysql_h="no"
2401                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2402
2403                 if test "x$have_mysql_h" = "xno"
2404                 then
2405                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2406                 fi
2407
2408                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2409                 then
2410                         with_libmysql="no (mysql.h not found)"
2411                 fi
2412
2413                 CPPFLAGS="$SAVE_CPPFLAGS"
2414         fi
2415 fi
2416 if test "x$with_libmysql" = "xyes"
2417 then
2418         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2419         mysql_config_status=$?
2420
2421         if test $mysql_config_status -ne 0
2422         then
2423                 with_libmysql="no ($with_mysql_config failed)"
2424         else
2425                 AC_CHECK_LIB(mysqlclient, mysql_init,
2426                  [with_libmysql="yes"],
2427                  [with_libmysql="no (symbol 'mysql_init' not found)"],
2428                  [$with_mysql_libs])
2429
2430                 AC_CHECK_LIB(mysqlclient, mysql_get_server_version,
2431                  [with_libmysql="yes"],
2432                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2433                  [$with_mysql_libs])
2434         fi
2435 fi
2436 if test "x$with_libmysql" = "xyes"
2437 then
2438         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2439         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2440         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2441         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
2442 fi
2443 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
2444 # }}}
2445
2446 # --with-libnetlink {{{
2447 with_libnetlink_cflags=""
2448 with_libnetlink_libs="-lnetlink"
2449 AC_ARG_WITH(libnetlink, [AS_HELP_STRING([--with-libnetlink@<:@=PREFIX@:>@], [Path to libnetlink.])],
2450 [
2451  echo "libnetlink: withval = $withval"
2452  if test "x$withval" = "xyes"
2453  then
2454          with_libnetlink="yes"
2455  else if test "x$withval" = "xno"
2456  then
2457          with_libnetlink="no"
2458  else
2459          if test -d "$withval/include"
2460          then
2461                  with_libnetlink_cflags="-I$withval/include"
2462                  with_libnetlink_libs="-L$withval/lib -lnetlink"
2463                  with_libnetlink="yes"
2464          else
2465                  AC_MSG_ERROR("no such directory: $withval/include")
2466          fi
2467  fi; fi
2468 ],
2469 [
2470  if test "x$ac_system" = "xLinux"
2471  then
2472          with_libnetlink="yes"
2473  else
2474          with_libnetlink="no (Linux only library)"
2475  fi
2476 ])
2477 if test "x$with_libnetlink" = "xyes"
2478 then
2479         SAVE_CFLAGS="$CFLAGS"
2480         CFLAGS="$CFLAGS $with_libnetlink_cflags"
2481
2482         with_libnetlink="no (libnetlink.h not found)"
2483
2484         AC_CHECK_HEADERS(libnetlink.h iproute/libnetlink.h linux/libnetlink.h,
2485         [
2486          with_libnetlink="yes"
2487          break
2488         ], [],
2489 [#include <stdio.h>
2490 #include <sys/types.h>
2491 #include <asm/types.h>
2492 #include <sys/socket.h>
2493 #include <linux/netlink.h>
2494 #include <linux/rtnetlink.h>])
2495         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2496 [#include <stdio.h>
2497 #include <sys/types.h>
2498 #include <asm/types.h>
2499 #include <sys/socket.h>])
2500
2501         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2502 [[[
2503 #include <stdio.h>
2504 #include <sys/types.h>
2505 #include <asm/types.h>
2506 #include <sys/socket.h>
2507 #include <linux/netlink.h>
2508 #include <linux/rtnetlink.h>
2509 ]]],
2510 [[[
2511 int retval = TCA_STATS2;
2512 return (retval);
2513 ]]]
2514         )],
2515         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2516
2517         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2518 [[[
2519 #include <stdio.h>
2520 #include <sys/types.h>
2521 #include <asm/types.h>
2522 #include <sys/socket.h>
2523 #include <linux/netlink.h>
2524 #include <linux/rtnetlink.h>
2525 ]]],
2526 [[[
2527 int retval = TCA_STATS;
2528 return (retval);
2529 ]]]
2530         )],
2531         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
2532
2533         CFLAGS="$SAVE_CFLAGS"
2534 fi
2535 if test "x$with_libnetlink" = "xyes"
2536 then
2537         AC_CHECK_LIB(netlink, rtnl_open,
2538                      [with_libnetlink="yes"],
2539                      [with_libnetlink="no (symbol 'rtnl_open' not found)"],
2540                      [$with_libnetlink_libs])
2541 fi
2542 if test "x$with_libnetlink" = "xyes"
2543 then
2544         SAVE_CFLAGS="$CFLAGS"
2545         CFLAGS="$CFLAGS $with_libnetlink_cflags"
2546
2547         AC_CACHE_CHECK(
2548                 [if function 'rtnl_dump_filter' expects five arguments],
2549                 [c_cv_rtnl_dump_filter_five_args],
2550                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2551 [[[
2552 #include <stdio.h>
2553 #include <sys/types.h>
2554 #include <asm/types.h>
2555 #include <sys/socket.h>
2556 #if HAVE_LIBNETLINK_H
2557 # include <libnetlink.h>
2558 #elif HAVE_IPROUTE_LIBNETLINK_H
2559 # include <iproute/libnetlink.h>
2560 #elif HAVE_LINUX_LIBNETLINK_H
2561 # include <linux/libnetlink.h>
2562 #endif
2563 ]]],
2564 [[[
2565 if (rtnl_dump_filter(NULL, NULL, NULL, NULL, NULL))
2566         return 1;
2567 return 0;
2568 ]]]
2569         )],
2570         [c_cv_rtnl_dump_filter_five_args="yes"],
2571         [c_cv_rtnl_dump_filter_five_args="no"]
2572         )
2573 )
2574
2575         AC_CACHE_CHECK(
2576                 [if function 'rtnl_dump_filter' expects three arguments],
2577                 [c_cv_rtnl_dump_filter_three_args],
2578                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2579 [[[
2580 #include <stdio.h>
2581 #include <sys/types.h>
2582 #include <asm/types.h>
2583 #include <sys/socket.h>
2584 #if HAVE_LIBNETLINK_H
2585 # include <libnetlink.h>
2586 #elif HAVE_IPROUTE_LIBNETLINK_H
2587 # include <iproute/libnetlink.h>
2588 #elif HAVE_LINUX_LIBNETLINK_H
2589 # include <linux/libnetlink.h>
2590 #endif
2591 ]]],
2592 [[[
2593 if (rtnl_dump_filter(NULL, NULL, NULL))
2594         return 1;
2595 return 0;
2596 ]]]
2597         )],
2598         [c_cv_rtnl_dump_filter_three_args="yes"],
2599         [c_cv_rtnl_dump_filter_three_args="no"]
2600         )
2601 )
2602
2603         CFLAGS="$SAVE_CFLAGS"
2604
2605         if test "x$c_cv_rtnl_dump_filter_five_args" = "xyes"
2606         then
2607                 AC_DEFINE(RTNL_DUMP_FILTER_FIVE_ARGS, 1,
2608                                 [Define to 1 if function 'rtnl_dump_filter' expects five arguments.])
2609         fi
2610         if test "x$c_cv_rtnl_dump_filter_three_args" = "xyes"
2611         then
2612                 AC_DEFINE(RTNL_DUMP_FILTER_THREE_ARGS, 1,
2613                                 [Define to 1 if function 'rtnl_dump_filter' expects three arguments.])
2614         fi
2615
2616         BUILD_WITH_LIBNETLINK_CFLAGS="$with_libnetlink_cflags"
2617         BUILD_WITH_LIBNETLINK_LIBS="$with_libnetlink_libs"
2618         AC_SUBST(BUILD_WITH_LIBNETLINK_CFLAGS)
2619         AC_SUBST(BUILD_WITH_LIBNETLINK_LIBS)
2620 fi
2621 AM_CONDITIONAL(BUILD_WITH_LIBNETLINK, test "x$with_libnetlink" = "xyes")
2622 # }}}
2623
2624 # --with-libnetapp {{{
2625 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2626 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
2627 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
2628 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2629 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2630 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2631 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2632 [
2633  if test -d "$withval"
2634  then
2635          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2636          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2637          with_libnetapp="yes"
2638  else
2639          with_libnetapp="$withval"
2640  fi
2641 ],
2642 [
2643  with_libnetapp="yes"
2644 ])
2645
2646 SAVE_CPPFLAGS="$CPPFLAGS"
2647 SAVE_LDFLAGS="$LDFLAGS"
2648 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2649 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2650
2651 if test "x$with_libnetapp" = "xyes"
2652 then
2653         if test "x$LIBNETAPP_CPPFLAGS" != "x"
2654         then
2655                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2656         fi
2657         AC_CHECK_HEADERS(netapp_api.h,
2658                 [with_libnetapp="yes"],
2659                 [with_libnetapp="no (netapp_api.h not found)"])
2660 fi
2661
2662 if test "x$with_libnetapp" = "xyes"
2663 then
2664         if test "x$LIBNETAPP_LDFLAGS" != "x"
2665         then
2666                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2667         fi
2668
2669         if test "x$LIBNETAPP_LIBS" = "x"
2670         then
2671                 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
2672         fi
2673         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2674
2675         AC_CHECK_LIB(netapp, na_server_invoke_elem,
2676                 [with_libnetapp="yes"],
2677                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2678                 [$LIBNETAPP_LIBS])
2679         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
2680 fi
2681
2682 CPPFLAGS="$SAVE_CPPFLAGS"
2683 LDFLAGS="$SAVE_LDFLAGS"
2684
2685 if test "x$with_libnetapp" = "xyes"
2686 then
2687         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
2688 fi
2689
2690 AC_SUBST(LIBNETAPP_CPPFLAGS)
2691 AC_SUBST(LIBNETAPP_LDFLAGS)
2692 AC_SUBST(LIBNETAPP_LIBS)
2693 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
2694 # }}}
2695
2696 # --with-libnetsnmp {{{
2697 with_snmp_config="net-snmp-config"
2698 with_snmp_cflags=""
2699 with_snmp_libs=""
2700 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
2701 [
2702         if test "x$withval" = "xno"
2703         then
2704                 with_libnetsnmp="no"
2705         else if test "x$withval" = "xyes"
2706         then
2707                 with_libnetsnmp="yes"
2708         else
2709                 if test -x "$withval"
2710                 then
2711                         with_snmp_config="$withval"
2712                         with_libnetsnmp="yes"
2713                 else
2714                         with_snmp_config="$withval/bin/net-snmp-config"
2715                         with_libnetsnmp="yes"
2716                 fi
2717         fi; fi
2718 ],
2719 [with_libnetsnmp="yes"])
2720 if test "x$with_libnetsnmp" = "xyes"
2721 then
2722         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
2723         snmp_config_status=$?
2724
2725         if test $snmp_config_status -ne 0
2726         then
2727                 with_libnetsnmp="no ($with_snmp_config failed)"
2728         else
2729                 SAVE_CPPFLAGS="$CPPFLAGS"
2730                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
2731                 
2732                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
2733
2734                 CPPFLAGS="$SAVE_CPPFLAGS"
2735         fi
2736 fi
2737 if test "x$with_libnetsnmp" = "xyes"
2738 then
2739         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
2740         snmp_config_status=$?
2741
2742         if test $snmp_config_status -ne 0
2743         then
2744                 with_libnetsnmp="no ($with_snmp_config failed)"
2745         else
2746                 AC_CHECK_LIB(netsnmp, init_snmp,
2747                 [with_libnetsnmp="yes"],
2748                 [with_libnetsnmp="no (libnetsnmp not found)"],
2749                 [$with_snmp_libs])
2750         fi
2751 fi
2752 if test "x$with_libnetsnmp" = "xyes"
2753 then
2754         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
2755         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
2756         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
2757         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
2758 fi
2759 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
2760 # }}}
2761
2762 # --with-liboconfig {{{
2763 with_own_liboconfig="no"
2764 liboconfig_LDFLAGS="$LDFLAGS"
2765 liboconfig_CPPFLAGS="$CPPFLAGS"
2766 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
2767 [
2768         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2769         then
2770                 if test -d "$withval/lib"
2771                 then
2772                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
2773                 fi
2774                 if test -d "$withval/include"
2775                 then
2776                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
2777                 fi
2778         fi
2779         if test "x$withval" = "xno"
2780         then
2781                 AC_MSG_ERROR("liboconfig is required")
2782         fi
2783 ],
2784 [
2785         with_liboconfig="yes"
2786 ])
2787
2788 save_LDFLAGS="$LDFLAGS"
2789 save_CPPFLAGS="$CPPFLAGS"
2790 LDFLAGS="$liboconfig_LDFLAGS"
2791 CPPFLAGS="$liboconfig_CPPFLAGS"
2792 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
2793 [
2794         with_liboconfig="yes"
2795         with_own_liboconfig="no"
2796 ],
2797 [
2798         with_liboconfig="yes"
2799         with_own_liboconfig="yes"
2800         LDFLAGS="$save_LDFLAGS"
2801         CPPFLAGS="$save_CPPFLAGS"
2802 ])
2803
2804 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
2805 if test "x$with_own_liboconfig" = "xyes"
2806 then
2807         with_liboconfig="yes (shipped version)"
2808 fi
2809 # }}}
2810
2811 # --with-liboping {{{
2812 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
2813 [
2814  if test "x$withval" = "xyes"
2815  then
2816          with_liboping="yes"
2817  else if test "x$withval" = "xno"
2818  then
2819          with_liboping="no"
2820  else
2821          with_liboping="yes"
2822          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
2823          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
2824  fi; fi
2825 ],
2826 [with_liboping="yes"])
2827
2828 SAVE_CPPFLAGS="$CPPFLAGS"
2829 SAVE_LDFLAGS="$LDFLAGS"
2830
2831 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
2832 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
2833
2834 if test "x$with_liboping" = "xyes"
2835 then
2836         if test "x$LIBOPING_CPPFLAGS" != "x"
2837         then
2838                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
2839         fi
2840         AC_CHECK_HEADERS(oping.h,
2841         [with_liboping="yes"],
2842         [with_liboping="no (oping.h not found)"])
2843 fi
2844 if test "x$with_liboping" = "xyes"
2845 then
2846         if test "x$LIBOPING_LDFLAGS" != "x"
2847         then
2848                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
2849         fi
2850         AC_CHECK_LIB(oping, ping_construct,
2851         [with_liboping="yes"],
2852         [with_liboping="no (symbol 'ping_construct' not found)"])
2853 fi
2854
2855 CPPFLAGS="$SAVE_CPPFLAGS"
2856 LDFLAGS="$SAVE_LDFLAGS"
2857
2858 if test "x$with_liboping" = "xyes"
2859 then
2860         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
2861         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
2862         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
2863         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
2864 fi
2865 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
2866 # }}}
2867
2868 # --with-oracle {{{
2869 with_oracle_cppflags=""
2870 with_oracle_libs=""
2871 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
2872 [
2873         if test "x$withval" = "xyes"
2874         then
2875                 if test "x$ORACLE_HOME" = "x"
2876                 then
2877                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
2878                 fi
2879                 with_oracle="yes"
2880         else if test "x$withval" = "xno"
2881         then
2882                 with_oracle="no"
2883         else
2884                 with_oracle="yes"
2885                 ORACLE_HOME="$withval"
2886         fi; fi
2887 ],
2888 [
2889         if test "x$ORACLE_HOME" = "x"
2890         then
2891                 with_oracle="no (ORACLE_HOME is not set)"
2892         else
2893                 with_oracle="yes"
2894         fi
2895 ])
2896 if test "x$ORACLE_HOME" != "x"
2897 then
2898         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
2899
2900         if test -e "$ORACLE_HOME/lib/ldflags"
2901         then
2902                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
2903         fi
2904         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
2905         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
2906 fi
2907 if test "x$with_oracle" = "xyes"
2908 then
2909         SAVE_CPPFLAGS="$CPPFLAGS"
2910         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2911
2912         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
2913
2914         CPPFLAGS="$SAVE_CPPFLAGS"
2915 fi
2916 if test "x$with_oracle" = "xyes"
2917 then
2918         SAVE_CPPFLAGS="$CPPFLAGS"
2919         SAVE_LDFLAGS="$LDFLAGS"
2920         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2921         LDFLAGS="$LDFLAGS $with_oracle_libs"
2922
2923         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
2924
2925         CPPFLAGS="$SAVE_CPPFLAGS"
2926         LDFLAGS="$SAVE_LDFLAGS"
2927 fi
2928 if test "x$with_oracle" = "xyes"
2929 then
2930         BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
2931         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
2932         AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
2933         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
2934 fi
2935 # }}}
2936
2937 # --with-libowcapi {{{
2938 with_libowcapi_cppflags=""
2939 with_libowcapi_libs="-lowcapi"
2940 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
2941 [
2942         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2943         then
2944                 with_libowcapi_cppflags="-I$withval/include"
2945                 with_libowcapi_libs="-L$withval/lib -lowcapi"
2946                 with_libowcapi="yes"
2947         else
2948                 with_libowcapi="$withval"
2949         fi
2950 ],
2951 [
2952         with_libowcapi="yes"
2953 ])
2954 if test "x$with_libowcapi" = "xyes"
2955 then
2956         SAVE_CPPFLAGS="$CPPFLAGS"
2957         CPPFLAGS="$with_libowcapi_cppflags"
2958         
2959         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
2960
2961         CPPFLAGS="$SAVE_CPPFLAGS"
2962 fi
2963 if test "x$with_libowcapi" = "xyes"
2964 then
2965         SAVE_LDFLAGS="$LDFLAGS"
2966         SAVE_CPPFLAGS="$CPPFLAGS"
2967         LDFLAGS="$with_libowcapi_libs"
2968         CPPFLAGS="$with_libowcapi_cppflags"
2969         
2970         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
2971
2972         LDFLAGS="$SAVE_LDFLAGS"
2973         CPPFLAGS="$SAVE_CPPFLAGS"
2974 fi
2975 if test "x$with_libowcapi" = "xyes"
2976 then
2977         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
2978         BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
2979         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
2980         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
2981 fi
2982 # }}}
2983
2984 # --with-libpcap {{{
2985 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
2986 [
2987         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2988         then
2989                 LDFLAGS="$LDFLAGS -L$withval/lib"
2990                 CPPFLAGS="$CPPFLAGS -I$withval/include"
2991                 with_libpcap="yes"
2992         else
2993                 with_libpcap="$withval"
2994         fi
2995 ],
2996 [
2997         with_libpcap="yes"
2998 ])
2999 if test "x$with_libpcap" = "xyes"
3000 then
3001         AC_CHECK_LIB(pcap, pcap_open_live,
3002         [
3003                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3004         ], [with_libpcap="no (libpcap not found)"])
3005 fi
3006 if test "x$with_libpcap" = "xyes"
3007 then
3008         AC_CHECK_HEADERS(pcap.h,,
3009                          [with_libpcap="no (pcap.h not found)"])
3010 fi
3011 if test "x$with_libpcap" = "xyes"
3012 then
3013         AC_CHECK_HEADERS(pcap-bpf.h,,
3014                          [with_libpcap="no (pcap-bpf.h not found)"])
3015 fi
3016 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3017 # }}}
3018
3019 # --with-libperl {{{
3020 perl_interpreter="perl"
3021 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3022 [
3023         if test -f "$withval" && test -x "$withval"
3024         then
3025                 perl_interpreter="$withval"
3026                 with_libperl="yes"
3027         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3028         then
3029                 LDFLAGS="$LDFLAGS -L$withval/lib"
3030                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3031                 perl_interpreter="$withval/bin/perl"
3032                 with_libperl="yes"
3033         else
3034                 with_libperl="$withval"
3035         fi; fi
3036 ],
3037 [
3038         with_libperl="yes"
3039 ])
3040
3041 AC_MSG_CHECKING([for perl])
3042 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3043 if test -x "$perl_interpreter"
3044 then
3045         AC_MSG_RESULT([yes ($perl_interpreter)])
3046 else
3047         perl_interpreter=""
3048         AC_MSG_RESULT([no])
3049 fi
3050
3051 AC_SUBST(PERL, "$perl_interpreter")
3052
3053 if test "x$with_libperl" = "xyes" \
3054         && test -n "$perl_interpreter"
3055 then
3056   SAVE_CFLAGS="$CFLAGS"
3057   SAVE_LDFLAGS="$LDFLAGS"
3058 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3059   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3060   PERL_LDFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3061   CFLAGS="$CFLAGS $PERL_CFLAGS"
3062   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3063
3064   AC_CACHE_CHECK([for libperl],
3065     [c_cv_have_libperl],
3066     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3067 [[[
3068 #define PERL_NO_GET_CONTEXT
3069 #include <EXTERN.h>
3070 #include <perl.h>
3071 #include <XSUB.h>
3072 ]]],
3073 [[[
3074        dTHX;
3075        load_module (PERL_LOADMOD_NOIMPORT,
3076                          newSVpv ("Collectd::Plugin::FooBar", 24),
3077                          Nullsv);
3078 ]]]
3079       )],
3080       [c_cv_have_libperl="yes"],
3081       [c_cv_have_libperl="no"]
3082     )
3083   )
3084
3085   if test "x$c_cv_have_libperl" = "xyes"
3086   then
3087           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3088           AC_SUBST(PERL_CFLAGS)
3089           AC_SUBST(PERL_LDFLAGS)
3090   else
3091           with_libperl="no"
3092   fi
3093
3094   CFLAGS="$SAVE_CFLAGS"
3095   LDFLAGS="$SAVE_LDFLAGS"
3096 else if test -z "$perl_interpreter"; then
3097   with_libperl="no (no perl interpreter found)"
3098   c_cv_have_libperl="no"
3099 fi; fi
3100 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3101
3102 if test "x$with_libperl" = "xyes"
3103 then
3104         SAVE_CFLAGS="$CFLAGS"
3105         SAVE_LDFLAGS="$LDFLAGS"
3106         CFLAGS="$CFLAGS $PERL_CFLAGS"
3107         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3108
3109         AC_CACHE_CHECK([if perl supports ithreads],
3110                 [c_cv_have_perl_ithreads],
3111                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3112 [[[
3113 #include <EXTERN.h>
3114 #include <perl.h>
3115 #include <XSUB.h>
3116
3117 #if !defined(USE_ITHREADS)
3118 # error "Perl does not support ithreads!"
3119 #endif /* !defined(USE_ITHREADS) */
3120 ]]],
3121 [[[ ]]]
3122                         )],
3123                         [c_cv_have_perl_ithreads="yes"],
3124                         [c_cv_have_perl_ithreads="no"]
3125                 )
3126         )
3127
3128         if test "x$c_cv_have_perl_ithreads" = "xyes"
3129         then
3130                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3131         fi
3132
3133         CFLAGS="$SAVE_CFLAGS"
3134         LDFLAGS="$SAVE_LDFLAGS"
3135 fi
3136
3137 if test "x$with_libperl" = "xyes"
3138 then
3139         SAVE_CFLAGS="$CFLAGS"
3140         SAVE_LDFLAGS="$LDFLAGS"
3141         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3142         # (see issues #41 and #42)
3143         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3144         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3145
3146         AC_CACHE_CHECK([for broken Perl_load_module()],
3147                 [c_cv_have_broken_perl_load_module],
3148                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3149 [[[
3150 #define PERL_NO_GET_CONTEXT
3151 #include <EXTERN.h>
3152 #include <perl.h>
3153 #include <XSUB.h>
3154 ]]],
3155 [[[
3156                          dTHX;
3157                          load_module (PERL_LOADMOD_NOIMPORT,
3158                              newSVpv ("Collectd::Plugin::FooBar", 24),
3159                              Nullsv);
3160 ]]]
3161                         )],
3162                         [c_cv_have_broken_perl_load_module="no"],
3163                         [c_cv_have_broken_perl_load_module="yes"]
3164                 )
3165         )
3166
3167         CFLAGS="$SAVE_CFLAGS"
3168         LDFLAGS="$SAVE_LDFLAGS"
3169 fi
3170 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3171                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3172
3173 if test "x$with_libperl" = "xyes"
3174 then
3175         SAVE_CFLAGS="$CFLAGS"
3176         SAVE_LDFLAGS="$LDFLAGS"
3177         CFLAGS="$CFLAGS $PERL_CFLAGS"
3178         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3179
3180         AC_CHECK_MEMBER(
3181                 [struct mgvtbl.svt_local],
3182                 [have_struct_mgvtbl_svt_local="yes"],
3183                 [have_struct_mgvtbl_svt_local="no"],
3184                 [
3185 #include <EXTERN.h>
3186 #include <perl.h>
3187 #include <XSUB.h>
3188                 ])
3189
3190         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3191         then
3192                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3193                                   [Define if Perl's struct mgvtbl has member svt_local.])
3194         fi
3195
3196         CFLAGS="$SAVE_CFLAGS"
3197         LDFLAGS="$SAVE_LDFLAGS"
3198 fi
3199 # }}}
3200
3201 # --with-libpq {{{
3202 with_pg_config="pg_config"
3203 with_libpq_includedir=""
3204 with_libpq_libdir=""
3205 with_libpq_cppflags=""
3206 with_libpq_ldflags=""
3207 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3208         [Path to libpq.])],
3209 [
3210         if test "x$withval" = "xno"
3211         then
3212                 with_libpq="no"
3213         else if test "x$withval" = "xyes"
3214         then
3215                 with_libpq="yes"
3216         else
3217                 if test -f "$withval" && test -x "$withval";
3218                 then
3219                         with_pg_config="$withval"
3220                 else if test -x "$withval/bin/pg_config"
3221                 then
3222                         with_pg_config="$withval/bin/pg_config"
3223                 fi; fi
3224                 with_libpq="yes"
3225         fi; fi
3226 ],
3227 [
3228         with_libpq="yes"
3229 ])
3230 if test "x$with_libpq" = "xyes"
3231 then
3232         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3233         pg_config_status=$?
3234
3235         if test $pg_config_status -eq 0
3236         then
3237                 if test -n "$with_libpq_includedir"; then
3238                         for dir in $with_libpq_includedir; do
3239                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3240                         done
3241                 fi
3242         else
3243                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3244         fi
3245
3246         SAVE_CPPFLAGS="$CPPFLAGS"
3247         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3248
3249         AC_CHECK_HEADERS(libpq-fe.h, [],
3250                 [with_libpq="no (libpq-fe.h not found)"], [])
3251
3252         CPPFLAGS="$SAVE_CPPFLAGS"
3253 fi
3254 if test "x$with_libpq" = "xyes"
3255 then
3256         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3257         pg_config_status=$?
3258
3259         if test $pg_config_status -eq 0
3260         then
3261                 if test -n "$with_libpq_libdir"; then
3262                         for dir in $with_libpq_libdir; do
3263                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3264                         done
3265                 fi
3266         else
3267                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3268         fi
3269
3270         SAVE_LDFLAGS="$LDFLAGS"
3271         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3272
3273         AC_CHECK_LIB(pq, PQconnectdb,
3274                 [with_libpq="yes"],
3275                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3276
3277         AC_CHECK_LIB(pq, PQserverVersion,
3278                 [with_libpq="yes"],
3279                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3280
3281         LDFLAGS="$SAVE_LDFLAGS"
3282 fi
3283 if test "x$with_libpq" = "xyes"
3284 then
3285         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3286         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3287         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3288         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3289 fi
3290 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3291 # }}}
3292
3293 # --with-libpthread {{{
3294 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3295 [       if test "x$withval" != "xno" \
3296                 && test "x$withval" != "xyes"
3297         then
3298                 LDFLAGS="$LDFLAGS -L$withval/lib"
3299                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3300                 with_libpthread="yes"
3301         else
3302                 if test "x$withval" = "xno"
3303                 then
3304                         with_libpthread="no (disabled)"
3305                 fi
3306         fi
3307 ], [with_libpthread="yes"])
3308 if test "x$with_libpthread" = "xyes"
3309 then
3310         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3311 fi
3312
3313 if test "x$with_libpthread" = "xyes"
3314 then
3315         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
3316 fi
3317 if test "x$with_libpthread" = "xyes"
3318 then
3319         collect_pthread=1
3320 else
3321         collect_pthread=0
3322 fi
3323 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3324         [Wether or not to use pthread (POSIX threads) library])
3325 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
3326 # }}}
3327
3328 # --with-python {{{
3329 with_python_prog=""
3330 with_python_path="$PATH"
3331 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3332 [
3333  if test "x$withval" = "xyes" || test "x$withval" = "xno"
3334  then
3335          with_python="$withval"
3336  else if test -x "$withval"
3337  then
3338          with_python_prog="$withval"
3339          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3340          with_python="yes"
3341  else if test -d "$withval"
3342  then
3343          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3344          with_python="yes"
3345  else
3346          AC_MSG_WARN([Argument not recognized: $withval])
3347  fi; fi; fi
3348 ], [with_python="yes"])
3349
3350 SAVE_PATH="$PATH"
3351 SAVE_CPPFLAGS="$CPPFLAGS"
3352 SAVE_LDFLAGS="$LDFLAGS"
3353 SAVE_LIBS="$LIBS"
3354
3355 PATH="$with_python_path"
3356
3357 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3358 then
3359         AC_MSG_CHECKING([for python])
3360         with_python_prog="`which python 2>/dev/null`"
3361         if test "x$with_python_prog" = "x"
3362         then
3363                 AC_MSG_RESULT([not found])
3364                 with_python="no (interpreter not found)"
3365         else
3366                 AC_MSG_RESULT([$with_python_prog])
3367         fi
3368 fi
3369
3370 if test "x$with_python" = "xyes"
3371 then
3372         AC_MSG_CHECKING([for Python CPPFLAGS])
3373         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3374         python_config_status=$?
3375
3376         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3377         then
3378                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3379                 with_python="no"
3380         else
3381                 AC_MSG_RESULT([$python_include_path])
3382         fi
3383 fi
3384
3385 if test "x$with_python" = "xyes"
3386 then
3387         CPPFLAGS="-I$python_include_path $CPPFLAGS"
3388         AC_CHECK_HEADERS(Python.h,
3389                          [with_python="yes"],
3390                          [with_python="no ('Python.h' not found)"])
3391 fi
3392
3393 if test "x$with_python" = "xyes"
3394 then
3395         AC_MSG_CHECKING([for Python LDFLAGS])
3396         python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2>&1`
3397         python_config_status=$?
3398
3399         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3400         then
3401                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3402                 with_python="no"
3403         else
3404                 AC_MSG_RESULT([$python_library_path])
3405         fi
3406 fi
3407
3408 if test "x$with_python" = "xyes"
3409 then
3410         AC_MSG_CHECKING([for Python LIBS])
3411         python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2>&1`
3412         python_config_status=$?
3413
3414         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3415         then
3416                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3417                 with_python="no"
3418         else
3419                 AC_MSG_RESULT([$python_library_flags])
3420         fi
3421 fi
3422
3423 if test "x$with_python" = "xyes"
3424 then
3425         LDFLAGS="-L$python_library_path $LDFLAGS"
3426         LIBS="$python_library_flags $LIBS"
3427
3428         AC_CHECK_FUNC(PyObject_CallFunction,
3429                       [with_python="yes"],
3430                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3431 fi
3432
3433 PATH="$SAVE_PATH"
3434 CPPFLAGS="$SAVE_CPPFLAGS"
3435 LDFLAGS="$SAVE_LDFLAGS"
3436 LIBS="$SAVE_LIBS"
3437
3438 if test "x$with_python" = "xyes"
3439 then
3440         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3441         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3442         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3443         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3444         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3445         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3446 fi
3447 # }}} --with-python
3448
3449 # --with-librabbitmq {{{
3450 with_librabbitmq_cppflags=""
3451 with_librabbitmq_ldflags=""
3452 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3453 [
3454         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3455         then
3456                 with_librabbitmq_cppflags="-I$withval/include"
3457                 with_librabbitmq_ldflags="-L$withval/lib"
3458                 with_librabbitmq="yes"
3459         else
3460                 with_librabbitmq="$withval"
3461         fi
3462 ],
3463 [
3464         with_librabbitmq="yes"
3465 ])
3466 SAVE_CPPFLAGS="$CPPFLAGS"
3467 SAVE_LDFLAGS="$LDFLAGS"
3468 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3469 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3470 if test "x$with_librabbitmq" = "xyes"
3471 then
3472         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3473 fi
3474 if test "x$with_librabbitmq" = "xyes"
3475 then
3476         # librabbitmq up to version 0.9.1 provides "library_errno", later
3477         # versions use "library_error". The library does not provide a version
3478         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3479         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3480                          [
3481 #if HAVE_STDLIB_H
3482 # include <stdlib.h>
3483 #endif
3484 #if HAVE_STDIO_H
3485 # include <stdio.h>
3486 #endif
3487 #if HAVE_STDINT_H
3488 # include <stdint.h>
3489 #endif
3490 #if HAVE_INTTYPES_H
3491 # include <inttypes.h>
3492 #endif
3493 #include <amqp.h>
3494                          ])
3495 fi
3496 if test "x$with_librabbitmq" = "xyes"
3497 then
3498         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3499 fi
3500 if test "x$with_librabbitmq" = "xyes"
3501 then
3502         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3503         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3504         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3505         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3506         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3507         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3508         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3509 fi
3510 CPPFLAGS="$SAVE_CPPFLAGS"
3511 LDFLAGS="$SAVE_LDFLAGS"
3512 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3513 # }}}
3514
3515 # --with-librouteros {{{
3516 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3517 [
3518  if test "x$withval" = "xyes"
3519  then
3520          with_librouteros="yes"
3521  else if test "x$withval" = "xno"
3522  then
3523          with_librouteros="no"
3524  else
3525          with_librouteros="yes"
3526          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3527          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3528  fi; fi
3529 ],
3530 [with_librouteros="yes"])
3531
3532 SAVE_CPPFLAGS="$CPPFLAGS"
3533 SAVE_LDFLAGS="$LDFLAGS"
3534
3535 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3536 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3537
3538 if test "x$with_librouteros" = "xyes"
3539 then
3540         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3541         then
3542                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3543         fi
3544         AC_CHECK_HEADERS(routeros_api.h,
3545         [with_librouteros="yes"],
3546         [with_librouteros="no (routeros_api.h not found)"])
3547 fi
3548 if test "x$with_librouteros" = "xyes"
3549 then
3550         if test "x$LIBROUTEROS_LDFLAGS" != "x"
3551         then
3552                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3553         fi
3554         AC_CHECK_LIB(routeros, ros_interface,
3555         [with_librouteros="yes"],
3556         [with_librouteros="no (symbol 'ros_interface' not found)"])
3557 fi
3558
3559 CPPFLAGS="$SAVE_CPPFLAGS"
3560 LDFLAGS="$SAVE_LDFLAGS"
3561
3562 if test "x$with_librouteros" = "xyes"
3563 then
3564         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3565         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3566         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3567         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3568 fi
3569 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3570 # }}}
3571
3572 # --with-librrd {{{
3573 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3574 librrd_cflags=""
3575 librrd_ldflags=""
3576 librrd_threadsafe="yes"
3577 librrd_rrdc_update="no"
3578 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3579 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
3580         then
3581                 librrd_cflags="-I$withval/include"
3582                 librrd_ldflags="-L$withval/lib"
3583                 with_librrd="yes"
3584         else
3585                 with_librrd="$withval"
3586         fi
3587 ], [with_librrd="yes"])
3588 if test "x$with_librrd" = "xyes"
3589 then
3590         SAVE_CPPFLAGS="$CPPFLAGS"
3591         SAVE_LDFLAGS="$LDFLAGS"
3592
3593         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3594         LDFLAGS="$LDFLAGS $librrd_ldflags"
3595
3596         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
3597
3598         CPPFLAGS="$SAVE_CPPFLAGS"
3599         LDFLAGS="$SAVE_LDFLAGS"
3600 fi
3601 if test "x$with_librrd" = "xyes"
3602 then
3603         SAVE_CPPFLAGS="$CPPFLAGS"
3604         SAVE_LDFLAGS="$LDFLAGS"
3605
3606         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3607         LDFLAGS="$LDFLAGS $librrd_ldflags"
3608
3609         AC_CHECK_LIB(rrd_th, rrd_update_r,
3610         [with_librrd="yes"
3611          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3612         ],
3613         [librrd_threadsafe="no"
3614          AC_CHECK_LIB(rrd, rrd_update,
3615          [with_librrd="yes"
3616           librrd_ldflags="$librrd_ldflags -lrrd -lm"
3617          ],
3618          [with_librrd="no (symbol 'rrd_update' not found)"],
3619          [-lm])
3620         ],
3621         [-lm])
3622
3623         if test "x$librrd_threadsafe" = "xyes"
3624         then
3625                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3626         else
3627                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3628         fi
3629
3630         CPPFLAGS="$SAVE_CPPFLAGS"
3631         LDFLAGS="$SAVE_LDFLAGS"
3632 fi
3633 if test "x$with_librrd" = "xyes"
3634 then
3635         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3636         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3637         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3638         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3639 fi
3640 if test "x$librrd_threadsafe" = "xyes"
3641 then
3642         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
3643 fi
3644 # }}}
3645
3646 # --with-libsensors {{{
3647 with_sensors_cflags=""
3648 with_sensors_ldflags=""
3649 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
3650 [
3651         if test "x$withval" = "xno"
3652         then
3653                 with_libsensors="no"
3654         else
3655                 with_libsensors="yes"
3656                 if test "x$withval" != "xyes"
3657                 then
3658                         with_sensors_cflags="-I$withval/include"
3659                         with_sensors_ldflags="-L$withval/lib"
3660                         with_libsensors="yes"
3661                 fi
3662         fi
3663 ],
3664 [
3665         if test "x$ac_system" = "xLinux"
3666         then
3667                 with_libsensors="yes"
3668         else
3669                 with_libsensors="no (Linux only library)"
3670         fi
3671 ])
3672 if test "x$with_libsensors" = "xyes"
3673 then
3674         SAVE_CPPFLAGS="$CPPFLAGS"
3675         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3676
3677 #       AC_CHECK_HEADERS(sensors/sensors.h,
3678 #       [
3679 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3680 #       ],
3681 #       [with_libsensors="no (sensors/sensors.h not found)"])
3682         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3683
3684         CPPFLAGS="$SAVE_CPPFLAGS"
3685 fi
3686 if test "x$with_libsensors" = "xyes"
3687 then
3688         SAVE_CPPFLAGS="$CPPFLAGS"
3689         SAVE_LDFLAGS="$LDFLAGS"
3690         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3691         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3692
3693         AC_CHECK_LIB(sensors, sensors_init,
3694         [
3695                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
3696         ],
3697         [with_libsensors="no (libsensors not found)"])
3698
3699         CPPFLAGS="$SAVE_CPPFLAGS"
3700         LDFLAGS="$SAVE_LDFLAGS"
3701 fi
3702 if test "x$with_libsensors" = "xyes"
3703 then
3704         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3705         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3706         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3707         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
3708 fi
3709 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
3710 # }}}
3711
3712 # --with-libstatgrab {{{
3713 with_libstatgrab_cflags=""
3714 with_libstatgrab_ldflags=""
3715 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
3716 [
3717  if test "x$withval" != "xno" \
3718    && test "x$withval" != "xyes"
3719  then
3720    with_libstatgrab_cflags="-I$withval/include"
3721    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3722    with_libstatgrab="yes"
3723    with_libstatgrab_pkg_config="no"
3724  else
3725    with_libstatgrab="$withval"
3726    with_libstatgrab_pkg_config="yes"
3727  fi
3728  ],
3729 [
3730  with_libstatgrab="yes"
3731  with_libstatgrab_pkg_config="yes"
3732 ])
3733
3734 if test "x$with_libstatgrab" = "xyes" \
3735   && test "x$with_libstatgrab_pkg_config" = "xyes"
3736 then
3737   if test "x$PKG_CONFIG" != "x"
3738   then
3739     AC_MSG_CHECKING([pkg-config for libstatgrab])
3740     temp_result="found"
3741     $PKG_CONFIG --exists libstatgrab 2>/dev/null
3742     if test "$?" != "0"
3743     then
3744       with_libstatgrab_pkg_config="no"
3745       with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
3746       temp_result="not found"
3747     fi
3748     AC_MSG_RESULT([$temp_result])
3749   else
3750     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
3751     with_libstatgrab_pkg_config="no"
3752     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
3753   fi
3754 fi
3755
3756 if test "x$with_libstatgrab" = "xyes" \
3757   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3758   && test "x$with_libstatgrab_cflags" = "x"
3759 then
3760   AC_MSG_CHECKING([for libstatgrab CFLAGS])
3761   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
3762   if test "$?" = "0"
3763   then
3764     with_libstatgrab_cflags="$temp_result"
3765   else
3766     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
3767     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
3768   fi
3769   AC_MSG_RESULT([$temp_result])
3770 fi
3771
3772 if test "x$with_libstatgrab" = "xyes" \
3773   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3774   && test "x$with_libstatgrab_ldflags" = "x"
3775 then
3776   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
3777   temp_result="`$PKG_CONFIG --libs libstatgrab`"
3778   if test "$?" = "0"
3779   then
3780     with_libstatgrab_ldflags="$temp_result"
3781   else
3782     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
3783     temp_result="$PKG_CONFIG --libs libstatgrab failed"
3784   fi
3785   AC_MSG_RESULT([$temp_result])
3786 fi
3787
3788 if test "x$with_libstatgrab" = "xyes"
3789 then
3790   SAVE_CPPFLAGS="$CPPFLAGS"
3791   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
3792
3793   AC_CHECK_HEADERS(statgrab.h,
3794                    [with_libstatgrab="yes"],
3795                    [with_libstatgrab="no (statgrab.h not found)"])
3796
3797   CPPFLAGS="$SAVE_CPPFLAGS"
3798 fi
3799
3800 if test "x$with_libstatgrab" = "xyes"
3801 then
3802   SAVE_CFLAGS="$CFLAGS"
3803   SAVE_LDFLAGS="$LDFLAGS"
3804
3805   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
3806   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
3807
3808   AC_CHECK_LIB(statgrab, sg_init,
3809                [with_libstatgrab="yes"],
3810                [with_libstatgrab="no (symbol sg_init not found)"])
3811
3812   CFLAGS="$SAVE_CFLAGS"
3813   LDFLAGS="$SAVE_LDFLAGS"
3814 fi
3815
3816 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
3817 if test "x$with_libstatgrab" = "xyes"
3818 then
3819   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
3820   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
3821   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
3822   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
3823   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
3824 fi
3825 # }}}
3826
3827 # --with-libtokyotyrant {{{
3828 with_libtokyotyrant_cppflags=""
3829 with_libtokyotyrant_ldflags=""
3830 with_libtokyotyrant_libs=""
3831 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
3832 [
3833   if test "x$withval" = "xno"
3834   then
3835     with_libtokyotyrant="no"
3836   else if test "x$withval" = "xyes"
3837   then
3838     with_libtokyotyrant="yes"
3839   else
3840     with_libtokyotyrant_cppflags="-I$withval/include"
3841     with_libtokyotyrant_ldflags="-L$withval/include"
3842     with_libtokyotyrant_libs="-ltokyotyrant"
3843     with_libtokyotyrant="yes"
3844   fi; fi
3845 ],
3846 [
3847   with_libtokyotyrant="yes"
3848 ])
3849
3850 if test "x$with_libtokyotyrant" = "xyes"
3851 then
3852   if $PKG_CONFIG --exists tokyotyrant
3853   then
3854     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
3855     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `pkg-config --libs-only-L tokyotyrant`"
3856     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `pkg-config --libs-only-l tokyotyrant`"
3857   fi
3858 fi
3859
3860 SAVE_CPPFLAGS="$CPPFLAGS"
3861 SAVE_LDFLAGS="$LDFLAGS"
3862 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
3863 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
3864
3865 if test "x$with_libtokyotyrant" = "xyes"
3866 then
3867   AC_CHECK_HEADERS(tcrdb.h,
3868   [
3869           AC_DEFINE(HAVE_TCRDB_H, 1,
3870                     [Define to 1 if you have the <tcrdb.h> header file.])
3871   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
3872 fi
3873
3874 if test "x$with_libtokyotyrant" = "xyes"
3875 then
3876   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
3877   [
3878           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
3879                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
3880   ],
3881   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
3882   [$with_libtokyotyrant_libs])
3883 fi
3884
3885 CPPFLAGS="$SAVE_CPPFLAGS"
3886 LDFLAGS="$SAVE_LDFLAGS"
3887
3888 if test "x$with_libtokyotyrant" = "xyes"
3889 then 
3890   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
3891   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
3892   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
3893   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
3894   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
3895   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
3896 fi
3897 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
3898 # }}}
3899
3900 # --with-libupsclient {{{
3901 with_libupsclient_config=""
3902 with_libupsclient_cflags=""
3903 with_libupsclient_libs=""
3904 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
3905 [
3906         if test "x$withval" = "xno"
3907         then
3908                 with_libupsclient="no"
3909         else if test "x$withval" = "xyes"
3910         then
3911                 with_libupsclient="use_pkgconfig"
3912         else
3913                 if test -x "$withval"
3914                 then
3915                         with_libupsclient_config="$withval"
3916                         with_libupsclient="use_libupsclient_config"
3917                 else if test -x "$withval/bin/libupsclient-config"
3918                 then
3919                         with_libupsclient_config="$withval/bin/libupsclient-config"
3920                         with_libupsclient="use_libupsclient_config"
3921                 else
3922                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
3923                         with_libupsclient_cflags="-I$withval/include"
3924                         with_libupsclient_libs="-L$withval/lib -lupsclient"
3925                         with_libupsclient="yes"
3926                 fi; fi
3927         fi; fi
3928 ],
3929 [with_libupsclient="use_pkgconfig"])
3930
3931 # configure using libupsclient-config
3932 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3933 then
3934         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
3935         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
3936         if test $? -ne 0
3937         then
3938                 with_libupsclient="no ($with_libupsclient_config failed)"
3939         fi
3940         with_libupsclient_libs="`$with_libupsclient_config --libs`"
3941         if test $? -ne 0
3942         then
3943                 with_libupsclient="no ($with_libupsclient_config failed)"
3944         fi
3945 fi
3946 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3947 then
3948         with_libupsclient="yes"
3949 fi
3950
3951 # configure using pkg-config
3952 if test "x$with_libupsclient" = "xuse_pkgconfig"
3953 then
3954         if test "x$PKG_CONFIG" = "x"
3955         then
3956                 with_libupsclient="no (Don't have pkg-config)"
3957         fi
3958 fi
3959 if test "x$with_libupsclient" = "xuse_pkgconfig"
3960 then
3961         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
3962         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
3963         if test $? -ne 0
3964         then
3965                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
3966         fi
3967 fi
3968 if test "x$with_libupsclient" = "xuse_pkgconfig"
3969 then
3970         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
3971         if test $? -ne 0
3972         then
3973                 with_libupsclient="no ($PKG_CONFIG failed)"
3974         fi
3975         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
3976         if test $? -ne 0
3977         then
3978                 with_libupsclient="no ($PKG_CONFIG failed)"
3979         fi
3980 fi
3981 if test "x$with_libupsclient" = "xuse_pkgconfig"
3982 then
3983         with_libupsclient="yes"
3984 fi
3985
3986 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
3987 # the actual checks.
3988 if test "x$with_libupsclient" = "xyes"
3989 then
3990         SAVE_CPPFLAGS="$CPPFLAGS"
3991         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3992
3993         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
3994
3995         CPPFLAGS="$SAVE_CPPFLAGS"
3996 fi
3997 if test "x$with_libupsclient" = "xyes"
3998 then
3999         SAVE_CPPFLAGS="$CPPFLAGS"
4000         SAVE_LDFLAGS="$LDFLAGS"
4001
4002         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4003         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4004
4005         AC_CHECK_LIB(upsclient, upscli_connect,
4006                      [with_libupsclient="yes"],
4007                      [with_libupsclient="no (symbol upscli_connect not found)"])
4008
4009         CPPFLAGS="$SAVE_CPPFLAGS"
4010         LDFLAGS="$SAVE_LDFLAGS"
4011 fi
4012 if test "x$with_libupsclient" = "xyes"
4013 then
4014         SAVE_CPPFLAGS="$CPPFLAGS"
4015         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4016
4017         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4018 [#include <stdlib.h>
4019 #include <stdio.h>
4020 #include <upsclient.h>])
4021
4022         CPPFLAGS="$SAVE_CPPFLAGS"
4023 fi
4024 if test "x$with_libupsclient" = "xyes"
4025 then
4026         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4027         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4028         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4029         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4030 fi
4031 # }}}
4032
4033 # --with-libxmms {{{
4034 with_xmms_config="xmms-config"
4035 with_xmms_cflags=""
4036 with_xmms_libs=""
4037 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4038 [
4039         if test "x$withval" != "xno" \
4040                 && test "x$withval" != "xyes"
4041         then
4042                 if test -f "$withval" && test -x "$withval";
4043                 then
4044                         with_xmms_config="$withval"
4045                 else if test -x "$withval/bin/xmms-config"
4046                 then
4047                         with_xmms_config="$withval/bin/xmms-config"
4048                 fi; fi
4049                 with_libxmms="yes"
4050         else if test "x$withval" = "xno"
4051         then
4052                 with_libxmms="no"
4053         else
4054                 with_libxmms="yes"
4055         fi; fi
4056 ],
4057 [
4058         with_libxmms="yes"
4059 ])
4060 if test "x$with_libxmms" = "xyes"
4061 then
4062         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4063         xmms_config_status=$?
4064
4065         if test $xmms_config_status -ne 0
4066         then
4067                 with_libxmms="no"
4068         fi
4069 fi
4070 if test "x$with_libxmms" = "xyes"
4071 then
4072         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4073         xmms_config_status=$?
4074
4075         if test $xmms_config_status -ne 0
4076         then
4077                 with_libxmms="no"
4078         fi
4079 fi
4080 if test "x$with_libxmms" = "xyes"
4081 then
4082         AC_CHECK_LIB(xmms, xmms_remote_get_info,
4083         [
4084                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4085                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4086                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4087                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4088         ],
4089         [
4090                 with_libxmms="no"
4091         ],
4092         [$with_xmms_libs])
4093 fi
4094 with_libxmms_numeric=0
4095 if test "x$with_libxmms" = "xyes"
4096 then
4097         with_libxmms_numeric=1
4098 fi
4099 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4100 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4101 # }}}
4102
4103 # --with-libyajl {{{
4104 with_libyajl_cppflags=""
4105 with_libyajl_ldflags=""
4106 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4107 [
4108         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4109         then
4110                 with_libyajl_cppflags="-I$withval/include"
4111                 with_libyajl_ldflags="-L$withval/lib"
4112                 with_libyajl="yes"
4113         else
4114                 with_libyajl="$withval"
4115         fi
4116 ],
4117 [
4118         with_libyajl="yes"
4119 ])
4120 if test "x$with_libyajl" = "xyes"
4121 then
4122         SAVE_CPPFLAGS="$CPPFLAGS"
4123         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4124
4125         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
4126         AC_CHECK_HEADERS(yajl/yajl_version.h)
4127
4128         CPPFLAGS="$SAVE_CPPFLAGS"
4129 fi
4130 if test "x$with_libyajl" = "xyes"
4131 then
4132         SAVE_CPPFLAGS="$CPPFLAGS"
4133         SAVE_LDFLAGS="$LDFLAGS"
4134         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4135         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4136
4137         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4138
4139         CPPFLAGS="$SAVE_CPPFLAGS"
4140         LDFLAGS="$SAVE_LDFLAGS"
4141 fi
4142 if test "x$with_libyajl" = "xyes"
4143 then
4144         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4145         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4146         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4147         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4148         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4149         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4150         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4151 fi
4152 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4153 # }}}
4154
4155 # --with-libvarnish {{{
4156 with_libvarnish_cppflags=""
4157 with_libvarnish_cflags=""
4158 with_libvarnish_libs=""
4159 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
4160 [
4161         if test "x$withval" = "xno"
4162         then
4163                 with_libvarnish="no"
4164         else if test "x$withval" = "xyes"
4165         then
4166                 with_libvarnish="use_pkgconfig"
4167         else if test -d "$with_libvarnish/lib"
4168         then
4169                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
4170                 with_libvarnish_cflags="-I$withval/include"
4171                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
4172                 with_libvarnish="yes"
4173         fi; fi; fi
4174 ],
4175 [with_libvarnish="use_pkgconfig"])
4176
4177 # configure using pkg-config
4178 if test "x$with_libvarnish" = "xuse_pkgconfig"
4179 then
4180         if test "x$PKG_CONFIG" = "x"
4181         then
4182                 with_libvarnish="no (Don't have pkg-config)"
4183         fi
4184 fi
4185 if test "x$with_libvarnish" = "xuse_pkgconfig"
4186 then
4187         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
4188         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
4189         if test $? -ne 0
4190         then
4191                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
4192         fi
4193 fi
4194 if test "x$with_libvarnish" = "xuse_pkgconfig"
4195 then
4196         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
4197         if test $? -ne 0
4198         then
4199                 with_libvarnish="no ($PKG_CONFIG failed)"
4200         fi
4201         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
4202         if test $? -ne 0
4203         then
4204                 with_libvarnish="no ($PKG_CONFIG failed)"
4205         fi
4206 fi
4207 if test "x$with_libvarnish" = "xuse_pkgconfig"
4208 then
4209         with_libvarnish="yes"
4210 fi
4211
4212 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
4213 # the actual checks.
4214 if test "x$with_libvarnish" = "xyes"
4215 then
4216         SAVE_CPPFLAGS="$CPPFLAGS"
4217         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4218         AC_CHECK_HEADERS(varnish/varnishapi.h, [], [with_libvarnish="no (varnish/varnishapi.h not found)"])
4219
4220         CPPFLAGS="$SAVE_CPPFLAGS"
4221 fi
4222 if test "x$with_libvarnish" = "xyes"
4223 then
4224         SAVE_CPPFLAGS="$CPPFLAGS"
4225         #SAVE_LDFLAGS="$LDFLAGS"
4226
4227         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4228         #LDFLAGS="$LDFLAGS $with_libvarnish_libs"
4229
4230     AC_CHECK_HEADERS(varnish/vsc.h,
4231         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
4232         [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])])
4233
4234         CPPFLAGS="$SAVE_CPPFLAGS"
4235         #LDFLAGS="$SAVE_LDFLAGS"
4236 fi
4237 if test "x$with_libvarnish" = "xyes"
4238 then
4239         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
4240         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
4241         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
4242         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
4243 fi
4244 # }}}
4245
4246 # --with-libvmware {{{
4247 with_libvmware_cppflags=""
4248 AC_ARG_WITH(libvmware, [AS_HELP_STRING([--with-libvmware@<:@=PREFIX@:>@], [Path to libvmware.])],
4249 [
4250         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4251         then
4252                 with_libvmware_cppflags="-I$withval"
4253                 with_libvmware="yes"
4254         else
4255                 with_libvmware="$withval"
4256         fi
4257 ],
4258 [
4259         with_libvmware="yes"
4260 ])
4261 if test "x$with_libvmware" = "xyes"
4262 then
4263         SAVE_CPPFLAGS="$CPPFLAGS"
4264         CPPFLAGS="$CPPFLAGS $with_libvmware_cppflags"
4265
4266         AC_CHECK_HEADERS(vmGuestLib.h, [with_libvmware="yes"], [with_libvmware="no (vmGuestLib.h not found)"])
4267
4268         CPPFLAGS="$SAVE_CPPFLAGS"
4269 fi
4270 if test "x$with_libvmware" = "xyes"
4271 then
4272         BUILD_WITH_LIBVMWARE_CPPFLAGS="$with_libvmware_cppflags"
4273         AC_SUBST(BUILD_WITH_LIBVMWARE_CPPFLAGS)
4274         #AC_DEFINE(HAVE_LIBVMWARE, 1, [Define if libvmware is present and usable.])
4275 fi
4276 AM_CONDITIONAL(BUILD_WITH_LIBVMWARE, test "x$with_libvmware" = "xyes")
4277 # }}}
4278
4279 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
4280 with_libxml2="no (pkg-config isn't available)"
4281 with_libxml2_cflags=""
4282 with_libxml2_ldflags=""
4283 with_libvirt="no (pkg-config isn't available)"
4284 with_libvirt_cflags=""
4285 with_libvirt_ldflags=""
4286 if test "x$PKG_CONFIG" != "x"
4287 then
4288         pkg-config --exists 'libxml-2.0' 2>/dev/null
4289         if test "$?" = "0"
4290         then
4291                 with_libxml2="yes"
4292         else
4293                 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
4294         fi
4295
4296         pkg-config --exists libvirt 2>/dev/null
4297         if test "$?" = "0"
4298         then
4299                 with_libvirt="yes"
4300         else
4301                 with_libvirt="no (pkg-config doesn't know libvirt)"
4302         fi
4303 fi
4304 if test "x$with_libxml2" = "xyes"
4305 then
4306         with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
4307         if test $? -ne 0
4308         then
4309                 with_libxml2="no"
4310         fi
4311         with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
4312         if test $? -ne 0
4313         then
4314                 with_libxml2="no"
4315         fi
4316 fi
4317 if test "x$with_libxml2" = "xyes"
4318 then
4319         SAVE_CPPFLAGS="$CPPFLAGS"
4320         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
4321
4322         AC_CHECK_HEADERS(libxml/parser.h, [],
4323                       [with_libxml2="no (libxml/parser.h not found)"])
4324
4325         CPPFLAGS="$SAVE_CPPFLAGS"
4326 fi
4327 if test "x$with_libxml2" = "xyes"
4328 then
4329         SAVE_CFLAGS="$CFLAGS"
4330         SAVE_LDFLAGS="$LDFLAGS"
4331
4332         CFLAGS="$CFLAGS $with_libxml2_cflags"
4333         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
4334
4335         AC_CHECK_LIB(xml2, xmlXPathEval,
4336                      [with_libxml2="yes"],
4337                      [with_libxml2="no (symbol xmlXPathEval not found)"])
4338
4339         CFLAGS="$SAVE_CFLAGS"
4340         LDFLAGS="$SAVE_LDFLAGS"
4341 fi
4342 dnl Add the right compiler flags and libraries.
4343 if test "x$with_libxml2" = "xyes"; then
4344         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
4345         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
4346         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
4347         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
4348 fi
4349 if test "x$with_libvirt" = "xyes"
4350 then
4351         with_libvirt_cflags="`pkg-config --cflags libvirt`"
4352         if test $? -ne 0
4353         then
4354                 with_libvirt="no"
4355         fi
4356         with_libvirt_ldflags="`pkg-config --libs libvirt`"
4357         if test $? -ne 0
4358         then
4359                 with_libvirt="no"
4360         fi
4361 fi
4362 if test "x$with_libvirt" = "xyes"
4363 then
4364         SAVE_CPPFLAGS="$CPPFLAGS"
4365         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
4366
4367         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
4368                       [with_libvirt="no (libvirt/libvirt.h not found)"])
4369
4370         CPPFLAGS="$SAVE_CPPFLAGS"
4371 fi
4372 if test "x$with_libvirt" = "xyes"
4373 then
4374         SAVE_CFLAGS="$CFLAGS"
4375         SAVE_LDFLAGS="$LDFLAGS"
4376
4377         CFLAGS="$CFLAGS $with_libvirt_cflags"
4378         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
4379
4380         AC_CHECK_LIB(virt, virDomainBlockStats,
4381                      [with_libvirt="yes"],
4382                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
4383
4384         CFLAGS="$SAVE_CFLAGS"
4385         LDFLAGS="$SAVE_LDFLAGS"
4386 fi
4387 dnl Add the right compiler flags and libraries.
4388 if test "x$with_libvirt" = "xyes"; then
4389         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
4390         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
4391         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
4392         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
4393 fi
4394 # }}}
4395
4396 # $PKG_CONFIG --exists OpenIPMIpthread {{{
4397 with_libopenipmipthread="yes"
4398 with_libopenipmipthread_cflags=""
4399 with_libopenipmipthread_libs=""
4400
4401 AC_MSG_CHECKING([for pkg-config])
4402 temp_result="no"
4403 if test "x$PKG_CONFIG" = "x"
4404 then
4405         with_libopenipmipthread="no"
4406         temp_result="no"
4407 else
4408         temp_result="$PKG_CONFIG"
4409 fi
4410 AC_MSG_RESULT([$temp_result])
4411
4412 if test "x$with_libopenipmipthread" = "xyes"
4413 then
4414         AC_MSG_CHECKING([for libOpenIPMIpthread])
4415         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
4416         if test "$?" != "0"
4417         then
4418                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
4419         fi
4420         AC_MSG_RESULT([$with_libopenipmipthread])
4421 fi
4422
4423 if test "x$with_libopenipmipthread" = "xyes"
4424 then
4425         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
4426         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
4427         if test "$?" = "0"
4428         then
4429                 with_libopenipmipthread_cflags="$temp_result"
4430         else
4431                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
4432                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
4433         fi
4434         AC_MSG_RESULT([$temp_result])
4435 fi
4436
4437 if test "x$with_libopenipmipthread" = "xyes"
4438 then
4439         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
4440         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
4441         if test "$?" = "0"
4442         then
4443                 with_libopenipmipthread_ldflags="$temp_result"
4444         else
4445                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
4446                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
4447         fi
4448         AC_MSG_RESULT([$temp_result])
4449 fi
4450
4451 if test "x$with_libopenipmipthread" = "xyes"
4452 then
4453         SAVE_CPPFLAGS="$CPPFLAGS"
4454         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
4455
4456         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
4457                          [with_libopenipmipthread="yes"],
4458                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
4459 [#include <OpenIPMI/ipmiif.h>
4460 #include <OpenIPMI/ipmi_err.h>
4461 #include <OpenIPMI/ipmi_posix.h>
4462 #include <OpenIPMI/ipmi_conn.h>
4463 ])
4464
4465         CPPFLAGS="$SAVE_CPPFLAGS"
4466 fi
4467
4468 if test "x$with_libopenipmipthread" = "xyes"
4469 then
4470         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
4471         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
4472         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
4473         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
4474 fi
4475 # }}}
4476
4477 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
4478                 [with_libnotify="yes"],
4479                 [if test "x$LIBNOTIFY_PKG_ERRORS" = "x"; then
4480                          with_libnotify="no"
4481                  else
4482                          with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"
4483                  fi])
4484
4485 # Check for enabled/disabled features
4486 #
4487
4488 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
4489 # ------------------------------------------------------------
4490 dnl
4491 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
4492 dnl
4493 AC_DEFUN(
4494         [AC_COLLECTD],
4495         [
4496         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
4497         m4_if(
4498                 [$2],
4499                 [enable],
4500                 [dnl
4501                 m4_define([EnDis],[disabled])dnl
4502                 m4_define([YesNo],[no])dnl
4503                 ],dnl
4504                 [m4_if(
4505                         [$2],
4506                         [disable],
4507                         [dnl
4508                         m4_define([EnDis],[enabled])dnl
4509                         m4_define([YesNo],[yes])dnl
4510                         ],
4511                         [dnl
4512                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
4513                         ]dnl
4514                 )]dnl
4515         )dnl
4516         m4_if([$3], [feature], [],
4517                 [m4_if(
4518                         [$3], [module], [],
4519                         [dnl
4520                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
4521                         ]dnl
4522                 )]dnl
4523         )dnl
4524         AC_ARG_ENABLE(
4525                 [$1],
4526                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
4527                 [],
4528                 enable_$1='[YesNo]'dnl
4529         )# AC_ARG_ENABLE
4530 if test "x$enable_$1" = "xno"
4531 then
4532         collectd_$1=0
4533 else
4534         if test "x$enable_$1" = "xyes"
4535         then
4536                 collectd_$1=1
4537         else
4538                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
4539                 collectd_$1=1
4540                 enable_$1='yes'
4541         fi
4542 fi
4543         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
4544         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
4545         ]dnl
4546 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4547
4548 # AC_PLUGIN(name, default, info)
4549 # ------------------------------------------------------------
4550 dnl
4551 AC_DEFUN(
4552   [AC_PLUGIN],
4553   [
4554     enable_plugin="no"
4555     force="no"
4556     AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
4557     [
4558      if test "x$enableval" = "xyes"
4559      then
4560              enable_plugin="yes"
4561      else if test "x$enableval" = "xforce"
4562      then
4563              enable_plugin="yes"
4564              force="yes"
4565      else
4566              enable_plugin="no (disabled on command line)"
4567      fi; fi
4568     ],
4569     [
4570          if test "x$enable_all_plugins" = "xauto"
4571          then
4572              if test "x$2" = "xyes"
4573              then
4574                      enable_plugin="yes"
4575              else
4576                      enable_plugin="no"
4577              fi
4578          else
4579              enable_plugin="$enable_all_plugins"
4580          fi
4581     ])
4582     if test "x$enable_plugin" = "xyes"
4583     then
4584             if test "x$2" = "xyes" || test "x$force" = "xyes"
4585             then
4586                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
4587                     if test "x$2" != "xyes"
4588                     then
4589                             dependency_warning="yes"
4590                     fi
4591             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
4592                     dependency_error="yes"
4593                     enable_plugin="no (dependency error)"
4594             fi
4595     fi
4596     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
4597     enable_$1="$enable_plugin"
4598   ]
4599 )# AC_PLUGIN(name, default, info)
4600
4601 m4_divert_once([HELP_ENABLE], [
4602 collectd features:])
4603 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
4604 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
4605 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
4606 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
4607
4608 dependency_warning="no"
4609 dependency_error="no"
4610
4611 plugin_ascent="no"
4612 plugin_battery="no"
4613 plugin_bind="no"
4614 plugin_conntrack="no"
4615 plugin_contextswitch="no"
4616 plugin_cpu="no"
4617 plugin_cpufreq="no"
4618 plugin_curl_json="no"
4619 plugin_curl_xml="no"
4620 plugin_df="no"
4621 plugin_disk="no"
4622 plugin_entropy="no"
4623 plugin_ethstat="no"
4624 plugin_fscache="no"
4625 plugin_interface="no"
4626 plugin_ipmi="no"
4627 plugin_ipvs="no"
4628 plugin_irq="no"
4629 plugin_libvirt="no"
4630 plugin_load="no"
4631 plugin_memory="no"
4632 plugin_multimeter="no"
4633 plugin_nfs="no"
4634 plugin_numa="no"
4635 plugin_perl="no"
4636 plugin_processes="no"
4637 plugin_protocols="no"
4638 plugin_serial="no"
4639 plugin_swap="no"
4640 plugin_tape="no"
4641 plugin_tcpconns="no"
4642 plugin_ted="no"
4643 plugin_thermal="no"
4644 plugin_users="no"
4645 plugin_uptime="no"
4646 plugin_vmem="no"
4647 plugin_vmware="no"
4648 plugin_vserver="no"
4649 plugin_wireless="no"
4650 plugin_zfs_arc="no"
4651
4652 # Linux
4653 if test "x$ac_system" = "xLinux"
4654 then
4655         plugin_battery="yes"
4656         plugin_conntrack="yes"
4657         plugin_contextswitch="yes"
4658         plugin_cpu="yes"
4659         plugin_cpufreq="yes"
4660         plugin_disk="yes"
4661         plugin_entropy="yes"
4662         plugin_fscache="yes"
4663         plugin_interface="yes"
4664         plugin_irq="yes"
4665         plugin_load="yes"
4666         plugin_memory="yes"
4667         plugin_nfs="yes"
4668         plugin_numa="yes"
4669         plugin_processes="yes"
4670         plugin_protocols="yes"
4671         plugin_serial="yes"
4672         plugin_swap="yes"
4673         plugin_tcpconns="yes"
4674         plugin_thermal="yes"
4675         plugin_uptime="yes"
4676         plugin_vmware="yes"
4677         plugin_vmem="yes"
4678         plugin_vserver="yes"
4679         plugin_wireless="yes"
4680
4681         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
4682         then
4683                 plugin_ipvs="yes"
4684         fi
4685 fi
4686
4687 if test "x$ac_system" = "xOpenBSD"
4688 then
4689         plugin_tcpconns="yes"
4690 fi
4691
4692 # Mac OS X devices
4693 if test "x$with_libiokit" = "xyes"
4694 then
4695         plugin_battery="yes"
4696         plugin_disk="yes"
4697 fi
4698
4699 # AIX
4700
4701 if test "x$ac_system" = "xAIX"
4702 then
4703         plugin_tcpconns="yes"
4704 fi
4705
4706 if test "x$with_perfstat" = "xyes"
4707 then
4708         plugin_cpu="yes"
4709         plugin_contextswitch="yes"
4710         plugin_disk="yes"
4711         plugin_memory="yes"
4712         plugin_swap="yes"
4713         plugin_interface="yes"
4714         plugin_load="yes"
4715         plugin_uptime="yes"
4716 fi
4717
4718 if test "x$with_procinfo" = "xyes"
4719 then
4720         plugin_processes="yes"
4721 fi
4722
4723 # Solaris
4724 if test "x$with_kstat" = "xyes"
4725 then
4726         plugin_nfs="yes"
4727         plugin_uptime="yes"
4728         plugin_zfs_arc="yes"
4729 fi
4730
4731 if test "x$with_devinfo$with_kstat" = "xyesyes"
4732 then
4733         plugin_cpu="yes"
4734         plugin_disk="yes"
4735         plugin_interface="yes"
4736         plugin_memory="yes"
4737         plugin_tape="yes"
4738 fi
4739
4740 # libstatgrab
4741 if test "x$with_libstatgrab" = "xyes"
4742 then
4743         plugin_cpu="yes"
4744         plugin_disk="yes"
4745         plugin_interface="yes"
4746         plugin_load="yes"
4747         plugin_memory="yes"
4748         plugin_swap="yes"
4749         plugin_users="yes"
4750 fi
4751
4752 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4753 then
4754         plugin_ascent="yes"
4755         if test "x$have_strptime" = "xyes"
4756         then
4757                 plugin_bind="yes"
4758         fi
4759 fi
4760
4761 if test "x$with_libopenipmipthread" = "xyes"
4762 then
4763         plugin_ipmi="yes"
4764 fi
4765
4766 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
4767 then
4768         plugin_curl_json="yes"
4769 fi
4770
4771 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4772 then
4773         plugin_curl_xml="yes"
4774 fi
4775
4776 if test "x$have_processor_info" = "xyes"
4777 then
4778         plugin_cpu="yes"
4779 fi
4780 if test "x$have_sysctl" = "xyes"
4781 then
4782         plugin_cpu="yes"
4783         plugin_memory="yes"
4784         plugin_uptime="yes"
4785         if test "x$ac_system" = "xDarwin"
4786         then
4787                 plugin_swap="yes"
4788         fi
4789 fi
4790 if test "x$have_sysctlbyname" = "xyes"
4791 then
4792         plugin_contextswitch="yes"
4793         plugin_cpu="yes"
4794         plugin_memory="yes"
4795         plugin_tcpconns="yes"
4796 fi
4797
4798 # Df plugin: Check if we know how to determine mount points first.
4799 #if test "x$have_listmntent" = "xyes"; then
4800 #       plugin_df="yes"
4801 #fi
4802 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
4803 then
4804         plugin_df="yes"
4805 fi
4806 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
4807 then
4808         plugin_df="yes"
4809 fi
4810 #if test "x$have_getmntent" = "xseq"
4811 #then
4812 #       plugin_df="yes"
4813 #fi
4814 if test "x$c_cv_have_one_getmntent" = "xyes"
4815 then
4816         plugin_df="yes"
4817 fi
4818
4819 # Df plugin: Check if we have either `statfs' or `statvfs' second.
4820 if test "x$plugin_df" = "xyes"
4821 then
4822         plugin_df="no"
4823         if test "x$have_statfs" = "xyes"
4824         then
4825                 plugin_df="yes"
4826         fi
4827         if test "x$have_statvfs" = "xyes"
4828         then
4829                 plugin_df="yes"
4830         fi
4831 fi
4832
4833 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
4834 then
4835         plugin_ethstat="yes"
4836 fi
4837
4838 if test "x$have_getifaddrs" = "xyes"
4839 then
4840         plugin_interface="yes"
4841 fi
4842
4843 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
4844 then
4845         plugin_libvirt="yes"
4846 fi
4847
4848 if test "x$have_getloadavg" = "xyes"
4849 then
4850         plugin_load="yes"
4851 fi
4852
4853 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
4854 then
4855         plugin_perl="yes"
4856 fi
4857
4858 # Mac OS X memory interface
4859 if test "x$have_host_statistics" = "xyes"
4860 then
4861         plugin_memory="yes"
4862 fi
4863
4864 if test "x$have_termios_h" = "xyes"
4865 then
4866         plugin_multimeter="yes"
4867         plugin_ted="yes"
4868 fi
4869
4870 if test "x$have_thread_info" = "xyes"
4871 then
4872         plugin_processes="yes"
4873 fi
4874
4875 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
4876 then
4877         plugin_processes="yes"
4878 fi
4879
4880 if test "x$with_kvm_getswapinfo" = "xyes"
4881 then
4882         plugin_swap="yes"
4883 fi
4884
4885 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
4886 then
4887         plugin_swap="yes"
4888 fi
4889
4890 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
4891 then
4892         plugin_tcpconns="yes"
4893 fi
4894
4895 if test "x$have_getutent" = "xyes"
4896 then
4897         plugin_users="yes"
4898 fi
4899 if test "x$have_getutxent" = "xyes"
4900 then
4901         plugin_users="yes"
4902 fi
4903
4904 m4_divert_once([HELP_ENABLE], [
4905 collectd plugins:])
4906
4907 AC_ARG_ENABLE([all-plugins],
4908                 AC_HELP_STRING([--enable-all-plugins],
4909                                 [enable all plugins (auto by def)]),
4910                 [
4911                  if test "x$enableval" = "xyes"
4912                  then
4913                          enable_all_plugins="yes"
4914                  else if test "x$enableval" = "xauto"
4915                  then
4916                          enable_all_plugins="auto"
4917                  else
4918                          enable_all_plugins="no"
4919                  fi; fi
4920                 ],
4921                 [enable_all_plugins="auto"])
4922
4923 m4_divert_once([HELP_ENABLE], [])
4924
4925 AC_PLUGIN([aggregation], [yes],                [Aggregation plugin])
4926 AC_PLUGIN([amqp],        [$with_librabbitmq],  [AMQP output plugin])
4927 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
4928 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
4929 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
4930 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
4931 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
4932 AC_PLUGIN([bind],        [$plugin_bind],       [ISC Bind nameserver statistics])
4933 AC_PLUGIN([conntrack],   [$plugin_conntrack],  [nf_conntrack statistics])
4934 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
4935 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
4936 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
4937 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
4938 AC_PLUGIN([curl],        [$with_libcurl],      [CURL generic web statistics])
4939 AC_PLUGIN([curl_json],   [$plugin_curl_json],    [CouchDB statistics])
4940 AC_PLUGIN([curl_xml],   [$plugin_curl_xml],    [CURL generic xml statistics])
4941 AC_PLUGIN([dbi],         [$with_libdbi],       [General database statistics])
4942 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
4943 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
4944 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
4945 AC_PLUGIN([email],       [yes],                [EMail statistics])
4946 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
4947 AC_PLUGIN([ethstat],     [$plugin_ethstat],    [Stats from NIC driver])
4948 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
4949 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
4950 AC_PLUGIN([fscache],     [$plugin_fscache],    [fscache statistics])
4951 AC_PLUGIN([gmond],       [$with_libganglia],   [Ganglia plugin])
4952 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
4953 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
4954 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
4955 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
4956 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
4957 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
4958 AC_PLUGIN([java],        [$with_java],         [Embed the Java Virtual Machine])
4959 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
4960 AC_PLUGIN([load],        [$plugin_load],       [System load])
4961 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
4962 AC_PLUGIN([lpar],        [$with_perfstat],     [AIX logical partitions statistics])
4963 AC_PLUGIN([madwifi],     [$have_linux_wireless_h], [Madwifi wireless statistics])
4964 AC_PLUGIN([match_empty_counter], [yes],        [The empty counter match])
4965 AC_PLUGIN([match_hashed], [yes],               [The hashed match])
4966 AC_PLUGIN([match_regex], [yes],                [The regex match])
4967 AC_PLUGIN([match_timediff], [yes],             [The timediff match])
4968 AC_PLUGIN([match_value], [yes],                [The value match])
4969 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
4970 AC_PLUGIN([md],          [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
4971 AC_PLUGIN([memcachec],   [$with_libmemcached], [memcachec statistics])
4972 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
4973 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
4974 AC_PLUGIN([modbus],      [$with_libmodbus],    [Modbus plugin])
4975 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
4976 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
4977 AC_PLUGIN([netapp],      [$with_libnetapp],    [NetApp plugin])
4978 AC_PLUGIN([netlink],     [$with_libnetlink],   [Enhanced Linux network statistics])
4979 AC_PLUGIN([network],     [yes],                [Network communication plugin])
4980 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
4981 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
4982 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
4983 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
4984 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
4985 AC_PLUGIN([numa],        [$plugin_numa],       [NUMA virtual memory statistics])
4986 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
4987 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
4988 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
4989 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
4990 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
4991 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
4992 AC_PLUGIN([pf],          [$have_net_pfvar_h],  [BSD packet filter (PF) statistics])
4993 # FIXME: Check for libevent, too.
4994 AC_PLUGIN([pinba],       [$have_protobuf_c_h], [Pinba statistics])
4995 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
4996 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
4997 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
4998 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
4999 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
5000 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
5001 AC_PLUGIN([redis],       [$with_libcredis],    [Redis plugin])
5002 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
5003 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
5004 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
5005 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
5006 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
5007 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
5008 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
5009 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
5010 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
5011 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
5012 AC_PLUGIN([tail_csv],    [yes],                [Parsing of CSV files])
5013 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
5014 AC_PLUGIN([target_notification], [yes],        [The notification target])
5015 AC_PLUGIN([target_replace], [yes],             [The replace target])
5016 AC_PLUGIN([target_scale],[yes],                [The scale target])
5017 AC_PLUGIN([target_set],  [yes],                [The set target])
5018 AC_PLUGIN([target_v5upgrade], [yes],           [The v5upgrade target])
5019 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
5020 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
5021 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
5022 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
5023 AC_PLUGIN([threshold],   [yes],                [Threshold checking plugin])
5024 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
5025 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
5026 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
5027 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
5028 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
5029 AC_PLUGIN([varnish],     [$with_libvarnish],   [Varnish cache statistics])
5030 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
5031 AC_PLUGIN([vmware],      [$with_libvmware],    [VMware client statistics])
5032 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
5033 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
5034 AC_PLUGIN([write_graphite], [yes],             [Graphite / Carbon output plugin])
5035 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
5036 AC_PLUGIN([write_mongodb], [$with_libmongoc],  [MongoDB output plugin])
5037 AC_PLUGIN([write_redis], [$with_libcredis],    [Redis output plugin])
5038 AC_PLUGIN([write_riemann], [$have_protobuf_c_h], [Riemann output plugin])
5039 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
5040 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
5041
5042 dnl Default configuration file
5043 # Load either syslog or logfile
5044 LOAD_PLUGIN_SYSLOG=""
5045 LOAD_PLUGIN_LOGFILE=""
5046
5047 AC_MSG_CHECKING([which default log plugin to load])
5048 default_log_plugin="none"
5049 if test "x$enable_syslog" = "xyes"
5050 then
5051         default_log_plugin="syslog"
5052 else
5053         LOAD_PLUGIN_SYSLOG="##"
5054 fi
5055
5056 if test "x$enable_logfile" = "xyes"
5057 then
5058         if test "x$default_log_plugin" = "xnone"
5059         then
5060                 default_log_plugin="logfile"
5061         else
5062                 LOAD_PLUGIN_LOGFILE="#"
5063         fi
5064 else
5065         LOAD_PLUGIN_LOGFILE="##"
5066 fi
5067 AC_MSG_RESULT([$default_log_plugin])
5068
5069 AC_SUBST(LOAD_PLUGIN_SYSLOG)
5070 AC_SUBST(LOAD_PLUGIN_LOGFILE)
5071
5072 DEFAULT_LOG_LEVEL="info"
5073 if test "x$enable_debug" = "xyes"
5074 then
5075         DEFAULT_LOG_LEVEL="debug"
5076 fi
5077 AC_SUBST(DEFAULT_LOG_LEVEL)
5078
5079 # Load only one of rrdtool, network, csv in the default config.
5080 LOAD_PLUGIN_RRDTOOL=""
5081 LOAD_PLUGIN_NETWORK=""
5082 LOAD_PLUGIN_CSV=""
5083
5084 AC_MSG_CHECKING([which default write plugin to load])
5085 default_write_plugin="none"
5086 if test "x$enable_rrdtool" = "xyes"
5087 then
5088         default_write_plugin="rrdtool"
5089 else
5090         LOAD_PLUGIN_RRDTOOL="##"
5091 fi
5092
5093 if test "x$enable_network" = "xyes"
5094 then
5095         if test "x$default_write_plugin" = "xnone"
5096         then
5097                 default_write_plugin="network"
5098         else
5099                 LOAD_PLUGIN_NETWORK="#"
5100         fi
5101 else
5102         LOAD_PLUGIN_NETWORK="##"
5103 fi
5104
5105 if test "x$enable_csv" = "xyes"
5106 then
5107         if test "x$default_write_plugin" = "xnone"
5108         then
5109                 default_write_plugin="csv"
5110         else
5111                 LOAD_PLUGIN_CSV="#"
5112         fi
5113 else
5114         LOAD_PLUGIN_CSV="##"
5115 fi
5116 AC_MSG_RESULT([$default_write_plugin])
5117
5118 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5119 AC_SUBST(LOAD_PLUGIN_NETWORK)
5120 AC_SUBST(LOAD_PLUGIN_CSV)
5121
5122 dnl ip_vs.h
5123 if test "x$ac_system" = "xLinux" \
5124         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
5125 then
5126         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5127 fi
5128
5129 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5130 then
5131         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5132 fi
5133
5134 dnl Perl bindings
5135 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
5136 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5137 [
5138         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5139         then
5140                 PERL_BINDINGS_OPTIONS="$withval"
5141                 with_perl_bindings="yes"
5142         else
5143                 with_perl_bindings="$withval"
5144         fi
5145 ],
5146 [
5147         if test -n "$perl_interpreter"
5148         then
5149                 with_perl_bindings="yes"
5150         else
5151                 with_perl_bindings="no (no perl interpreter found)"
5152         fi
5153 ])
5154 if test "x$with_perl_bindings" = "xyes"
5155 then
5156         PERL_BINDINGS="perl"
5157 else
5158         PERL_BINDINGS=""
5159 fi
5160 AC_SUBST(PERL_BINDINGS)
5161 AC_SUBST(PERL_BINDINGS_OPTIONS)
5162
5163 dnl libcollectdclient
5164 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5165 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5166 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5167
5168 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5169
5170 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5171
5172 AC_SUBST(LCC_VERSION_MAJOR)
5173 AC_SUBST(LCC_VERSION_MINOR)
5174 AC_SUBST(LCC_VERSION_PATCH)
5175 AC_SUBST(LCC_VERSION_EXTRA)
5176 AC_SUBST(LCC_VERSION_STRING)
5177
5178 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
5179
5180 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile)
5181
5182 if test "x$with_librrd" = "xyes" \
5183         && test "x$librrd_threadsafe" != "xyes"
5184 then
5185         with_librrd="yes (warning: librrd is not thread-safe)"
5186 fi
5187
5188 if test "x$with_libperl" = "xyes"
5189 then
5190         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
5191 else
5192         enable_perl="no (needs libperl)"
5193 fi
5194
5195 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5196 then
5197         enable_perl="no (libperl doesn't support ithreads)"
5198 fi
5199
5200 if test "x$with_perl_bindings" = "xyes" \
5201         && test "x$PERL_BINDINGS_OPTIONS" != "x"
5202 then
5203         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5204 fi
5205
5206 cat <<EOF;
5207
5208 Configuration:
5209   Libraries:
5210     libcurl . . . . . . . $with_libcurl
5211     libdbi  . . . . . . . $with_libdbi
5212     libcredis . . . . . . $with_libcredis
5213     libesmtp  . . . . . . $with_libesmtp
5214     libganglia  . . . . . $with_libganglia
5215     libgcrypt . . . . . . $with_libgcrypt
5216     libiokit  . . . . . . $with_libiokit
5217     libiptc . . . . . . . $with_libiptc
5218     libjvm  . . . . . . . $with_java
5219     libkstat  . . . . . . $with_kstat
5220     libkvm  . . . . . . . $with_libkvm
5221     libmemcached  . . . . $with_libmemcached
5222     libmodbus . . . . . . $with_libmodbus
5223     libmysql  . . . . . . $with_libmysql
5224     libnetapp . . . . . . $with_libnetapp
5225     libnetlink  . . . . . $with_libnetlink
5226     libnetsnmp  . . . . . $with_libnetsnmp
5227     libnotify . . . . . . $with_libnotify
5228     liboconfig  . . . . . $with_liboconfig
5229     libopenipmi . . . . . $with_libopenipmipthread
5230     liboping  . . . . . . $with_liboping
5231     libpcap . . . . . . . $with_libpcap
5232     libperfstat . . . . . $with_perfstat
5233     libperl . . . . . . . $with_libperl
5234     libpq . . . . . . . . $with_libpq
5235     libpthread  . . . . . $with_libpthread
5236     librabbitmq . . . . . $with_librabbitmq
5237     librouteros . . . . . $with_librouteros
5238     librrd  . . . . . . . $with_librrd
5239     libsensors  . . . . . $with_libsensors
5240     libstatgrab . . . . . $with_libstatgrab
5241     libtokyotyrant  . . . $with_libtokyotyrant
5242     libupsclient  . . . . $with_libupsclient
5243     libvarnish  . . . . . $with_libvarnish
5244     libvirt . . . . . . . $with_libvirt
5245     libvmware . . . . . . $with_libvmware
5246     libxml2 . . . . . . . $with_libxml2
5247     libxmms . . . . . . . $with_libxmms
5248     libyajl . . . . . . . $with_libyajl
5249     libevent  . . . . . . $with_libevent
5250     protobuf-c  . . . . . $have_protoc_c
5251     oracle  . . . . . . . $with_oracle
5252     python  . . . . . . . $with_python
5253
5254   Features:
5255     daemon mode . . . . . $enable_daemon
5256     debug . . . . . . . . $enable_debug
5257
5258   Bindings:
5259     perl  . . . . . . . . $with_perl_bindings
5260
5261   Modules:
5262     aggregation . . . . . $enable_aggregation
5263     amqp    . . . . . . . $enable_amqp
5264     apache  . . . . . . . $enable_apache
5265     apcups  . . . . . . . $enable_apcups
5266     apple_sensors . . . . $enable_apple_sensors
5267     ascent  . . . . . . . $enable_ascent
5268     battery . . . . . . . $enable_battery
5269     bind  . . . . . . . . $enable_bind
5270     conntrack . . . . . . $enable_conntrack
5271     contextswitch . . . . $enable_contextswitch
5272     cpu . . . . . . . . . $enable_cpu
5273     cpufreq . . . . . . . $enable_cpufreq
5274     csv . . . . . . . . . $enable_csv
5275     curl  . . . . . . . . $enable_curl
5276     curl_json . . . . . . $enable_curl_json
5277     curl_xml  . . . . . . $enable_curl_xml
5278     dbi . . . . . . . . . $enable_dbi
5279     df  . . . . . . . . . $enable_df
5280     disk  . . . . . . . . $enable_disk
5281     dns . . . . . . . . . $enable_dns
5282     email . . . . . . . . $enable_email
5283     entropy . . . . . . . $enable_entropy
5284     ethstat . . . . . . . $enable_ethstat
5285     exec  . . . . . . . . $enable_exec
5286     filecount . . . . . . $enable_filecount
5287     fscache . . . . . . . $enable_fscache
5288     gmond . . . . . . . . $enable_gmond
5289     hddtemp . . . . . . . $enable_hddtemp
5290     interface . . . . . . $enable_interface
5291     ipmi  . . . . . . . . $enable_ipmi
5292     iptables  . . . . . . $enable_iptables
5293     ipvs  . . . . . . . . $enable_ipvs
5294     irq . . . . . . . . . $enable_irq
5295     java  . . . . . . . . $enable_java
5296     libvirt . . . . . . . $enable_libvirt
5297     load  . . . . . . . . $enable_load
5298     logfile . . . . . . . $enable_logfile
5299     lpar... . . . . . . . $enable_lpar
5300     madwifi . . . . . . . $enable_madwifi
5301     match_empty_counter . $enable_match_empty_counter
5302     match_hashed  . . . . $enable_match_hashed
5303     match_regex . . . . . $enable_match_regex
5304     match_timediff  . . . $enable_match_timediff
5305     match_value . . . . . $enable_match_value
5306     mbmon . . . . . . . . $enable_mbmon
5307     md  . . . . . . . . . $enable_md
5308     memcachec . . . . . . $enable_memcachec
5309     memcached . . . . . . $enable_memcached
5310     memory  . . . . . . . $enable_memory
5311     modbus  . . . . . . . $enable_modbus
5312     multimeter  . . . . . $enable_multimeter
5313     mysql . . . . . . . . $enable_mysql
5314     netapp  . . . . . . . $enable_netapp
5315     netlink . . . . . . . $enable_netlink
5316     network . . . . . . . $enable_network
5317     nfs . . . . . . . . . $enable_nfs
5318     nginx . . . . . . . . $enable_nginx
5319     notify_desktop  . . . $enable_notify_desktop
5320     notify_email  . . . . $enable_notify_email
5321     ntpd  . . . . . . . . $enable_ntpd
5322     numa  . . . . . . . . $enable_numa
5323     nut . . . . . . . . . $enable_nut
5324     olsrd . . . . . . . . $enable_olsrd
5325     onewire . . . . . . . $enable_onewire
5326     openvpn . . . . . . . $enable_openvpn
5327     oracle  . . . . . . . $enable_oracle
5328     perl  . . . . . . . . $enable_perl
5329     pf  . . . . . . . . . $enable_pf
5330     pinba . . . . . . . . $enable_pinba
5331     ping  . . . . . . . . $enable_ping
5332     postgresql  . . . . . $enable_postgresql
5333     powerdns  . . . . . . $enable_powerdns
5334     processes . . . . . . $enable_processes
5335     protocols . . . . . . $enable_protocols
5336     python  . . . . . . . $enable_python
5337     redis . . . . . . . . $enable_redis
5338     routeros  . . . . . . $enable_routeros
5339     rrdcached . . . . . . $enable_rrdcached
5340     rrdtool . . . . . . . $enable_rrdtool
5341     sensors . . . . . . . $enable_sensors
5342     serial  . . . . . . . $enable_serial
5343     snmp  . . . . . . . . $enable_snmp
5344     swap  . . . . . . . . $enable_swap
5345     syslog  . . . . . . . $enable_syslog
5346     table . . . . . . . . $enable_table
5347     tail  . . . . . . . . $enable_tail
5348     tail_csv  . . . . . . $enable_tail_csv
5349     tape  . . . . . . . . $enable_tape
5350     target_notification . $enable_target_notification
5351     target_replace  . . . $enable_target_replace
5352     target_scale  . . . . $enable_target_scale
5353     target_set  . . . . . $enable_target_set
5354     target_v5upgrade  . . $enable_target_v5upgrade
5355     tcpconns  . . . . . . $enable_tcpconns
5356     teamspeak2  . . . . . $enable_teamspeak2
5357     ted . . . . . . . . . $enable_ted
5358     thermal . . . . . . . $enable_thermal
5359     threshold . . . . . . $enable_threshold
5360     tokyotyrant . . . . . $enable_tokyotyrant
5361     unixsock  . . . . . . $enable_unixsock
5362     uptime  . . . . . . . $enable_uptime
5363     users . . . . . . . . $enable_users
5364     uuid  . . . . . . . . $enable_uuid
5365     varnish . . . . . . . $enable_varnish
5366     vmem  . . . . . . . . $enable_vmem
5367     vmware  . . . . . . . $enable_vmware
5368     vserver . . . . . . . $enable_vserver
5369     wireless  . . . . . . $enable_wireless
5370     write_graphite  . . . $enable_write_graphite
5371     write_http  . . . . . $enable_write_http
5372     write_mongodb . . . . $enable_write_mongodb
5373     write_redis . . . . . $enable_write_redis
5374     write_riemann . . . . $enable_write_riemann
5375     xmms  . . . . . . . . $enable_xmms
5376     zfs_arc . . . . . . . $enable_zfs_arc
5377
5378 EOF
5379
5380 if test "x$dependency_error" = "xyes"; then
5381         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
5382 fi
5383
5384 if test "x$dependency_warning" = "xyes"; then
5385         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
5386 fi
5387
5388 # vim: set fdm=marker :