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