use pkg-config to locate libmnl and configure netlink plugin
[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=""
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$PKG_CONFIG" = "x"
2536 then
2537         with_libmnl="no (Don't have pkg-config)"
2538 fi
2539 if test "x$with_libmnl" = "xyes"
2540 then
2541         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
2542           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
2543           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
2544         fi
2545
2546         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
2547         [
2548          with_libmnl="yes"
2549          break
2550         ], [],
2551 [#include <stdio.h>
2552 #include <sys/types.h>
2553 #include <asm/types.h>
2554 #include <sys/socket.h>
2555 #include <linux/netlink.h>
2556 #include <linux/rtnetlink.h>])
2557         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2558 [#include <stdio.h>
2559 #include <sys/types.h>
2560 #include <asm/types.h>
2561 #include <sys/socket.h>])
2562
2563         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2564 [[
2565 #include <stdio.h>
2566 #include <sys/types.h>
2567 #include <asm/types.h>
2568 #include <sys/socket.h>
2569 #include <linux/netlink.h>
2570 #include <linux/rtnetlink.h>
2571 ]],
2572 [[
2573 int retval = TCA_STATS2;
2574 return (retval);
2575 ]]
2576         )],
2577         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2578
2579         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2580 [[
2581 #include <stdio.h>
2582 #include <sys/types.h>
2583 #include <asm/types.h>
2584 #include <sys/socket.h>
2585 #include <linux/netlink.h>
2586 #include <linux/rtnetlink.h>
2587 ]],
2588 [[
2589 int retval = TCA_STATS;
2590 return (retval);
2591 ]]
2592         )],
2593         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
2594 fi
2595 if test "x$with_libmnl" = "xyes"
2596 then
2597         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
2598                      [with_libmnl="yes"],
2599                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
2600                      [$with_libmnl_libs])
2601 fi
2602 if test "x$with_libmnl" = "xyes"
2603 then
2604         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
2605         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
2606         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
2607         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
2608         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
2609 fi
2610 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
2611 # }}}
2612
2613 # --with-libnetapp {{{
2614 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2615 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
2616 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
2617 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2618 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2619 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2620 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2621 [
2622  if test -d "$withval"
2623  then
2624          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2625          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2626          with_libnetapp="yes"
2627  else
2628          with_libnetapp="$withval"
2629  fi
2630 ],
2631 [
2632  with_libnetapp="yes"
2633 ])
2634
2635 SAVE_CPPFLAGS="$CPPFLAGS"
2636 SAVE_LDFLAGS="$LDFLAGS"
2637 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2638 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2639
2640 if test "x$with_libnetapp" = "xyes"
2641 then
2642         if test "x$LIBNETAPP_CPPFLAGS" != "x"
2643         then
2644                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2645         fi
2646         AC_CHECK_HEADERS(netapp_api.h,
2647                 [with_libnetapp="yes"],
2648                 [with_libnetapp="no (netapp_api.h not found)"])
2649 fi
2650
2651 if test "x$with_libnetapp" = "xyes"
2652 then
2653         if test "x$LIBNETAPP_LDFLAGS" != "x"
2654         then
2655                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2656         fi
2657
2658         if test "x$LIBNETAPP_LIBS" = "x"
2659         then
2660                 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
2661         fi
2662         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2663
2664         AC_CHECK_LIB(netapp, na_server_invoke_elem,
2665                 [with_libnetapp="yes"],
2666                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2667                 [$LIBNETAPP_LIBS])
2668         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
2669 fi
2670
2671 CPPFLAGS="$SAVE_CPPFLAGS"
2672 LDFLAGS="$SAVE_LDFLAGS"
2673
2674 if test "x$with_libnetapp" = "xyes"
2675 then
2676         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
2677 fi
2678
2679 AC_SUBST(LIBNETAPP_CPPFLAGS)
2680 AC_SUBST(LIBNETAPP_LDFLAGS)
2681 AC_SUBST(LIBNETAPP_LIBS)
2682 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
2683 # }}}
2684
2685 # --with-libnetsnmp {{{
2686 with_snmp_config="net-snmp-config"
2687 with_snmp_cflags=""
2688 with_snmp_libs=""
2689 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
2690 [
2691         if test "x$withval" = "xno"
2692         then
2693                 with_libnetsnmp="no"
2694         else if test "x$withval" = "xyes"
2695         then
2696                 with_libnetsnmp="yes"
2697         else
2698                 if test -x "$withval"
2699                 then
2700                         with_snmp_config="$withval"
2701                         with_libnetsnmp="yes"
2702                 else
2703                         with_snmp_config="$withval/bin/net-snmp-config"
2704                         with_libnetsnmp="yes"
2705                 fi
2706         fi; fi
2707 ],
2708 [with_libnetsnmp="yes"])
2709 if test "x$with_libnetsnmp" = "xyes"
2710 then
2711         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
2712         snmp_config_status=$?
2713
2714         if test $snmp_config_status -ne 0
2715         then
2716                 with_libnetsnmp="no ($with_snmp_config failed)"
2717         else
2718                 SAVE_CPPFLAGS="$CPPFLAGS"
2719                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
2720                 
2721                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
2722
2723                 CPPFLAGS="$SAVE_CPPFLAGS"
2724         fi
2725 fi
2726 if test "x$with_libnetsnmp" = "xyes"
2727 then
2728         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
2729         snmp_config_status=$?
2730
2731         if test $snmp_config_status -ne 0
2732         then
2733                 with_libnetsnmp="no ($with_snmp_config failed)"
2734         else
2735                 AC_CHECK_LIB(netsnmp, init_snmp,
2736                 [with_libnetsnmp="yes"],
2737                 [with_libnetsnmp="no (libnetsnmp not found)"],
2738                 [$with_snmp_libs])
2739         fi
2740 fi
2741 if test "x$with_libnetsnmp" = "xyes"
2742 then
2743         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
2744         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
2745         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
2746         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
2747 fi
2748 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
2749 # }}}
2750
2751 # --with-liboconfig {{{
2752 with_own_liboconfig="no"
2753 liboconfig_LDFLAGS="$LDFLAGS"
2754 liboconfig_CPPFLAGS="$CPPFLAGS"
2755 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
2756 [
2757         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2758         then
2759                 if test -d "$withval/lib"
2760                 then
2761                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
2762                 fi
2763                 if test -d "$withval/include"
2764                 then
2765                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
2766                 fi
2767         fi
2768         if test "x$withval" = "xno"
2769         then
2770                 AC_MSG_ERROR("liboconfig is required")
2771         fi
2772 ],
2773 [
2774         with_liboconfig="yes"
2775 ])
2776
2777 save_LDFLAGS="$LDFLAGS"
2778 save_CPPFLAGS="$CPPFLAGS"
2779 LDFLAGS="$liboconfig_LDFLAGS"
2780 CPPFLAGS="$liboconfig_CPPFLAGS"
2781 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
2782 [
2783         with_liboconfig="yes"
2784         with_own_liboconfig="no"
2785 ],
2786 [
2787         with_liboconfig="yes"
2788         with_own_liboconfig="yes"
2789         LDFLAGS="$save_LDFLAGS"
2790         CPPFLAGS="$save_CPPFLAGS"
2791 ])
2792
2793 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
2794 if test "x$with_own_liboconfig" = "xyes"
2795 then
2796         with_liboconfig="yes (shipped version)"
2797 fi
2798 # }}}
2799
2800 # --with-liboping {{{
2801 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
2802 [
2803  if test "x$withval" = "xyes"
2804  then
2805          with_liboping="yes"
2806  else if test "x$withval" = "xno"
2807  then
2808          with_liboping="no"
2809  else
2810          with_liboping="yes"
2811          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
2812          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
2813  fi; fi
2814 ],
2815 [with_liboping="yes"])
2816
2817 SAVE_CPPFLAGS="$CPPFLAGS"
2818 SAVE_LDFLAGS="$LDFLAGS"
2819
2820 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
2821 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
2822
2823 if test "x$with_liboping" = "xyes"
2824 then
2825         if test "x$LIBOPING_CPPFLAGS" != "x"
2826         then
2827                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
2828         fi
2829         AC_CHECK_HEADERS(oping.h,
2830         [with_liboping="yes"],
2831         [with_liboping="no (oping.h not found)"])
2832 fi
2833 if test "x$with_liboping" = "xyes"
2834 then
2835         if test "x$LIBOPING_LDFLAGS" != "x"
2836         then
2837                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
2838         fi
2839         AC_CHECK_LIB(oping, ping_construct,
2840         [with_liboping="yes"],
2841         [with_liboping="no (symbol 'ping_construct' not found)"])
2842 fi
2843
2844 CPPFLAGS="$SAVE_CPPFLAGS"
2845 LDFLAGS="$SAVE_LDFLAGS"
2846
2847 if test "x$with_liboping" = "xyes"
2848 then
2849         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
2850         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
2851         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
2852         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
2853 fi
2854 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
2855 # }}}
2856
2857 # --with-oracle {{{
2858 with_oracle_cppflags=""
2859 with_oracle_libs=""
2860 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
2861 [
2862         if test "x$withval" = "xyes"
2863         then
2864                 if test "x$ORACLE_HOME" = "x"
2865                 then
2866                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
2867                 fi
2868                 with_oracle="yes"
2869         else if test "x$withval" = "xno"
2870         then
2871                 with_oracle="no"
2872         else
2873                 with_oracle="yes"
2874                 ORACLE_HOME="$withval"
2875         fi; fi
2876 ],
2877 [
2878         if test "x$ORACLE_HOME" = "x"
2879         then
2880                 with_oracle="no (ORACLE_HOME is not set)"
2881         else
2882                 with_oracle="yes"
2883         fi
2884 ])
2885 if test "x$ORACLE_HOME" != "x"
2886 then
2887         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
2888
2889         if test -e "$ORACLE_HOME/lib/ldflags"
2890         then
2891                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
2892         fi
2893         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
2894         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
2895 fi
2896 if test "x$with_oracle" = "xyes"
2897 then
2898         SAVE_CPPFLAGS="$CPPFLAGS"
2899         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2900
2901         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
2902
2903         CPPFLAGS="$SAVE_CPPFLAGS"
2904 fi
2905 if test "x$with_oracle" = "xyes"
2906 then
2907         SAVE_CPPFLAGS="$CPPFLAGS"
2908         SAVE_LDFLAGS="$LDFLAGS"
2909         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2910         LDFLAGS="$LDFLAGS $with_oracle_libs"
2911
2912         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
2913
2914         CPPFLAGS="$SAVE_CPPFLAGS"
2915         LDFLAGS="$SAVE_LDFLAGS"
2916 fi
2917 if test "x$with_oracle" = "xyes"
2918 then
2919         BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
2920         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
2921         AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
2922         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
2923 fi
2924 # }}}
2925
2926 # --with-libowcapi {{{
2927 with_libowcapi_cppflags=""
2928 with_libowcapi_libs="-lowcapi"
2929 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
2930 [
2931         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2932         then
2933                 with_libowcapi_cppflags="-I$withval/include"
2934                 with_libowcapi_libs="-L$withval/lib -lowcapi"
2935                 with_libowcapi="yes"
2936         else
2937                 with_libowcapi="$withval"
2938         fi
2939 ],
2940 [
2941         with_libowcapi="yes"
2942 ])
2943 if test "x$with_libowcapi" = "xyes"
2944 then
2945         SAVE_CPPFLAGS="$CPPFLAGS"
2946         CPPFLAGS="$with_libowcapi_cppflags"
2947         
2948         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
2949
2950         CPPFLAGS="$SAVE_CPPFLAGS"
2951 fi
2952 if test "x$with_libowcapi" = "xyes"
2953 then
2954         SAVE_LDFLAGS="$LDFLAGS"
2955         SAVE_CPPFLAGS="$CPPFLAGS"
2956         LDFLAGS="$with_libowcapi_libs"
2957         CPPFLAGS="$with_libowcapi_cppflags"
2958         
2959         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
2960
2961         LDFLAGS="$SAVE_LDFLAGS"
2962         CPPFLAGS="$SAVE_CPPFLAGS"
2963 fi
2964 if test "x$with_libowcapi" = "xyes"
2965 then
2966         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
2967         BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
2968         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
2969         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
2970 fi
2971 # }}}
2972
2973 # --with-libpcap {{{
2974 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
2975 [
2976         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2977         then
2978                 LDFLAGS="$LDFLAGS -L$withval/lib"
2979                 CPPFLAGS="$CPPFLAGS -I$withval/include"
2980                 with_libpcap="yes"
2981         else
2982                 with_libpcap="$withval"
2983         fi
2984 ],
2985 [
2986         with_libpcap="yes"
2987 ])
2988 if test "x$with_libpcap" = "xyes"
2989 then
2990         AC_CHECK_LIB(pcap, pcap_open_live,
2991         [
2992                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
2993         ], [with_libpcap="no (libpcap not found)"])
2994 fi
2995 if test "x$with_libpcap" = "xyes"
2996 then
2997         AC_CHECK_HEADERS(pcap.h,,
2998                          [with_libpcap="no (pcap.h not found)"])
2999 fi
3000 if test "x$with_libpcap" = "xyes"
3001 then
3002         AC_CHECK_HEADERS(pcap-bpf.h,,
3003                          [with_libpcap="no (pcap-bpf.h not found)"])
3004 fi
3005 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3006 # }}}
3007
3008 # --with-libperl {{{
3009 perl_interpreter="perl"
3010 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3011 [
3012         if test -f "$withval" && test -x "$withval"
3013         then
3014                 perl_interpreter="$withval"
3015                 with_libperl="yes"
3016         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3017         then
3018                 LDFLAGS="$LDFLAGS -L$withval/lib"
3019                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3020                 perl_interpreter="$withval/bin/perl"
3021                 with_libperl="yes"
3022         else
3023                 with_libperl="$withval"
3024         fi; fi
3025 ],
3026 [
3027         with_libperl="yes"
3028 ])
3029
3030 AC_MSG_CHECKING([for perl])
3031 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3032 if test -x "$perl_interpreter"
3033 then
3034         AC_MSG_RESULT([yes ($perl_interpreter)])
3035 else
3036         perl_interpreter=""
3037         AC_MSG_RESULT([no])
3038 fi
3039
3040 AC_SUBST(PERL, "$perl_interpreter")
3041
3042 if test "x$with_libperl" = "xyes" \
3043         && test -n "$perl_interpreter"
3044 then
3045   SAVE_CFLAGS="$CFLAGS"
3046   SAVE_LDFLAGS="$LDFLAGS"
3047 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3048   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3049   PERL_LDFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3050   CFLAGS="$CFLAGS $PERL_CFLAGS"
3051   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3052
3053   AC_CACHE_CHECK([for libperl],
3054     [c_cv_have_libperl],
3055     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3056 [[[
3057 #define PERL_NO_GET_CONTEXT
3058 #include <EXTERN.h>
3059 #include <perl.h>
3060 #include <XSUB.h>
3061 ]]],
3062 [[[
3063        dTHX;
3064        load_module (PERL_LOADMOD_NOIMPORT,
3065                          newSVpv ("Collectd::Plugin::FooBar", 24),
3066                          Nullsv);
3067 ]]]
3068       )],
3069       [c_cv_have_libperl="yes"],
3070       [c_cv_have_libperl="no"]
3071     )
3072   )
3073
3074   if test "x$c_cv_have_libperl" = "xyes"
3075   then
3076           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3077           AC_SUBST(PERL_CFLAGS)
3078           AC_SUBST(PERL_LDFLAGS)
3079   else
3080           with_libperl="no"
3081   fi
3082
3083   CFLAGS="$SAVE_CFLAGS"
3084   LDFLAGS="$SAVE_LDFLAGS"
3085 else if test -z "$perl_interpreter"; then
3086   with_libperl="no (no perl interpreter found)"
3087   c_cv_have_libperl="no"
3088 fi; fi
3089 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3090
3091 if test "x$with_libperl" = "xyes"
3092 then
3093         SAVE_CFLAGS="$CFLAGS"
3094         SAVE_LDFLAGS="$LDFLAGS"
3095         CFLAGS="$CFLAGS $PERL_CFLAGS"
3096         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3097
3098         AC_CACHE_CHECK([if perl supports ithreads],
3099                 [c_cv_have_perl_ithreads],
3100                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3101 [[[
3102 #include <EXTERN.h>
3103 #include <perl.h>
3104 #include <XSUB.h>
3105
3106 #if !defined(USE_ITHREADS)
3107 # error "Perl does not support ithreads!"
3108 #endif /* !defined(USE_ITHREADS) */
3109 ]]],
3110 [[[ ]]]
3111                         )],
3112                         [c_cv_have_perl_ithreads="yes"],
3113                         [c_cv_have_perl_ithreads="no"]
3114                 )
3115         )
3116
3117         if test "x$c_cv_have_perl_ithreads" = "xyes"
3118         then
3119                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3120         fi
3121
3122         CFLAGS="$SAVE_CFLAGS"
3123         LDFLAGS="$SAVE_LDFLAGS"
3124 fi
3125
3126 if test "x$with_libperl" = "xyes"
3127 then
3128         SAVE_CFLAGS="$CFLAGS"
3129         SAVE_LDFLAGS="$LDFLAGS"
3130         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3131         # (see issues #41 and #42)
3132         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3133         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3134
3135         AC_CACHE_CHECK([for broken Perl_load_module()],
3136                 [c_cv_have_broken_perl_load_module],
3137                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3138 [[[
3139 #define PERL_NO_GET_CONTEXT
3140 #include <EXTERN.h>
3141 #include <perl.h>
3142 #include <XSUB.h>
3143 ]]],
3144 [[[
3145                          dTHX;
3146                          load_module (PERL_LOADMOD_NOIMPORT,
3147                              newSVpv ("Collectd::Plugin::FooBar", 24),
3148                              Nullsv);
3149 ]]]
3150                         )],
3151                         [c_cv_have_broken_perl_load_module="no"],
3152                         [c_cv_have_broken_perl_load_module="yes"]
3153                 )
3154         )
3155
3156         CFLAGS="$SAVE_CFLAGS"
3157         LDFLAGS="$SAVE_LDFLAGS"
3158 fi
3159 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3160                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3161
3162 if test "x$with_libperl" = "xyes"
3163 then
3164         SAVE_CFLAGS="$CFLAGS"
3165         SAVE_LDFLAGS="$LDFLAGS"
3166         CFLAGS="$CFLAGS $PERL_CFLAGS"
3167         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3168
3169         AC_CHECK_MEMBER(
3170                 [struct mgvtbl.svt_local],
3171                 [have_struct_mgvtbl_svt_local="yes"],
3172                 [have_struct_mgvtbl_svt_local="no"],
3173                 [
3174 #include <EXTERN.h>
3175 #include <perl.h>
3176 #include <XSUB.h>
3177                 ])
3178
3179         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3180         then
3181                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3182                                   [Define if Perl's struct mgvtbl has member svt_local.])
3183         fi
3184
3185         CFLAGS="$SAVE_CFLAGS"
3186         LDFLAGS="$SAVE_LDFLAGS"
3187 fi
3188 # }}}
3189
3190 # --with-libpq {{{
3191 with_pg_config="pg_config"
3192 with_libpq_includedir=""
3193 with_libpq_libdir=""
3194 with_libpq_cppflags=""
3195 with_libpq_ldflags=""
3196 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3197         [Path to libpq.])],
3198 [
3199         if test "x$withval" = "xno"
3200         then
3201                 with_libpq="no"
3202         else if test "x$withval" = "xyes"
3203         then
3204                 with_libpq="yes"
3205         else
3206                 if test -f "$withval" && test -x "$withval";
3207                 then
3208                         with_pg_config="$withval"
3209                 else if test -x "$withval/bin/pg_config"
3210                 then
3211                         with_pg_config="$withval/bin/pg_config"
3212                 fi; fi
3213                 with_libpq="yes"
3214         fi; fi
3215 ],
3216 [
3217         with_libpq="yes"
3218 ])
3219 if test "x$with_libpq" = "xyes"
3220 then
3221         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3222         pg_config_status=$?
3223
3224         if test $pg_config_status -eq 0
3225         then
3226                 if test -n "$with_libpq_includedir"; then
3227                         for dir in $with_libpq_includedir; do
3228                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3229                         done
3230                 fi
3231         else
3232                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3233         fi
3234
3235         SAVE_CPPFLAGS="$CPPFLAGS"
3236         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3237
3238         AC_CHECK_HEADERS(libpq-fe.h, [],
3239                 [with_libpq="no (libpq-fe.h not found)"], [])
3240
3241         CPPFLAGS="$SAVE_CPPFLAGS"
3242 fi
3243 if test "x$with_libpq" = "xyes"
3244 then
3245         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3246         pg_config_status=$?
3247
3248         if test $pg_config_status -eq 0
3249         then
3250                 if test -n "$with_libpq_libdir"; then
3251                         for dir in $with_libpq_libdir; do
3252                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3253                         done
3254                 fi
3255         else
3256                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3257         fi
3258
3259         SAVE_LDFLAGS="$LDFLAGS"
3260         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3261
3262         AC_CHECK_LIB(pq, PQconnectdb,
3263                 [with_libpq="yes"],
3264                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3265
3266         AC_CHECK_LIB(pq, PQserverVersion,
3267                 [with_libpq="yes"],
3268                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3269
3270         LDFLAGS="$SAVE_LDFLAGS"
3271 fi
3272 if test "x$with_libpq" = "xyes"
3273 then
3274         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3275         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3276         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3277         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3278 fi
3279 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3280 # }}}
3281
3282 # --with-libpthread {{{
3283 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3284 [       if test "x$withval" != "xno" \
3285                 && test "x$withval" != "xyes"
3286         then
3287                 LDFLAGS="$LDFLAGS -L$withval/lib"
3288                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3289                 with_libpthread="yes"
3290         else
3291                 if test "x$withval" = "xno"
3292                 then
3293                         with_libpthread="no (disabled)"
3294                 fi
3295         fi
3296 ], [with_libpthread="yes"])
3297 if test "x$with_libpthread" = "xyes"
3298 then
3299         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3300 fi
3301
3302 if test "x$with_libpthread" = "xyes"
3303 then
3304         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
3305 fi
3306 if test "x$with_libpthread" = "xyes"
3307 then
3308         collect_pthread=1
3309 else
3310         collect_pthread=0
3311 fi
3312 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3313         [Wether or not to use pthread (POSIX threads) library])
3314 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
3315 # }}}
3316
3317 # --with-python {{{
3318 with_python_prog=""
3319 with_python_path="$PATH"
3320 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3321 [
3322  if test "x$withval" = "xyes" || test "x$withval" = "xno"
3323  then
3324          with_python="$withval"
3325  else if test -x "$withval"
3326  then
3327          with_python_prog="$withval"
3328          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3329          with_python="yes"
3330  else if test -d "$withval"
3331  then
3332          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3333          with_python="yes"
3334  else
3335          AC_MSG_WARN([Argument not recognized: $withval])
3336  fi; fi; fi
3337 ], [with_python="yes"])
3338
3339 SAVE_PATH="$PATH"
3340 SAVE_CPPFLAGS="$CPPFLAGS"
3341 SAVE_LDFLAGS="$LDFLAGS"
3342 SAVE_LIBS="$LIBS"
3343
3344 PATH="$with_python_path"
3345
3346 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3347 then
3348         AC_MSG_CHECKING([for python])
3349         with_python_prog="`which python 2>/dev/null`"
3350         if test "x$with_python_prog" = "x"
3351         then
3352                 AC_MSG_RESULT([not found])
3353                 with_python="no (interpreter not found)"
3354         else
3355                 AC_MSG_RESULT([$with_python_prog])
3356         fi
3357 fi
3358
3359 if test "x$with_python" = "xyes"
3360 then
3361         AC_MSG_CHECKING([for Python CPPFLAGS])
3362         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3363         python_config_status=$?
3364
3365         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3366         then
3367                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3368                 with_python="no"
3369         else
3370                 AC_MSG_RESULT([$python_include_path])
3371         fi
3372 fi
3373
3374 if test "x$with_python" = "xyes"
3375 then
3376         CPPFLAGS="-I$python_include_path $CPPFLAGS"
3377         AC_CHECK_HEADERS(Python.h,
3378                          [with_python="yes"],
3379                          [with_python="no ('Python.h' not found)"])
3380 fi
3381
3382 if test "x$with_python" = "xyes"
3383 then
3384         AC_MSG_CHECKING([for Python LDFLAGS])
3385         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`
3386         python_config_status=$?
3387
3388         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3389         then
3390                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3391                 with_python="no"
3392         else
3393                 AC_MSG_RESULT([$python_library_path])
3394         fi
3395 fi
3396
3397 if test "x$with_python" = "xyes"
3398 then
3399         AC_MSG_CHECKING([for Python LIBS])
3400         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`
3401         python_config_status=$?
3402
3403         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3404         then
3405                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3406                 with_python="no"
3407         else
3408                 AC_MSG_RESULT([$python_library_flags])
3409         fi
3410 fi
3411
3412 if test "x$with_python" = "xyes"
3413 then
3414         LDFLAGS="-L$python_library_path $LDFLAGS"
3415         LIBS="$python_library_flags $LIBS"
3416
3417         AC_CHECK_FUNC(PyObject_CallFunction,
3418                       [with_python="yes"],
3419                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3420 fi
3421
3422 PATH="$SAVE_PATH"
3423 CPPFLAGS="$SAVE_CPPFLAGS"
3424 LDFLAGS="$SAVE_LDFLAGS"
3425 LIBS="$SAVE_LIBS"
3426
3427 if test "x$with_python" = "xyes"
3428 then
3429         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3430         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3431         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3432         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3433         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3434         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3435 fi
3436 # }}} --with-python
3437
3438 # --with-librabbitmq {{{
3439 with_librabbitmq_cppflags=""
3440 with_librabbitmq_ldflags=""
3441 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3442 [
3443         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3444         then
3445                 with_librabbitmq_cppflags="-I$withval/include"
3446                 with_librabbitmq_ldflags="-L$withval/lib"
3447                 with_librabbitmq="yes"
3448         else
3449                 with_librabbitmq="$withval"
3450         fi
3451 ],
3452 [
3453         with_librabbitmq="yes"
3454 ])
3455 SAVE_CPPFLAGS="$CPPFLAGS"
3456 SAVE_LDFLAGS="$LDFLAGS"
3457 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3458 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3459 if test "x$with_librabbitmq" = "xyes"
3460 then
3461         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3462 fi
3463 if test "x$with_librabbitmq" = "xyes"
3464 then
3465         # librabbitmq up to version 0.9.1 provides "library_errno", later
3466         # versions use "library_error". The library does not provide a version
3467         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3468         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3469                          [
3470 #if HAVE_STDLIB_H
3471 # include <stdlib.h>
3472 #endif
3473 #if HAVE_STDIO_H
3474 # include <stdio.h>
3475 #endif
3476 #if HAVE_STDINT_H
3477 # include <stdint.h>
3478 #endif
3479 #if HAVE_INTTYPES_H
3480 # include <inttypes.h>
3481 #endif
3482 #include <amqp.h>
3483                          ])
3484 fi
3485 if test "x$with_librabbitmq" = "xyes"
3486 then
3487         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3488 fi
3489 if test "x$with_librabbitmq" = "xyes"
3490 then
3491         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3492         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3493         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3494         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3495         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3496         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3497         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3498 fi
3499 CPPFLAGS="$SAVE_CPPFLAGS"
3500 LDFLAGS="$SAVE_LDFLAGS"
3501 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3502 # }}}
3503
3504 # --with-librouteros {{{
3505 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3506 [
3507  if test "x$withval" = "xyes"
3508  then
3509          with_librouteros="yes"
3510  else if test "x$withval" = "xno"
3511  then
3512          with_librouteros="no"
3513  else
3514          with_librouteros="yes"
3515          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3516          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3517  fi; fi
3518 ],
3519 [with_librouteros="yes"])
3520
3521 SAVE_CPPFLAGS="$CPPFLAGS"
3522 SAVE_LDFLAGS="$LDFLAGS"
3523
3524 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3525 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3526
3527 if test "x$with_librouteros" = "xyes"
3528 then
3529         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3530         then
3531                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3532         fi
3533         AC_CHECK_HEADERS(routeros_api.h,
3534         [with_librouteros="yes"],
3535         [with_librouteros="no (routeros_api.h not found)"])
3536 fi
3537 if test "x$with_librouteros" = "xyes"
3538 then
3539         if test "x$LIBROUTEROS_LDFLAGS" != "x"
3540         then
3541                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3542         fi
3543         AC_CHECK_LIB(routeros, ros_interface,
3544         [with_librouteros="yes"],
3545         [with_librouteros="no (symbol 'ros_interface' not found)"])
3546 fi
3547
3548 CPPFLAGS="$SAVE_CPPFLAGS"
3549 LDFLAGS="$SAVE_LDFLAGS"
3550
3551 if test "x$with_librouteros" = "xyes"
3552 then
3553         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3554         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3555         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3556         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3557 fi
3558 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3559 # }}}
3560
3561 # --with-librrd {{{
3562 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3563 librrd_cflags=""
3564 librrd_ldflags=""
3565 librrd_threadsafe="yes"
3566 librrd_rrdc_update="no"
3567 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3568 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
3569         then
3570                 librrd_cflags="-I$withval/include"
3571                 librrd_ldflags="-L$withval/lib"
3572                 with_librrd="yes"
3573         else
3574                 with_librrd="$withval"
3575         fi
3576 ], [with_librrd="yes"])
3577 if test "x$with_librrd" = "xyes"
3578 then
3579         SAVE_CPPFLAGS="$CPPFLAGS"
3580         SAVE_LDFLAGS="$LDFLAGS"
3581
3582         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3583         LDFLAGS="$LDFLAGS $librrd_ldflags"
3584
3585         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
3586
3587         CPPFLAGS="$SAVE_CPPFLAGS"
3588         LDFLAGS="$SAVE_LDFLAGS"
3589 fi
3590 if test "x$with_librrd" = "xyes"
3591 then
3592         SAVE_CPPFLAGS="$CPPFLAGS"
3593         SAVE_LDFLAGS="$LDFLAGS"
3594
3595         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3596         LDFLAGS="$LDFLAGS $librrd_ldflags"
3597
3598         AC_CHECK_LIB(rrd_th, rrd_update_r,
3599         [with_librrd="yes"
3600          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3601         ],
3602         [librrd_threadsafe="no"
3603          AC_CHECK_LIB(rrd, rrd_update,
3604          [with_librrd="yes"
3605           librrd_ldflags="$librrd_ldflags -lrrd -lm"
3606          ],
3607          [with_librrd="no (symbol 'rrd_update' not found)"],
3608          [-lm])
3609         ],
3610         [-lm])
3611
3612         if test "x$librrd_threadsafe" = "xyes"
3613         then
3614                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3615         else
3616                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3617         fi
3618
3619         CPPFLAGS="$SAVE_CPPFLAGS"
3620         LDFLAGS="$SAVE_LDFLAGS"
3621 fi
3622 if test "x$with_librrd" = "xyes"
3623 then
3624         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3625         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3626         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3627         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3628 fi
3629 if test "x$librrd_threadsafe" = "xyes"
3630 then
3631         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
3632 fi
3633 # }}}
3634
3635 # --with-libsensors {{{
3636 with_sensors_cflags=""
3637 with_sensors_ldflags=""
3638 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
3639 [
3640         if test "x$withval" = "xno"
3641         then
3642                 with_libsensors="no"
3643         else
3644                 with_libsensors="yes"
3645                 if test "x$withval" != "xyes"
3646                 then
3647                         with_sensors_cflags="-I$withval/include"
3648                         with_sensors_ldflags="-L$withval/lib"
3649                         with_libsensors="yes"
3650                 fi
3651         fi
3652 ],
3653 [
3654         if test "x$ac_system" = "xLinux"
3655         then
3656                 with_libsensors="yes"
3657         else
3658                 with_libsensors="no (Linux only library)"
3659         fi
3660 ])
3661 if test "x$with_libsensors" = "xyes"
3662 then
3663         SAVE_CPPFLAGS="$CPPFLAGS"
3664         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3665
3666 #       AC_CHECK_HEADERS(sensors/sensors.h,
3667 #       [
3668 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3669 #       ],
3670 #       [with_libsensors="no (sensors/sensors.h not found)"])
3671         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3672
3673         CPPFLAGS="$SAVE_CPPFLAGS"
3674 fi
3675 if test "x$with_libsensors" = "xyes"
3676 then
3677         SAVE_CPPFLAGS="$CPPFLAGS"
3678         SAVE_LDFLAGS="$LDFLAGS"
3679         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3680         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3681
3682         AC_CHECK_LIB(sensors, sensors_init,
3683         [
3684                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
3685         ],
3686         [with_libsensors="no (libsensors not found)"])
3687
3688         CPPFLAGS="$SAVE_CPPFLAGS"
3689         LDFLAGS="$SAVE_LDFLAGS"
3690 fi
3691 if test "x$with_libsensors" = "xyes"
3692 then
3693         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3694         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3695         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3696         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
3697 fi
3698 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
3699 # }}}
3700
3701 # --with-libstatgrab {{{
3702 with_libstatgrab_cflags=""
3703 with_libstatgrab_ldflags=""
3704 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
3705 [
3706  if test "x$withval" != "xno" \
3707    && test "x$withval" != "xyes"
3708  then
3709    with_libstatgrab_cflags="-I$withval/include"
3710    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3711    with_libstatgrab="yes"
3712    with_libstatgrab_pkg_config="no"
3713  else
3714    with_libstatgrab="$withval"
3715    with_libstatgrab_pkg_config="yes"
3716  fi
3717  ],
3718 [
3719  with_libstatgrab="yes"
3720  with_libstatgrab_pkg_config="yes"
3721 ])
3722
3723 if test "x$with_libstatgrab" = "xyes" \
3724   && test "x$with_libstatgrab_pkg_config" = "xyes"
3725 then
3726   if test "x$PKG_CONFIG" != "x"
3727   then
3728     AC_MSG_CHECKING([pkg-config for libstatgrab])
3729     temp_result="found"
3730     $PKG_CONFIG --exists libstatgrab 2>/dev/null
3731     if test "$?" != "0"
3732     then
3733       with_libstatgrab_pkg_config="no"
3734       with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
3735       temp_result="not found"
3736     fi
3737     AC_MSG_RESULT([$temp_result])
3738   else
3739     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
3740     with_libstatgrab_pkg_config="no"
3741     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
3742   fi
3743 fi
3744
3745 if test "x$with_libstatgrab" = "xyes" \
3746   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3747   && test "x$with_libstatgrab_cflags" = "x"
3748 then
3749   AC_MSG_CHECKING([for libstatgrab CFLAGS])
3750   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
3751   if test "$?" = "0"
3752   then
3753     with_libstatgrab_cflags="$temp_result"
3754   else
3755     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
3756     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
3757   fi
3758   AC_MSG_RESULT([$temp_result])
3759 fi
3760
3761 if test "x$with_libstatgrab" = "xyes" \
3762   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3763   && test "x$with_libstatgrab_ldflags" = "x"
3764 then
3765   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
3766   temp_result="`$PKG_CONFIG --libs libstatgrab`"
3767   if test "$?" = "0"
3768   then
3769     with_libstatgrab_ldflags="$temp_result"
3770   else
3771     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
3772     temp_result="$PKG_CONFIG --libs libstatgrab failed"
3773   fi
3774   AC_MSG_RESULT([$temp_result])
3775 fi
3776
3777 if test "x$with_libstatgrab" = "xyes"
3778 then
3779   SAVE_CPPFLAGS="$CPPFLAGS"
3780   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
3781
3782   AC_CHECK_HEADERS(statgrab.h,
3783                    [with_libstatgrab="yes"],
3784                    [with_libstatgrab="no (statgrab.h not found)"])
3785
3786   CPPFLAGS="$SAVE_CPPFLAGS"
3787 fi
3788
3789 if test "x$with_libstatgrab" = "xyes"
3790 then
3791   SAVE_CFLAGS="$CFLAGS"
3792   SAVE_LDFLAGS="$LDFLAGS"
3793
3794   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
3795   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
3796
3797   AC_CHECK_LIB(statgrab, sg_init,
3798                [with_libstatgrab="yes"],
3799                [with_libstatgrab="no (symbol sg_init not found)"])
3800
3801   CFLAGS="$SAVE_CFLAGS"
3802   LDFLAGS="$SAVE_LDFLAGS"
3803 fi
3804
3805 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
3806 if test "x$with_libstatgrab" = "xyes"
3807 then
3808   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
3809   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
3810   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
3811   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
3812   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
3813 fi
3814 # }}}
3815
3816 # --with-libtokyotyrant {{{
3817 with_libtokyotyrant_cppflags=""
3818 with_libtokyotyrant_ldflags=""
3819 with_libtokyotyrant_libs=""
3820 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
3821 [
3822   if test "x$withval" = "xno"
3823   then
3824     with_libtokyotyrant="no"
3825   else if test "x$withval" = "xyes"
3826   then
3827     with_libtokyotyrant="yes"
3828   else
3829     with_libtokyotyrant_cppflags="-I$withval/include"
3830     with_libtokyotyrant_ldflags="-L$withval/include"
3831     with_libtokyotyrant_libs="-ltokyotyrant"
3832     with_libtokyotyrant="yes"
3833   fi; fi
3834 ],
3835 [
3836   with_libtokyotyrant="yes"
3837 ])
3838
3839 if test "x$with_libtokyotyrant" = "xyes"
3840 then
3841   if $PKG_CONFIG --exists tokyotyrant
3842   then
3843     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
3844     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `pkg-config --libs-only-L tokyotyrant`"
3845     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `pkg-config --libs-only-l tokyotyrant`"
3846   fi
3847 fi
3848
3849 SAVE_CPPFLAGS="$CPPFLAGS"
3850 SAVE_LDFLAGS="$LDFLAGS"
3851 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
3852 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
3853
3854 if test "x$with_libtokyotyrant" = "xyes"
3855 then
3856   AC_CHECK_HEADERS(tcrdb.h,
3857   [
3858           AC_DEFINE(HAVE_TCRDB_H, 1,
3859                     [Define to 1 if you have the <tcrdb.h> header file.])
3860   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
3861 fi
3862
3863 if test "x$with_libtokyotyrant" = "xyes"
3864 then
3865   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
3866   [
3867           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
3868                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
3869   ],
3870   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
3871   [$with_libtokyotyrant_libs])
3872 fi
3873
3874 CPPFLAGS="$SAVE_CPPFLAGS"
3875 LDFLAGS="$SAVE_LDFLAGS"
3876
3877 if test "x$with_libtokyotyrant" = "xyes"
3878 then 
3879   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
3880   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
3881   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
3882   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
3883   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
3884   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
3885 fi
3886 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
3887 # }}}
3888
3889 # --with-libupsclient {{{
3890 with_libupsclient_config=""
3891 with_libupsclient_cflags=""
3892 with_libupsclient_libs=""
3893 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
3894 [
3895         if test "x$withval" = "xno"
3896         then
3897                 with_libupsclient="no"
3898         else if test "x$withval" = "xyes"
3899         then
3900                 with_libupsclient="use_pkgconfig"
3901         else
3902                 if test -x "$withval"
3903                 then
3904                         with_libupsclient_config="$withval"
3905                         with_libupsclient="use_libupsclient_config"
3906                 else if test -x "$withval/bin/libupsclient-config"
3907                 then
3908                         with_libupsclient_config="$withval/bin/libupsclient-config"
3909                         with_libupsclient="use_libupsclient_config"
3910                 else
3911                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
3912                         with_libupsclient_cflags="-I$withval/include"
3913                         with_libupsclient_libs="-L$withval/lib -lupsclient"
3914                         with_libupsclient="yes"
3915                 fi; fi
3916         fi; fi
3917 ],
3918 [with_libupsclient="use_pkgconfig"])
3919
3920 # configure using libupsclient-config
3921 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3922 then
3923         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
3924         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
3925         if test $? -ne 0
3926         then
3927                 with_libupsclient="no ($with_libupsclient_config failed)"
3928         fi
3929         with_libupsclient_libs="`$with_libupsclient_config --libs`"
3930         if test $? -ne 0
3931         then
3932                 with_libupsclient="no ($with_libupsclient_config failed)"
3933         fi
3934 fi
3935 if test "x$with_libupsclient" = "xuse_libupsclient_config"
3936 then
3937         with_libupsclient="yes"
3938 fi
3939
3940 # configure using pkg-config
3941 if test "x$with_libupsclient" = "xuse_pkgconfig"
3942 then
3943         if test "x$PKG_CONFIG" = "x"
3944         then
3945                 with_libupsclient="no (Don't have pkg-config)"
3946         fi
3947 fi
3948 if test "x$with_libupsclient" = "xuse_pkgconfig"
3949 then
3950         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
3951         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
3952         if test $? -ne 0
3953         then
3954                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
3955         fi
3956 fi
3957 if test "x$with_libupsclient" = "xuse_pkgconfig"
3958 then
3959         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
3960         if test $? -ne 0
3961         then
3962                 with_libupsclient="no ($PKG_CONFIG failed)"
3963         fi
3964         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
3965         if test $? -ne 0
3966         then
3967                 with_libupsclient="no ($PKG_CONFIG failed)"
3968         fi
3969 fi
3970 if test "x$with_libupsclient" = "xuse_pkgconfig"
3971 then
3972         with_libupsclient="yes"
3973 fi
3974
3975 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
3976 # the actual checks.
3977 if test "x$with_libupsclient" = "xyes"
3978 then
3979         SAVE_CPPFLAGS="$CPPFLAGS"
3980         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3981
3982         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
3983
3984         CPPFLAGS="$SAVE_CPPFLAGS"
3985 fi
3986 if test "x$with_libupsclient" = "xyes"
3987 then
3988         SAVE_CPPFLAGS="$CPPFLAGS"
3989         SAVE_LDFLAGS="$LDFLAGS"
3990
3991         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
3992         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
3993
3994         AC_CHECK_LIB(upsclient, upscli_connect,
3995                      [with_libupsclient="yes"],
3996                      [with_libupsclient="no (symbol upscli_connect not found)"])
3997
3998         CPPFLAGS="$SAVE_CPPFLAGS"
3999         LDFLAGS="$SAVE_LDFLAGS"
4000 fi
4001 if test "x$with_libupsclient" = "xyes"
4002 then
4003         SAVE_CPPFLAGS="$CPPFLAGS"
4004         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4005
4006         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4007 [#include <stdlib.h>
4008 #include <stdio.h>
4009 #include <upsclient.h>])
4010
4011         CPPFLAGS="$SAVE_CPPFLAGS"
4012 fi
4013 if test "x$with_libupsclient" = "xyes"
4014 then
4015         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4016         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4017         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4018         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4019 fi
4020 # }}}
4021
4022 # --with-libxmms {{{
4023 with_xmms_config="xmms-config"
4024 with_xmms_cflags=""
4025 with_xmms_libs=""
4026 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4027 [
4028         if test "x$withval" != "xno" \
4029                 && test "x$withval" != "xyes"
4030         then
4031                 if test -f "$withval" && test -x "$withval";
4032                 then
4033                         with_xmms_config="$withval"
4034                 else if test -x "$withval/bin/xmms-config"
4035                 then
4036                         with_xmms_config="$withval/bin/xmms-config"
4037                 fi; fi
4038                 with_libxmms="yes"
4039         else if test "x$withval" = "xno"
4040         then
4041                 with_libxmms="no"
4042         else
4043                 with_libxmms="yes"
4044         fi; fi
4045 ],
4046 [
4047         with_libxmms="yes"
4048 ])
4049 if test "x$with_libxmms" = "xyes"
4050 then
4051         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4052         xmms_config_status=$?
4053
4054         if test $xmms_config_status -ne 0
4055         then
4056                 with_libxmms="no"
4057         fi
4058 fi
4059 if test "x$with_libxmms" = "xyes"
4060 then
4061         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4062         xmms_config_status=$?
4063
4064         if test $xmms_config_status -ne 0
4065         then
4066                 with_libxmms="no"
4067         fi
4068 fi
4069 if test "x$with_libxmms" = "xyes"
4070 then
4071         AC_CHECK_LIB(xmms, xmms_remote_get_info,
4072         [
4073                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4074                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4075                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4076                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4077         ],
4078         [
4079                 with_libxmms="no"
4080         ],
4081         [$with_xmms_libs])
4082 fi
4083 with_libxmms_numeric=0
4084 if test "x$with_libxmms" = "xyes"
4085 then
4086         with_libxmms_numeric=1
4087 fi
4088 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4089 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4090 # }}}
4091
4092 # --with-libyajl {{{
4093 with_libyajl_cppflags=""
4094 with_libyajl_ldflags=""
4095 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4096 [
4097         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4098         then
4099                 with_libyajl_cppflags="-I$withval/include"
4100                 with_libyajl_ldflags="-L$withval/lib"
4101                 with_libyajl="yes"
4102         else
4103                 with_libyajl="$withval"
4104         fi
4105 ],
4106 [
4107         with_libyajl="yes"
4108 ])
4109 if test "x$with_libyajl" = "xyes"
4110 then
4111         SAVE_CPPFLAGS="$CPPFLAGS"
4112         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4113
4114         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
4115         AC_CHECK_HEADERS(yajl/yajl_version.h)
4116
4117         CPPFLAGS="$SAVE_CPPFLAGS"
4118 fi
4119 if test "x$with_libyajl" = "xyes"
4120 then
4121         SAVE_CPPFLAGS="$CPPFLAGS"
4122         SAVE_LDFLAGS="$LDFLAGS"
4123         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4124         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4125
4126         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4127
4128         CPPFLAGS="$SAVE_CPPFLAGS"
4129         LDFLAGS="$SAVE_LDFLAGS"
4130 fi
4131 if test "x$with_libyajl" = "xyes"
4132 then
4133         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4134         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4135         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4136         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4137         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4138         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4139         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4140 fi
4141 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4142 # }}}
4143
4144 # --with-mic {{{
4145 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
4146 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
4147 with_mic_libs=""
4148 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
4149 [
4150         if test "x$withval" = "xno"
4151         then
4152                 with_mic="no"
4153         else if test "x$withval" = "xyes"
4154         then
4155                 with_mic="yes"
4156         else if test -d "$with_mic/lib"
4157         then
4158                 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
4159                 with_mic_cflags="-I$withval/include"
4160                 with_mic_ldpath="-L$withval/lib/Linux"
4161                 with_mic_libs="-lMicAccessSDK -lscif -lpthread"
4162                 with_mic="yes"
4163         fi; fi; fi
4164 ],
4165 [with_mic="yes"])
4166 if test "x$with_mic" = "xyes"
4167 then
4168         SAVE_CPPFLAGS="$CPPFLAGS"
4169         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4170         AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
4171         CPPFLAGS="$SAVE_CPPFLAGS"
4172 fi
4173 if test "x$with_mic" = "xyes"
4174 then
4175         SAVE_CPPFLAGS="$CPPFLAGS"
4176         SAVE_LDFLAGS="$LDFLAGS"
4177
4178         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4179         LDFLAGS="$LDFLAGS $with_mic_ldpath"
4180
4181         AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
4182                         [with_mic_ldpath="$with_mic_ldpath"
4183                         with_mic_libs="-lMicAccessSDK -lscif -lpthread"],
4184                         [with_mic="no (symbol MicInitAPI not found)"],[-lscif -lpthread])
4185
4186         CPPFLAGS="$SAVE_CPPFLAGS"
4187         LDFLAGS="$SAVE_LDFLAGS"
4188 fi
4189
4190 if test "x$with_mic" = "xyes"
4191 then
4192         BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
4193         BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
4194         BUILD_WITH_MIC_LDADD="$with_mic_libs"
4195         AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
4196         AC_SUBST(BUILD_WITH_MIC_LIBPATH)
4197         AC_SUBST(BUILD_WITH_MIC_LDADD)
4198 fi
4199 #}}}
4200
4201 # --with-libvarnish {{{
4202 with_libvarnish_cppflags=""
4203 with_libvarnish_cflags=""
4204 with_libvarnish_libs=""
4205 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
4206 [
4207         if test "x$withval" = "xno"
4208         then
4209                 with_libvarnish="no"
4210         else if test "x$withval" = "xyes"
4211         then
4212                 with_libvarnish="use_pkgconfig"
4213         else if test -d "$with_libvarnish/lib"
4214         then
4215                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
4216                 with_libvarnish_cflags="-I$withval/include"
4217                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
4218                 with_libvarnish="yes"
4219         fi; fi; fi
4220 ],
4221 [with_libvarnish="use_pkgconfig"])
4222
4223 # configure using pkg-config
4224 if test "x$with_libvarnish" = "xuse_pkgconfig"
4225 then
4226         if test "x$PKG_CONFIG" = "x"
4227         then
4228                 with_libvarnish="no (Don't have pkg-config)"
4229         fi
4230 fi
4231 if test "x$with_libvarnish" = "xuse_pkgconfig"
4232 then
4233         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
4234         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
4235         if test $? -ne 0
4236         then
4237                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
4238         fi
4239 fi
4240 if test "x$with_libvarnish" = "xuse_pkgconfig"
4241 then
4242         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
4243         if test $? -ne 0
4244         then
4245                 with_libvarnish="no ($PKG_CONFIG failed)"
4246         fi
4247         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
4248         if test $? -ne 0
4249         then
4250                 with_libvarnish="no ($PKG_CONFIG failed)"
4251         fi
4252 fi
4253 if test "x$with_libvarnish" = "xuse_pkgconfig"
4254 then
4255         with_libvarnish="yes"
4256 fi
4257
4258 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
4259 # the actual checks.
4260 if test "x$with_libvarnish" = "xyes"
4261 then
4262         SAVE_CPPFLAGS="$CPPFLAGS"
4263         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4264         AC_CHECK_HEADERS(varnish/varnishapi.h, [], [with_libvarnish="no (varnish/varnishapi.h not found)"])
4265
4266         CPPFLAGS="$SAVE_CPPFLAGS"
4267 fi
4268 if test "x$with_libvarnish" = "xyes"
4269 then
4270         SAVE_CPPFLAGS="$CPPFLAGS"
4271         #SAVE_LDFLAGS="$LDFLAGS"
4272
4273         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4274         #LDFLAGS="$LDFLAGS $with_libvarnish_libs"
4275
4276     AC_CHECK_HEADERS(varnish/vsc.h,
4277         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
4278         [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])])
4279
4280         CPPFLAGS="$SAVE_CPPFLAGS"
4281         #LDFLAGS="$SAVE_LDFLAGS"
4282 fi
4283 if test "x$with_libvarnish" = "xyes"
4284 then
4285         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
4286         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
4287         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
4288         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
4289 fi
4290 # }}}
4291
4292 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
4293 with_libxml2="no (pkg-config isn't available)"
4294 with_libxml2_cflags=""
4295 with_libxml2_ldflags=""
4296 with_libvirt="no (pkg-config isn't available)"
4297 with_libvirt_cflags=""
4298 with_libvirt_ldflags=""
4299 if test "x$PKG_CONFIG" != "x"
4300 then
4301         pkg-config --exists 'libxml-2.0' 2>/dev/null
4302         if test "$?" = "0"
4303         then
4304                 with_libxml2="yes"
4305         else
4306                 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
4307         fi
4308
4309         pkg-config --exists libvirt 2>/dev/null
4310         if test "$?" = "0"
4311         then
4312                 with_libvirt="yes"
4313         else
4314                 with_libvirt="no (pkg-config doesn't know libvirt)"
4315         fi
4316 fi
4317 if test "x$with_libxml2" = "xyes"
4318 then
4319         with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
4320         if test $? -ne 0
4321         then
4322                 with_libxml2="no"
4323         fi
4324         with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
4325         if test $? -ne 0
4326         then
4327                 with_libxml2="no"
4328         fi
4329 fi
4330 if test "x$with_libxml2" = "xyes"
4331 then
4332         SAVE_CPPFLAGS="$CPPFLAGS"
4333         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
4334
4335         AC_CHECK_HEADERS(libxml/parser.h, [],
4336                       [with_libxml2="no (libxml/parser.h not found)"])
4337
4338         CPPFLAGS="$SAVE_CPPFLAGS"
4339 fi
4340 if test "x$with_libxml2" = "xyes"
4341 then
4342         SAVE_CFLAGS="$CFLAGS"
4343         SAVE_LDFLAGS="$LDFLAGS"
4344
4345         CFLAGS="$CFLAGS $with_libxml2_cflags"
4346         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
4347
4348         AC_CHECK_LIB(xml2, xmlXPathEval,
4349                      [with_libxml2="yes"],
4350                      [with_libxml2="no (symbol xmlXPathEval not found)"])
4351
4352         CFLAGS="$SAVE_CFLAGS"
4353         LDFLAGS="$SAVE_LDFLAGS"
4354 fi
4355 dnl Add the right compiler flags and libraries.
4356 if test "x$with_libxml2" = "xyes"; then
4357         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
4358         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
4359         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
4360         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
4361 fi
4362 if test "x$with_libvirt" = "xyes"
4363 then
4364         with_libvirt_cflags="`pkg-config --cflags libvirt`"
4365         if test $? -ne 0
4366         then
4367                 with_libvirt="no"
4368         fi
4369         with_libvirt_ldflags="`pkg-config --libs libvirt`"
4370         if test $? -ne 0
4371         then
4372                 with_libvirt="no"
4373         fi
4374 fi
4375 if test "x$with_libvirt" = "xyes"
4376 then
4377         SAVE_CPPFLAGS="$CPPFLAGS"
4378         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
4379
4380         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
4381                       [with_libvirt="no (libvirt/libvirt.h not found)"])
4382
4383         CPPFLAGS="$SAVE_CPPFLAGS"
4384 fi
4385 if test "x$with_libvirt" = "xyes"
4386 then
4387         SAVE_CFLAGS="$CFLAGS"
4388         SAVE_LDFLAGS="$LDFLAGS"
4389
4390         CFLAGS="$CFLAGS $with_libvirt_cflags"
4391         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
4392
4393         AC_CHECK_LIB(virt, virDomainBlockStats,
4394                      [with_libvirt="yes"],
4395                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
4396
4397         CFLAGS="$SAVE_CFLAGS"
4398         LDFLAGS="$SAVE_LDFLAGS"
4399 fi
4400 dnl Add the right compiler flags and libraries.
4401 if test "x$with_libvirt" = "xyes"; then
4402         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
4403         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
4404         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
4405         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
4406 fi
4407 # }}}
4408
4409 # $PKG_CONFIG --exists OpenIPMIpthread {{{
4410 with_libopenipmipthread="yes"
4411 with_libopenipmipthread_cflags=""
4412 with_libopenipmipthread_libs=""
4413
4414 AC_MSG_CHECKING([for pkg-config])
4415 temp_result="no"
4416 if test "x$PKG_CONFIG" = "x"
4417 then
4418         with_libopenipmipthread="no"
4419         temp_result="no"
4420 else
4421         temp_result="$PKG_CONFIG"
4422 fi
4423 AC_MSG_RESULT([$temp_result])
4424
4425 if test "x$with_libopenipmipthread" = "xyes"
4426 then
4427         AC_MSG_CHECKING([for libOpenIPMIpthread])
4428         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
4429         if test "$?" != "0"
4430         then
4431                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
4432         fi
4433         AC_MSG_RESULT([$with_libopenipmipthread])
4434 fi
4435
4436 if test "x$with_libopenipmipthread" = "xyes"
4437 then
4438         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
4439         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
4440         if test "$?" = "0"
4441         then
4442                 with_libopenipmipthread_cflags="$temp_result"
4443         else
4444                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
4445                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
4446         fi
4447         AC_MSG_RESULT([$temp_result])
4448 fi
4449
4450 if test "x$with_libopenipmipthread" = "xyes"
4451 then
4452         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
4453         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
4454         if test "$?" = "0"
4455         then
4456                 with_libopenipmipthread_ldflags="$temp_result"
4457         else
4458                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
4459                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
4460         fi
4461         AC_MSG_RESULT([$temp_result])
4462 fi
4463
4464 if test "x$with_libopenipmipthread" = "xyes"
4465 then
4466         SAVE_CPPFLAGS="$CPPFLAGS"
4467         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
4468
4469         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
4470                          [with_libopenipmipthread="yes"],
4471                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
4472 [#include <OpenIPMI/ipmiif.h>
4473 #include <OpenIPMI/ipmi_err.h>
4474 #include <OpenIPMI/ipmi_posix.h>
4475 #include <OpenIPMI/ipmi_conn.h>
4476 ])
4477
4478         CPPFLAGS="$SAVE_CPPFLAGS"
4479 fi
4480
4481 if test "x$with_libopenipmipthread" = "xyes"
4482 then
4483         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
4484         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
4485         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
4486         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
4487 fi
4488 # }}}
4489
4490 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
4491                 [with_libnotify="yes"],
4492                 [if test "x$LIBNOTIFY_PKG_ERRORS" = "x"; then
4493                          with_libnotify="no"
4494                  else
4495                          with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"
4496                  fi])
4497
4498 # Check for enabled/disabled features
4499 #
4500
4501 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
4502 # ------------------------------------------------------------
4503 dnl
4504 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
4505 dnl
4506 AC_DEFUN(
4507         [AC_COLLECTD],
4508         [
4509         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
4510         m4_if(
4511                 [$2],
4512                 [enable],
4513                 [dnl
4514                 m4_define([EnDis],[disabled])dnl
4515                 m4_define([YesNo],[no])dnl
4516                 ],dnl
4517                 [m4_if(
4518                         [$2],
4519                         [disable],
4520                         [dnl
4521                         m4_define([EnDis],[enabled])dnl
4522                         m4_define([YesNo],[yes])dnl
4523                         ],
4524                         [dnl
4525                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
4526                         ]dnl
4527                 )]dnl
4528         )dnl
4529         m4_if([$3], [feature], [],
4530                 [m4_if(
4531                         [$3], [module], [],
4532                         [dnl
4533                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
4534                         ]dnl
4535                 )]dnl
4536         )dnl
4537         AC_ARG_ENABLE(
4538                 [$1],
4539                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
4540                 [],
4541                 enable_$1='[YesNo]'dnl
4542         )# AC_ARG_ENABLE
4543 if test "x$enable_$1" = "xno"
4544 then
4545         collectd_$1=0
4546 else
4547         if test "x$enable_$1" = "xyes"
4548         then
4549                 collectd_$1=1
4550         else
4551                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
4552                 collectd_$1=1
4553                 enable_$1='yes'
4554         fi
4555 fi
4556         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
4557         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
4558         ]dnl
4559 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4560
4561 # AC_PLUGIN(name, default, info)
4562 # ------------------------------------------------------------
4563 dnl
4564 AC_DEFUN(
4565   [AC_PLUGIN],
4566   [
4567     enable_plugin="no"
4568     force="no"
4569     AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
4570     [
4571      if test "x$enableval" = "xyes"
4572      then
4573              enable_plugin="yes"
4574      else if test "x$enableval" = "xforce"
4575      then
4576              enable_plugin="yes"
4577              force="yes"
4578      else
4579              enable_plugin="no (disabled on command line)"
4580      fi; fi
4581     ],
4582     [
4583          if test "x$enable_all_plugins" = "xauto"
4584          then
4585              if test "x$2" = "xyes"
4586              then
4587                      enable_plugin="yes"
4588              else
4589                      enable_plugin="no"
4590              fi
4591          else
4592              enable_plugin="$enable_all_plugins"
4593          fi
4594     ])
4595     if test "x$enable_plugin" = "xyes"
4596     then
4597             if test "x$2" = "xyes" || test "x$force" = "xyes"
4598             then
4599                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
4600                     if test "x$2" != "xyes"
4601                     then
4602                             dependency_warning="yes"
4603                     fi
4604             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
4605                     dependency_error="yes"
4606                     enable_plugin="no (dependency error)"
4607             fi
4608     fi
4609     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
4610     enable_$1="$enable_plugin"
4611   ]
4612 )# AC_PLUGIN(name, default, info)
4613
4614 m4_divert_once([HELP_ENABLE], [
4615 collectd features:])
4616 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
4617 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
4618 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
4619 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
4620
4621 dependency_warning="no"
4622 dependency_error="no"
4623
4624 plugin_ascent="no"
4625 plugin_battery="no"
4626 plugin_bind="no"
4627 plugin_cgroups="no"
4628 plugin_conntrack="no"
4629 plugin_contextswitch="no"
4630 plugin_cpu="no"
4631 plugin_cpufreq="no"
4632 plugin_curl_json="no"
4633 plugin_curl_xml="no"
4634 plugin_df="no"
4635 plugin_disk="no"
4636 plugin_entropy="no"
4637 plugin_ethstat="no"
4638 plugin_fscache="no"
4639 plugin_interface="no"
4640 plugin_ipmi="no"
4641 plugin_ipvs="no"
4642 plugin_irq="no"
4643 plugin_libvirt="no"
4644 plugin_load="no"
4645 plugin_memory="no"
4646 plugin_multimeter="no"
4647 plugin_nfs="no"
4648 plugin_numa="no"
4649 plugin_perl="no"
4650 plugin_processes="no"
4651 plugin_protocols="no"
4652 plugin_serial="no"
4653 plugin_swap="no"
4654 plugin_tape="no"
4655 plugin_tcpconns="no"
4656 plugin_ted="no"
4657 plugin_thermal="no"
4658 plugin_users="no"
4659 plugin_uptime="no"
4660 plugin_vmem="no"
4661 plugin_vserver="no"
4662 plugin_wireless="no"
4663 plugin_zfs_arc="no"
4664
4665 # Linux
4666 if test "x$ac_system" = "xLinux"
4667 then
4668         plugin_battery="yes"
4669         plugin_conntrack="yes"
4670         plugin_contextswitch="yes"
4671         plugin_cgroups="yes"
4672         plugin_cpu="yes"
4673         plugin_cpufreq="yes"
4674         plugin_disk="yes"
4675         plugin_entropy="yes"
4676         plugin_fscache="yes"
4677         plugin_interface="yes"
4678         plugin_irq="yes"
4679         plugin_load="yes"
4680         plugin_lvm="yes"
4681         plugin_memory="yes"
4682         plugin_nfs="yes"
4683         plugin_numa="yes"
4684         plugin_processes="yes"
4685         plugin_protocols="yes"
4686         plugin_serial="yes"
4687         plugin_swap="yes"
4688         plugin_tcpconns="yes"
4689         plugin_thermal="yes"
4690         plugin_uptime="yes"
4691         plugin_vmem="yes"
4692         plugin_vserver="yes"
4693         plugin_wireless="yes"
4694
4695         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
4696         then
4697                 plugin_ipvs="yes"
4698         fi
4699 fi
4700
4701 if test "x$ac_system" = "xOpenBSD"
4702 then
4703         plugin_tcpconns="yes"
4704 fi
4705
4706 # Mac OS X devices
4707 if test "x$with_libiokit" = "xyes"
4708 then
4709         plugin_battery="yes"
4710         plugin_disk="yes"
4711 fi
4712
4713 # AIX
4714
4715 if test "x$ac_system" = "xAIX"
4716 then
4717         plugin_tcpconns="yes"
4718 fi
4719
4720 # FreeBSD
4721
4722 if test "x$ac_system" = "xFreeBSD"
4723 then
4724         plugin_zfs_arc="yes"
4725 fi
4726
4727
4728 if test "x$with_perfstat" = "xyes"
4729 then
4730         plugin_cpu="yes"
4731         plugin_contextswitch="yes"
4732         plugin_disk="yes"
4733         plugin_memory="yes"
4734         plugin_swap="yes"
4735         plugin_interface="yes"
4736         plugin_load="yes"
4737         plugin_uptime="yes"
4738 fi
4739
4740 if test "x$with_procinfo" = "xyes"
4741 then
4742         plugin_processes="yes"
4743 fi
4744
4745 # Solaris
4746 if test "x$with_kstat" = "xyes"
4747 then
4748         plugin_nfs="yes"
4749         plugin_uptime="yes"
4750         plugin_zfs_arc="yes"
4751 fi
4752
4753 if test "x$with_devinfo$with_kstat" = "xyesyes"
4754 then
4755         plugin_cpu="yes"
4756         plugin_disk="yes"
4757         plugin_interface="yes"
4758         plugin_memory="yes"
4759         plugin_tape="yes"
4760 fi
4761
4762 # libstatgrab
4763 if test "x$with_libstatgrab" = "xyes"
4764 then
4765         plugin_cpu="yes"
4766         plugin_disk="yes"
4767         plugin_interface="yes"
4768         plugin_load="yes"
4769         plugin_memory="yes"
4770         plugin_swap="yes"
4771         plugin_users="yes"
4772 fi
4773
4774 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4775 then
4776         plugin_ascent="yes"
4777         if test "x$have_strptime" = "xyes"
4778         then
4779                 plugin_bind="yes"
4780         fi
4781 fi
4782
4783 if test "x$with_libopenipmipthread" = "xyes"
4784 then
4785         plugin_ipmi="yes"
4786 fi
4787
4788 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
4789 then
4790         plugin_curl_json="yes"
4791 fi
4792
4793 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4794 then
4795         plugin_curl_xml="yes"
4796 fi
4797
4798 if test "x$have_processor_info" = "xyes"
4799 then
4800         plugin_cpu="yes"
4801 fi
4802 if test "x$have_sysctl" = "xyes"
4803 then
4804         plugin_cpu="yes"
4805         plugin_memory="yes"
4806         plugin_uptime="yes"
4807         if test "x$ac_system" = "xDarwin"
4808         then
4809                 plugin_swap="yes"
4810         fi
4811 fi
4812 if test "x$have_sysctlbyname" = "xyes"
4813 then
4814         plugin_contextswitch="yes"
4815         plugin_cpu="yes"
4816         plugin_memory="yes"
4817         plugin_tcpconns="yes"
4818 fi
4819
4820 # Df plugin: Check if we know how to determine mount points first.
4821 #if test "x$have_listmntent" = "xyes"; then
4822 #       plugin_df="yes"
4823 #fi
4824 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
4825 then
4826         plugin_df="yes"
4827 fi
4828 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
4829 then
4830         plugin_df="yes"
4831 fi
4832 #if test "x$have_getmntent" = "xseq"
4833 #then
4834 #       plugin_df="yes"
4835 #fi
4836 if test "x$c_cv_have_one_getmntent" = "xyes"
4837 then
4838         plugin_df="yes"
4839 fi
4840
4841 # Df plugin: Check if we have either `statfs' or `statvfs' second.
4842 if test "x$plugin_df" = "xyes"
4843 then
4844         plugin_df="no"
4845         if test "x$have_statfs" = "xyes"
4846         then
4847                 plugin_df="yes"
4848         fi
4849         if test "x$have_statvfs" = "xyes"
4850         then
4851                 plugin_df="yes"
4852         fi
4853 fi
4854
4855 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
4856 then
4857         plugin_ethstat="yes"
4858 fi
4859
4860 if test "x$have_getifaddrs" = "xyes"
4861 then
4862         plugin_interface="yes"
4863 fi
4864
4865 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
4866 then
4867         plugin_libvirt="yes"
4868 fi
4869
4870 if test "x$have_getloadavg" = "xyes"
4871 then
4872         plugin_load="yes"
4873 fi
4874
4875 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
4876 then
4877         plugin_perl="yes"
4878 fi
4879
4880 # Mac OS X memory interface
4881 if test "x$have_host_statistics" = "xyes"
4882 then
4883         plugin_memory="yes"
4884 fi
4885
4886 if test "x$have_termios_h" = "xyes"
4887 then
4888         plugin_multimeter="yes"
4889         plugin_ted="yes"
4890 fi
4891
4892 if test "x$have_thread_info" = "xyes"
4893 then
4894         plugin_processes="yes"
4895 fi
4896
4897 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
4898 then
4899         plugin_processes="yes"
4900 fi
4901
4902 if test "x$with_kvm_getswapinfo" = "xyes"
4903 then
4904         plugin_swap="yes"
4905 fi
4906
4907 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
4908 then
4909         plugin_swap="yes"
4910 fi
4911
4912 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
4913 then
4914         plugin_tcpconns="yes"
4915 fi
4916
4917 if test "x$have_getutent" = "xyes"
4918 then
4919         plugin_users="yes"
4920 fi
4921 if test "x$have_getutxent" = "xyes"
4922 then
4923         plugin_users="yes"
4924 fi
4925
4926 m4_divert_once([HELP_ENABLE], [
4927 collectd plugins:])
4928
4929 AC_ARG_ENABLE([all-plugins],
4930                 AC_HELP_STRING([--enable-all-plugins],
4931                                 [enable all plugins (auto by def)]),
4932                 [
4933                  if test "x$enableval" = "xyes"
4934                  then
4935                          enable_all_plugins="yes"
4936                  else if test "x$enableval" = "xauto"
4937                  then
4938                          enable_all_plugins="auto"
4939                  else
4940                          enable_all_plugins="no"
4941                  fi; fi
4942                 ],
4943                 [enable_all_plugins="auto"])
4944
4945 m4_divert_once([HELP_ENABLE], [])
4946
4947 AC_PLUGIN([aggregation], [yes],                [Aggregation plugin])
4948 AC_PLUGIN([amqp],        [$with_librabbitmq],  [AMQP output plugin])
4949 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
4950 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
4951 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
4952 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
4953 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
4954 AC_PLUGIN([bind],        [$plugin_bind],       [ISC Bind nameserver statistics])
4955 AC_PLUGIN([conntrack],   [$plugin_conntrack],  [nf_conntrack statistics])
4956 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
4957 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
4958 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
4959 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
4960 AC_PLUGIN([curl],        [$with_libcurl],      [CURL generic web statistics])
4961 AC_PLUGIN([curl_json],   [$plugin_curl_json],    [CouchDB statistics])
4962 AC_PLUGIN([curl_xml],   [$plugin_curl_xml],    [CURL generic xml statistics])
4963 AC_PLUGIN([cgroups],     [$plugin_cgroups],    [CGroups CPU usage accounting])
4964 AC_PLUGIN([dbi],         [$with_libdbi],       [General database statistics])
4965 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
4966 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
4967 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
4968 AC_PLUGIN([email],       [yes],                [EMail statistics])
4969 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
4970 AC_PLUGIN([ethstat],     [$plugin_ethstat],    [Stats from NIC driver])
4971 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
4972 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
4973 AC_PLUGIN([fscache],     [$plugin_fscache],    [fscache statistics])
4974 AC_PLUGIN([gmond],       [$with_libganglia],   [Ganglia plugin])
4975 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
4976 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
4977 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
4978 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
4979 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
4980 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
4981 AC_PLUGIN([java],        [$with_java],         [Embed the Java Virtual Machine])
4982 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
4983 AC_PLUGIN([load],        [$plugin_load],       [System load])
4984 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
4985 AC_PLUGIN([lpar],        [$with_perfstat],     [AIX logical partitions statistics])
4986 AC_PLUGIN([lvm],         [$with_liblvm2app],   [LVM statistics])
4987 AC_PLUGIN([madwifi],     [$have_linux_wireless_h], [Madwifi wireless statistics])
4988 AC_PLUGIN([match_empty_counter], [yes],        [The empty counter match])
4989 AC_PLUGIN([match_hashed], [yes],               [The hashed match])
4990 AC_PLUGIN([match_regex], [yes],                [The regex match])
4991 AC_PLUGIN([match_timediff], [yes],             [The timediff match])
4992 AC_PLUGIN([match_value], [yes],                [The value match])
4993 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
4994 AC_PLUGIN([md],          [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
4995 AC_PLUGIN([memcachec],   [$with_libmemcached], [memcachec statistics])
4996 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
4997 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
4998 AC_PLUGIN([mic],         [$with_mic],          [Intel Many Integrated Core stats])
4999 AC_PLUGIN([modbus],      [$with_libmodbus],    [Modbus plugin])
5000 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
5001 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
5002 AC_PLUGIN([netapp],      [$with_libnetapp],    [NetApp plugin])
5003 AC_PLUGIN([netlink],     [$with_libmnl],       [Enhanced Linux network statistics])
5004 AC_PLUGIN([network],     [yes],                [Network communication plugin])
5005 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
5006 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
5007 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
5008 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
5009 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
5010 AC_PLUGIN([numa],        [$plugin_numa],       [NUMA virtual memory statistics])
5011 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
5012 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
5013 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
5014 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
5015 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
5016 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
5017 AC_PLUGIN([pf],          [$have_net_pfvar_h],  [BSD packet filter (PF) statistics])
5018 # FIXME: Check for libevent, too.
5019 AC_PLUGIN([pinba],       [$have_protoc_c],     [Pinba statistics])
5020 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
5021 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
5022 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
5023 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
5024 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
5025 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
5026 AC_PLUGIN([redis],       [$with_libcredis],    [Redis plugin])
5027 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
5028 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
5029 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
5030 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
5031 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
5032 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
5033 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
5034 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
5035 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
5036 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
5037 AC_PLUGIN([tail_csv],    [yes],                [Parsing of CSV files])
5038 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
5039 AC_PLUGIN([target_notification], [yes],        [The notification target])
5040 AC_PLUGIN([target_replace], [yes],             [The replace target])
5041 AC_PLUGIN([target_scale],[yes],                [The scale target])
5042 AC_PLUGIN([target_set],  [yes],                [The set target])
5043 AC_PLUGIN([target_v5upgrade], [yes],           [The v5upgrade target])
5044 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
5045 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
5046 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
5047 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
5048 AC_PLUGIN([threshold],   [yes],                [Threshold checking plugin])
5049 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
5050 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
5051 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
5052 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
5053 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
5054 AC_PLUGIN([varnish],     [$with_libvarnish],   [Varnish cache statistics])
5055 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
5056 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
5057 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
5058 AC_PLUGIN([write_graphite], [yes],             [Graphite / Carbon output plugin])
5059 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
5060 AC_PLUGIN([write_mongodb], [$with_libmongoc],  [MongoDB output plugin])
5061 AC_PLUGIN([write_redis], [$with_libcredis],    [Redis output plugin])
5062 AC_PLUGIN([write_riemann], [$have_protoc_c],   [Riemann output plugin])
5063 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
5064 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
5065
5066 dnl Default configuration file
5067 # Load either syslog or logfile
5068 LOAD_PLUGIN_SYSLOG=""
5069 LOAD_PLUGIN_LOGFILE=""
5070
5071 AC_MSG_CHECKING([which default log plugin to load])
5072 default_log_plugin="none"
5073 if test "x$enable_syslog" = "xyes"
5074 then
5075         default_log_plugin="syslog"
5076 else
5077         LOAD_PLUGIN_SYSLOG="##"
5078 fi
5079
5080 if test "x$enable_logfile" = "xyes"
5081 then
5082         if test "x$default_log_plugin" = "xnone"
5083         then
5084                 default_log_plugin="logfile"
5085         else
5086                 LOAD_PLUGIN_LOGFILE="#"
5087         fi
5088 else
5089         LOAD_PLUGIN_LOGFILE="##"
5090 fi
5091 AC_MSG_RESULT([$default_log_plugin])
5092
5093 AC_SUBST(LOAD_PLUGIN_SYSLOG)
5094 AC_SUBST(LOAD_PLUGIN_LOGFILE)
5095
5096 DEFAULT_LOG_LEVEL="info"
5097 if test "x$enable_debug" = "xyes"
5098 then
5099         DEFAULT_LOG_LEVEL="debug"
5100 fi
5101 AC_SUBST(DEFAULT_LOG_LEVEL)
5102
5103 # Load only one of rrdtool, network, csv in the default config.
5104 LOAD_PLUGIN_RRDTOOL=""
5105 LOAD_PLUGIN_NETWORK=""
5106 LOAD_PLUGIN_CSV=""
5107
5108 AC_MSG_CHECKING([which default write plugin to load])
5109 default_write_plugin="none"
5110 if test "x$enable_rrdtool" = "xyes"
5111 then
5112         default_write_plugin="rrdtool"
5113 else
5114         LOAD_PLUGIN_RRDTOOL="##"
5115 fi
5116
5117 if test "x$enable_network" = "xyes"
5118 then
5119         if test "x$default_write_plugin" = "xnone"
5120         then
5121                 default_write_plugin="network"
5122         else
5123                 LOAD_PLUGIN_NETWORK="#"
5124         fi
5125 else
5126         LOAD_PLUGIN_NETWORK="##"
5127 fi
5128
5129 if test "x$enable_csv" = "xyes"
5130 then
5131         if test "x$default_write_plugin" = "xnone"
5132         then
5133                 default_write_plugin="csv"
5134         else
5135                 LOAD_PLUGIN_CSV="#"
5136         fi
5137 else
5138         LOAD_PLUGIN_CSV="##"
5139 fi
5140 AC_MSG_RESULT([$default_write_plugin])
5141
5142 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5143 AC_SUBST(LOAD_PLUGIN_NETWORK)
5144 AC_SUBST(LOAD_PLUGIN_CSV)
5145
5146 dnl ip_vs.h
5147 if test "x$ac_system" = "xLinux" \
5148         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
5149 then
5150         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5151 fi
5152
5153 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5154 then
5155         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5156 fi
5157
5158 dnl Perl bindings
5159 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
5160 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5161 [
5162         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5163         then
5164                 PERL_BINDINGS_OPTIONS="$withval"
5165                 with_perl_bindings="yes"
5166         else
5167                 with_perl_bindings="$withval"
5168         fi
5169 ],
5170 [
5171         if test -n "$perl_interpreter"
5172         then
5173                 with_perl_bindings="yes"
5174         else
5175                 with_perl_bindings="no (no perl interpreter found)"
5176         fi
5177 ])
5178 if test "x$with_perl_bindings" = "xyes"
5179 then
5180         PERL_BINDINGS="perl"
5181 else
5182         PERL_BINDINGS=""
5183 fi
5184 AC_SUBST(PERL_BINDINGS)
5185 AC_SUBST(PERL_BINDINGS_OPTIONS)
5186
5187 dnl libcollectdclient
5188 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5189 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5190 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5191
5192 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5193
5194 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5195
5196 AC_SUBST(LCC_VERSION_MAJOR)
5197 AC_SUBST(LCC_VERSION_MINOR)
5198 AC_SUBST(LCC_VERSION_PATCH)
5199 AC_SUBST(LCC_VERSION_EXTRA)
5200 AC_SUBST(LCC_VERSION_STRING)
5201
5202 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
5203
5204 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile)
5205
5206 if test "x$with_librrd" = "xyes" \
5207         && test "x$librrd_threadsafe" != "xyes"
5208 then
5209         with_librrd="yes (warning: librrd is not thread-safe)"
5210 fi
5211
5212 if test "x$with_libperl" = "xyes"
5213 then
5214         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
5215 else
5216         enable_perl="no (needs libperl)"
5217 fi
5218
5219 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5220 then
5221         enable_perl="no (libperl doesn't support ithreads)"
5222 fi
5223
5224 if test "x$with_perl_bindings" = "xyes" \
5225         && test "x$PERL_BINDINGS_OPTIONS" != "x"
5226 then
5227         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5228 fi
5229
5230 cat <<EOF;
5231
5232 Configuration:
5233   Libraries:
5234     intel mic . . . . . . $with_mic
5235     libcurl . . . . . . . $with_libcurl
5236     libdbi  . . . . . . . $with_libdbi
5237     libcredis . . . . . . $with_libcredis
5238     libesmtp  . . . . . . $with_libesmtp
5239     libganglia  . . . . . $with_libganglia
5240     libgcrypt . . . . . . $with_libgcrypt
5241     libiokit  . . . . . . $with_libiokit
5242     libiptc . . . . . . . $with_libiptc
5243     libjvm  . . . . . . . $with_java
5244     libkstat  . . . . . . $with_kstat
5245     libkvm  . . . . . . . $with_libkvm
5246     libmemcached  . . . . $with_libmemcached
5247     libmnl  . . . . . . . $with_libmnl
5248     libmodbus . . . . . . $with_libmodbus
5249     libmysql  . . . . . . $with_libmysql
5250     libnetapp . . . . . . $with_libnetapp
5251     libnetsnmp  . . . . . $with_libnetsnmp
5252     libnotify . . . . . . $with_libnotify
5253     liboconfig  . . . . . $with_liboconfig
5254     libopenipmi . . . . . $with_libopenipmipthread
5255     liboping  . . . . . . $with_liboping
5256     libpcap . . . . . . . $with_libpcap
5257     libperfstat . . . . . $with_perfstat
5258     libperl . . . . . . . $with_libperl
5259     libpq . . . . . . . . $with_libpq
5260     libpthread  . . . . . $with_libpthread
5261     librabbitmq . . . . . $with_librabbitmq
5262     librouteros . . . . . $with_librouteros
5263     librrd  . . . . . . . $with_librrd
5264     libsensors  . . . . . $with_libsensors
5265     libstatgrab . . . . . $with_libstatgrab
5266     libtokyotyrant  . . . $with_libtokyotyrant
5267     libupsclient  . . . . $with_libupsclient
5268     libvarnish  . . . . . $with_libvarnish
5269     libvirt . . . . . . . $with_libvirt
5270     libxml2 . . . . . . . $with_libxml2
5271     libxmms . . . . . . . $with_libxmms
5272     libyajl . . . . . . . $with_libyajl
5273     libevent  . . . . . . $with_libevent
5274     protobuf-c  . . . . . $have_protoc_c
5275     oracle  . . . . . . . $with_oracle
5276     python  . . . . . . . $with_python
5277
5278   Features:
5279     daemon mode . . . . . $enable_daemon
5280     debug . . . . . . . . $enable_debug
5281
5282   Bindings:
5283     perl  . . . . . . . . $with_perl_bindings
5284
5285   Modules:
5286     aggregation . . . . . $enable_aggregation
5287     amqp    . . . . . . . $enable_amqp
5288     apache  . . . . . . . $enable_apache
5289     apcups  . . . . . . . $enable_apcups
5290     apple_sensors . . . . $enable_apple_sensors
5291     ascent  . . . . . . . $enable_ascent
5292     battery . . . . . . . $enable_battery
5293     bind  . . . . . . . . $enable_bind
5294     conntrack . . . . . . $enable_conntrack
5295     contextswitch . . . . $enable_contextswitch
5296     cgroups . . . . . . . $enable_cgroups
5297     cpu . . . . . . . . . $enable_cpu
5298     cpufreq . . . . . . . $enable_cpufreq
5299     csv . . . . . . . . . $enable_csv
5300     curl  . . . . . . . . $enable_curl
5301     curl_json . . . . . . $enable_curl_json
5302     curl_xml  . . . . . . $enable_curl_xml
5303     dbi . . . . . . . . . $enable_dbi
5304     df  . . . . . . . . . $enable_df
5305     disk  . . . . . . . . $enable_disk
5306     dns . . . . . . . . . $enable_dns
5307     email . . . . . . . . $enable_email
5308     entropy . . . . . . . $enable_entropy
5309     ethstat . . . . . . . $enable_ethstat
5310     exec  . . . . . . . . $enable_exec
5311     filecount . . . . . . $enable_filecount
5312     fscache . . . . . . . $enable_fscache
5313     gmond . . . . . . . . $enable_gmond
5314     hddtemp . . . . . . . $enable_hddtemp
5315     interface . . . . . . $enable_interface
5316     ipmi  . . . . . . . . $enable_ipmi
5317     iptables  . . . . . . $enable_iptables
5318     ipvs  . . . . . . . . $enable_ipvs
5319     irq . . . . . . . . . $enable_irq
5320     java  . . . . . . . . $enable_java
5321     libvirt . . . . . . . $enable_libvirt
5322     load  . . . . . . . . $enable_load
5323     logfile . . . . . . . $enable_logfile
5324     lpar... . . . . . . . $enable_lpar
5325     lvm . . . . . . . . . $enable_lvm
5326     madwifi . . . . . . . $enable_madwifi
5327     match_empty_counter . $enable_match_empty_counter
5328     match_hashed  . . . . $enable_match_hashed
5329     match_regex . . . . . $enable_match_regex
5330     match_timediff  . . . $enable_match_timediff
5331     match_value . . . . . $enable_match_value
5332     mbmon . . . . . . . . $enable_mbmon
5333     md  . . . . . . . . . $enable_md
5334     memcachec . . . . . . $enable_memcachec
5335     memcached . . . . . . $enable_memcached
5336     memory  . . . . . . . $enable_memory
5337     modbus  . . . . . . . $enable_modbus
5338     multimeter  . . . . . $enable_multimeter
5339     mysql . . . . . . . . $enable_mysql
5340     netapp  . . . . . . . $enable_netapp
5341     netlink . . . . . . . $enable_netlink
5342     network . . . . . . . $enable_network
5343     nfs . . . . . . . . . $enable_nfs
5344     nginx . . . . . . . . $enable_nginx
5345     notify_desktop  . . . $enable_notify_desktop
5346     notify_email  . . . . $enable_notify_email
5347     ntpd  . . . . . . . . $enable_ntpd
5348     numa  . . . . . . . . $enable_numa
5349     nut . . . . . . . . . $enable_nut
5350     olsrd . . . . . . . . $enable_olsrd
5351     onewire . . . . . . . $enable_onewire
5352     openvpn . . . . . . . $enable_openvpn
5353     oracle  . . . . . . . $enable_oracle
5354     perl  . . . . . . . . $enable_perl
5355     pf  . . . . . . . . . $enable_pf
5356     pinba . . . . . . . . $enable_pinba
5357     ping  . . . . . . . . $enable_ping
5358     postgresql  . . . . . $enable_postgresql
5359     powerdns  . . . . . . $enable_powerdns
5360     processes . . . . . . $enable_processes
5361     protocols . . . . . . $enable_protocols
5362     python  . . . . . . . $enable_python
5363     redis . . . . . . . . $enable_redis
5364     routeros  . . . . . . $enable_routeros
5365     rrdcached . . . . . . $enable_rrdcached
5366     rrdtool . . . . . . . $enable_rrdtool
5367     sensors . . . . . . . $enable_sensors
5368     serial  . . . . . . . $enable_serial
5369     snmp  . . . . . . . . $enable_snmp
5370     swap  . . . . . . . . $enable_swap
5371     syslog  . . . . . . . $enable_syslog
5372     table . . . . . . . . $enable_table
5373     tail  . . . . . . . . $enable_tail
5374     tail_csv  . . . . . . $enable_tail_csv
5375     tape  . . . . . . . . $enable_tape
5376     target_notification . $enable_target_notification
5377     target_replace  . . . $enable_target_replace
5378     target_scale  . . . . $enable_target_scale
5379     target_set  . . . . . $enable_target_set
5380     target_v5upgrade  . . $enable_target_v5upgrade
5381     tcpconns  . . . . . . $enable_tcpconns
5382     teamspeak2  . . . . . $enable_teamspeak2
5383     ted . . . . . . . . . $enable_ted
5384     thermal . . . . . . . $enable_thermal
5385     threshold . . . . . . $enable_threshold
5386     tokyotyrant . . . . . $enable_tokyotyrant
5387     unixsock  . . . . . . $enable_unixsock
5388     uptime  . . . . . . . $enable_uptime
5389     users . . . . . . . . $enable_users
5390     uuid  . . . . . . . . $enable_uuid
5391     varnish . . . . . . . $enable_varnish
5392     vmem  . . . . . . . . $enable_vmem
5393     vserver . . . . . . . $enable_vserver
5394     wireless  . . . . . . $enable_wireless
5395     write_graphite  . . . $enable_write_graphite
5396     write_http  . . . . . $enable_write_http
5397     write_mongodb . . . . $enable_write_mongodb
5398     write_redis . . . . . $enable_write_redis
5399     write_riemann . . . . $enable_write_riemann
5400     xmms  . . . . . . . . $enable_xmms
5401     zfs_arc . . . . . . . $enable_zfs_arc
5402
5403 EOF
5404
5405 if test "x$dependency_error" = "xyes"; then
5406         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
5407 fi
5408
5409 if test "x$dependency_warning" = "xyes"; then
5410         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
5411 fi
5412
5413 # vim: set fdm=marker :