Merge pull request #444 from falzm/master
[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 # --with-useragent {{{
1125 AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])],
1126 [
1127     if test "x$withval" != "xno" && test "x$withval" != "xyes"
1128     then
1129         AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests])
1130     fi
1131 ])
1132
1133 # }}}
1134
1135 have_getfsstat="no"
1136 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
1137 have_getvfsstat="no"
1138 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
1139 have_listmntent="no"
1140 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
1141
1142 have_getmntent="no"
1143 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
1144 if test "x$have_getmntent" = "xno"; then
1145         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
1146 fi
1147 if test "x$have_getmntent" = "xno"; then
1148         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
1149 fi
1150 if test "x$have_getmntent" = "xno"; then
1151         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
1152 fi
1153
1154 if test "x$have_getmntent" = "xc"; then
1155         AC_CACHE_CHECK([whether getmntent takes one argument],
1156                 [c_cv_have_one_getmntent],
1157                 AC_COMPILE_IFELSE(
1158                         [AC_LANG_PROGRAM(
1159 [[[
1160 #include "$srcdir/src/utils_mount.h"
1161 ]]],
1162 [[[
1163 FILE *fh;
1164 struct mntent *me;
1165 fh = setmntent ("/etc/mtab", "r");
1166 me = getmntent (fh);
1167 ]]]
1168                         )],
1169                         [c_cv_have_one_getmntent="yes"],
1170                         [c_cv_have_one_getmntent="no"]
1171                 )
1172         )
1173         AC_CACHE_CHECK([whether getmntent takes two arguments],
1174                 [c_cv_have_two_getmntent],
1175                 AC_COMPILE_IFELSE(
1176                         [AC_LANG_PROGRAM(
1177 [[[
1178 #include "$srcdir/src/utils_mount.h"
1179 ]]],
1180 [[[
1181                                  FILE *fh;
1182                                  struct mnttab mt;
1183                                  int status;
1184                                  fh = fopen ("/etc/mnttab", "r");
1185                                  status = getmntent (fh, &mt);
1186 ]]]
1187                         )],
1188                         [c_cv_have_two_getmntent="yes"],
1189                         [c_cv_have_two_getmntent="no"]
1190                 )
1191         )
1192 fi
1193
1194 # Check for different versions of `getmntent' here..
1195
1196 if test "x$have_getmntent" = "xc"; then
1197         if test "x$c_cv_have_one_getmntent" = "xyes"; then
1198                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
1199                           [Define if the function getmntent exists and takes one argument.])
1200         fi
1201         if test "x$c_cv_have_two_getmntent" = "xyes"; then
1202                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
1203                           [Define if the function getmntent exists and takes two arguments.])
1204         fi
1205 fi
1206 if test "x$have_getmntent" = "xsun"; then
1207         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
1208                   [Define if the function getmntent exists. It's the version from libsun.])
1209 fi
1210 if test "x$have_getmntent" = "xseq"; then
1211         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
1212                   [Define if the function getmntent exists. It's the version from libseq.])
1213 fi
1214 if test "x$have_getmntent" = "xgen"; then
1215         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
1216                   [Define if the function getmntent exists. It's the version from libgen.])
1217 fi
1218
1219 # Check for htonll
1220 AC_MSG_CHECKING([if have htonll defined])
1221
1222     have_htonll="no"
1223     AC_LINK_IFELSE([AC_LANG_PROGRAM(
1224 [[[
1225 #include <sys/types.h>
1226 #include <netinet/in.h>
1227 #if HAVE_INTTYPES_H
1228 # include <inttypes.h>
1229 #endif
1230 ]]],
1231 [[[
1232           return htonll(0);
1233 ]]]
1234     )],
1235     [
1236       have_htonll="yes"
1237       AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.])
1238     ])
1239  
1240 AC_MSG_RESULT([$have_htonll])
1241
1242 # Check for structures
1243 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
1244         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
1245         [],
1246         [
1247         #include <sys/types.h>
1248         #include <sys/socket.h>
1249         #include <net/if.h>
1250         ])
1251 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
1252         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
1253         [],
1254         [
1255         #include <sys/types.h>
1256         #include <sys/socket.h>
1257         #include <linux/if.h>
1258         #include <linux/netdevice.h>
1259         ])
1260
1261 AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [],
1262         [],
1263         [
1264         #include <netinet/in.h>
1265         #include <net/if.h>
1266         ])
1267
1268 AC_CHECK_MEMBERS([struct kinfo_proc.ki_pid, struct kinfo_proc.ki_rssize, struct kinfo_proc.ki_rusage],
1269         [
1270                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_FREEBSD, 1,
1271                         [Define if struct kinfo_proc exists in the FreeBSD variant.])
1272                 have_struct_kinfo_proc_freebsd="yes"
1273         ],
1274         [
1275                 have_struct_kinfo_proc_freebsd="no"
1276         ],
1277         [
1278 #include <kvm.h>
1279 #include <sys/param.h>
1280 #include <sys/sysctl.h>
1281 #include <sys/user.h>
1282         ])
1283
1284 AC_CHECK_MEMBERS([struct kinfo_proc.kp_proc, struct kinfo_proc.kp_eproc],
1285         [
1286                 AC_DEFINE(HAVE_STRUCT_KINFO_PROC_OPENBSD, 1,
1287                         [Define if struct kinfo_proc exists in the OpenBSD variant.])
1288                 have_struct_kinfo_proc_openbsd="yes"
1289         ],
1290         [
1291                 have_struct_kinfo_proc_openbsd="no"
1292         ],
1293         [
1294 #include <sys/param.h>
1295 #include <sys/sysctl.h>
1296 #include <kvm.h>
1297         ])
1298
1299 AC_CHECK_MEMBERS([struct udphdr.uh_dport, struct udphdr.uh_sport], [], [],
1300 [#define _BSD_SOURCE
1301 #if HAVE_STDINT_H
1302 # include <stdint.h>
1303 #endif
1304 #if HAVE_SYS_TYPES_H
1305 # include <sys/types.h>
1306 #endif
1307 #if HAVE_NETINET_IN_SYSTM_H
1308 # include <netinet/in_systm.h>
1309 #endif
1310 #if HAVE_NETINET_IN_H
1311 # include <netinet/in.h>
1312 #endif
1313 #if HAVE_NETINET_IP_H
1314 # include <netinet/ip.h>
1315 #endif
1316 #if HAVE_NETINET_UDP_H
1317 # include <netinet/udp.h>
1318 #endif
1319 ])
1320 AC_CHECK_MEMBERS([struct udphdr.dest, struct udphdr.source], [], [],
1321 [#define _BSD_SOURCE
1322 #if HAVE_STDINT_H
1323 # include <stdint.h>
1324 #endif
1325 #if HAVE_SYS_TYPES_H
1326 # include <sys/types.h>
1327 #endif
1328 #if HAVE_NETINET_IN_SYSTM_H
1329 # include <netinet/in_systm.h>
1330 #endif
1331 #if HAVE_NETINET_IN_H
1332 # include <netinet/in.h>
1333 #endif
1334 #if HAVE_NETINET_IP_H
1335 # include <netinet/ip.h>
1336 #endif
1337 #if HAVE_NETINET_UDP_H
1338 # include <netinet/udp.h>
1339 #endif
1340 ])
1341
1342 AC_CHECK_MEMBERS([kstat_io_t.nwritten, kstat_io_t.writes, kstat_io_t.nwrites, kstat_io_t.wtime],
1343         [],
1344         [],
1345         [
1346 #if HAVE_KSTAT_H
1347 # include <kstat.h>
1348 #endif
1349         ])
1350
1351 #
1352 # Checks for libraries begin here
1353 #
1354
1355 with_libresolv="yes"
1356 AC_CHECK_LIB(resolv, res_search,
1357 [
1358         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
1359 ],
1360 [with_libresolv="no"])
1361 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
1362
1363 dnl Check for HAL (hardware abstraction library)
1364 with_libhal="yes"
1365 AC_CHECK_LIB(hal,libhal_device_property_exists,
1366              [AC_DEFINE(HAVE_LIBHAL, 1, [Define to 1 if you have 'hal' library])],
1367              [with_libhal="no"])
1368 if test "x$with_libhal" = "xyes"; then
1369         if test "x$PKG_CONFIG" != "x"; then
1370                 BUILD_WITH_LIBHAL_CFLAGS="`pkg-config --cflags hal`"
1371                 BUILD_WITH_LIBHAL_LIBS="`pkg-config --libs hal`"
1372                 AC_SUBST(BUILD_WITH_LIBHAL_CFLAGS)
1373                 AC_SUBST(BUILD_WITH_LIBHAL_LIBS)
1374         fi
1375 fi
1376
1377 m4_divert_once([HELP_WITH], [
1378 collectd additional packages:])
1379
1380 AM_CONDITIONAL([BUILD_FREEBSD],[test "x$x$ac_system" = "xFreeBSD"])
1381
1382 AM_CONDITIONAL([BUILD_AIX],[test "x$x$ac_system" = "xAIX"]) 
1383
1384 if test "x$ac_system" = "xAIX"
1385 then
1386         with_perfstat="yes"
1387         with_procinfo="yes"
1388 else
1389         with_perfstat="no (AIX only)"
1390         with_procinfo="no (AIX only)"
1391 fi
1392
1393 if test "x$with_perfstat" = "xyes"
1394 then
1395         AC_CHECK_LIB(perfstat, perfstat_reset, [with_perfstat="yes"], [with_perfstat="no (perfstat not found)"], [])
1396 #       AC_CHECK_HEADERS(sys/protosw.h libperfstat.h,, [with_perfstat="no (perfstat not found)"])
1397 fi
1398 if test "x$with_perfstat" = "xyes"
1399 then
1400          AC_DEFINE(HAVE_PERFSTAT, 1, [Define to 1 if you have the 'perfstat' library (-lperfstat)])
1401          # struct members pertaining to donation have been added to libperfstat somewhere between AIX5.3ML5 and AIX5.3ML9
1402          AC_CHECK_MEMBER([perfstat_partition_type_t.b.donate_enabled], [], [], [[#include <libperfstat.h]])
1403          if test "x$av_cv_member_perfstat_partition_type_t_b_donate_enabled" = "xyes"
1404          then
1405                 AC_DEFINE(PERFSTAT_SUPPORTS_DONATION, 1, [Define to 1 if your version of the 'perfstat' library supports donation])
1406          fi
1407 fi
1408 AM_CONDITIONAL(BUILD_WITH_PERFSTAT, test "x$with_perfstat" = "xyes")
1409
1410 # Processes plugin under AIX.
1411 if test "x$with_procinfo" = "xyes"
1412 then
1413         AC_CHECK_HEADERS(procinfo.h,, [with_procinfo="no (procinfo.h not found)"])
1414 fi
1415 if test "x$with_procinfo" = "xyes"
1416 then
1417          AC_DEFINE(HAVE_PROCINFO_H, 1, [Define to 1 if you have the procinfo.h])
1418 fi
1419
1420 if test "x$ac_system" = "xSolaris"
1421 then
1422         with_kstat="yes"
1423         with_devinfo="yes"
1424 else
1425         with_kstat="no (Solaris only)"
1426         with_devinfo="no (Solaris only)"
1427 fi
1428
1429 if test "x$with_kstat" = "xyes"
1430 then
1431         AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
1432 fi
1433 if test "x$with_kstat" = "xyes"
1434 then
1435         AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
1436         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
1437 fi
1438 if test "x$with_kstat" = "xyes"
1439 then
1440         AC_DEFINE(HAVE_LIBKSTAT, 1,
1441                   [Define to 1 if you have the 'kstat' library (-lkstat)])
1442 fi
1443 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
1444 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
1445
1446 with_libiokit="no"
1447 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
1448 [
1449         with_libiokit="yes"
1450 ], 
1451 [
1452         with_libiokit="no"
1453 ])
1454 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
1455
1456 with_libkvm="no"
1457 AC_CHECK_LIB(kvm, kvm_getprocs, [with_kvm_getprocs="yes"], [with_kvm_getprocs="no"])
1458 if test "x$with_kvm_getprocs" = "xyes"
1459 then
1460         AC_DEFINE(HAVE_LIBKVM_GETPROCS, 1,
1461                   [Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol (-lkvm)])
1462         with_libkvm="yes"
1463 fi
1464 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETPROCS, test "x$with_kvm_getprocs" = "xyes")
1465
1466 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_kvm_getswapinfo="yes"], [with_kvm_getswapinfo="no"])
1467 if test "x$with_kvm_getswapinfo" = "xyes"
1468 then
1469         AC_DEFINE(HAVE_LIBKVM_GETSWAPINFO, 1,
1470                   [Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol (-lkvm)])
1471         with_libkvm="yes"
1472 fi
1473 AM_CONDITIONAL(BUILD_WITH_LIBKVM_GETSWAPINFO, test "x$with_kvm_getswapinfo" = "xyes")
1474
1475 AC_CHECK_LIB(kvm, kvm_nlist, [with_kvm_nlist="yes"], [with_kvm_nlist="no"])
1476 if test "x$with_kvm_nlist" = "xyes"
1477 then
1478         AC_CHECK_HEADERS(bsd/nlist.h nlist.h)
1479         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1480                   [Define to 1 if you have the 'kvm' library with the 'kvm_nlist' symbol (-lkvm)])
1481         with_libkvm="yes"
1482 fi
1483 AM_CONDITIONAL(BUILD_WITH_LIBKVM_NLIST, test "x$with_kvm_nlist" = "xyes")
1484
1485 AC_CHECK_LIB(kvm, kvm_openfiles, [with_kvm_openfiles="yes"], [with_kvm_openfiles="no"])
1486 if test "x$with_kvm_openfiles" = "xyes"
1487 then
1488         AC_DEFINE(HAVE_LIBKVM_NLIST, 1,
1489                   [Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol (-lkvm)])
1490         with_libkvm="yes"
1491 fi
1492 AM_CONDITIONAL(BUILD_WITH_LIBKVM_OPENFILES, test "x$with_kvm_openfiles" = "xyes")
1493
1494 # --with-libaquaero5 {{{
1495 AC_ARG_WITH(libaquaero5, [AS_HELP_STRING([--with-libaquaero5@<:@=PREFIX@:>@], [Path to aquatools-ng source code.])],
1496 [
1497  if test "x$withval" = "xyes"
1498  then
1499          with_libaquaero5="yes"
1500  else if test "x$withval" = "xno"
1501  then
1502          with_libaquaero5="no"
1503  else
1504          with_libaquaero5="yes"
1505          LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS -I$withval/src"
1506          LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS -L$withval/obj"
1507  fi; fi
1508 ],
1509 [with_libaquaero5="yes"])
1510
1511 SAVE_CPPFLAGS="$CPPFLAGS"
1512 SAVE_LDFLAGS="$LDFLAGS"
1513
1514 CPPFLAGS="$CPPFLAGS $LIBAQUAERO5_CFLAGS"
1515 LDFLAGS="$LDFLAGS $LIBAQUAERO5_LDFLAGS"
1516
1517 if test "x$with_libaquaero5" = "xyes"
1518 then
1519         if test "x$LIBAQUAERO5_CFLAGS" != "x"
1520         then
1521                 AC_MSG_NOTICE([libaquaero5 CPPFLAGS: $LIBAQUAERO5_CFLAGS])
1522         fi
1523         AC_CHECK_HEADERS(libaquaero5.h,
1524         [with_libaquaero5="yes"],
1525         [with_libaquaero5="no (libaquaero5.h not found)"])
1526 fi
1527 if test "x$with_libaquaero5" = "xyes"
1528 then
1529         if test "x$LIBAQUAERO5_LDFLAGS" != "x"
1530         then
1531                 AC_MSG_NOTICE([libaquaero5 LDFLAGS: $LIBAQUAERO5_LDFLAGS])
1532         fi
1533         AC_CHECK_LIB(aquaero5, libaquaero5_poll,
1534         [with_libaquaero5="yes"],
1535         [with_libaquaero5="no (symbol 'libaquaero5_poll' not found)"])
1536 fi
1537
1538 CPPFLAGS="$SAVE_CPPFLAGS"
1539 LDFLAGS="$SAVE_LDFLAGS"
1540
1541 if test "x$with_libaquaero5" = "xyes"
1542 then
1543         BUILD_WITH_LIBAQUAERO5_CFLAGS="$LIBAQUAERO5_CFLAGS"
1544         BUILD_WITH_LIBAQUAERO5_LDFLAGS="$LIBAQUAERO5_LDFLAGS"
1545         AC_SUBST(BUILD_WITH_LIBAQUAERO5_CFLAGS)
1546         AC_SUBST(BUILD_WITH_LIBAQUAERO5_LDFLAGS)
1547 fi
1548 AM_CONDITIONAL(BUILD_WITH_LIBAQUAERO5, test "x$with_libaquaero5" = "xyes")
1549 # }}}
1550
1551 # --with-libcredis {{{
1552 AC_ARG_WITH(libcredis, [AS_HELP_STRING([--with-libcredis@<:@=PREFIX@:>@], [Path to libcredis.])],
1553 [
1554  if test "x$withval" = "xyes"
1555  then
1556          with_libcredis="yes"
1557  else if test "x$withval" = "xno"
1558  then
1559          with_libcredis="no"
1560  else
1561          with_libcredis="yes"
1562          LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS -I$withval/include"
1563          LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS -L$withval/lib"
1564  fi; fi
1565 ],
1566 [with_libcredis="yes"])
1567
1568 SAVE_CPPFLAGS="$CPPFLAGS"
1569 SAVE_LDFLAGS="$LDFLAGS"
1570
1571 CPPFLAGS="$CPPFLAGS $LIBCREDIS_CPPFLAGS"
1572 LDFLAGS="$LDFLAGS $LIBCREDIS_LDFLAGS"
1573
1574 if test "x$with_libcredis" = "xyes"
1575 then
1576         if test "x$LIBCREDIS_CPPFLAGS" != "x"
1577         then
1578                 AC_MSG_NOTICE([libcredis CPPFLAGS: $LIBCREDIS_CPPFLAGS])
1579         fi
1580         AC_CHECK_HEADERS(credis.h,
1581         [with_libcredis="yes"],
1582         [with_libcredis="no (credis.h not found)"])
1583 fi
1584 if test "x$with_libcredis" = "xyes"
1585 then
1586         if test "x$LIBCREDIS_LDFLAGS" != "x"
1587         then
1588                 AC_MSG_NOTICE([libcredis LDFLAGS: $LIBCREDIS_LDFLAGS])
1589         fi
1590         AC_CHECK_LIB(credis, credis_info,
1591         [with_libcredis="yes"],
1592         [with_libcredis="no (symbol 'credis_info' not found)"])
1593
1594 fi
1595
1596 CPPFLAGS="$SAVE_CPPFLAGS"
1597 LDFLAGS="$SAVE_LDFLAGS"
1598
1599 if test "x$with_libcredis" = "xyes"
1600 then
1601         BUILD_WITH_LIBCREDIS_CPPFLAGS="$LIBCREDIS_CPPFLAGS"
1602         BUILD_WITH_LIBCREDIS_LDFLAGS="$LIBCREDIS_LDFLAGS"
1603         AC_SUBST(BUILD_WITH_LIBCREDIS_CPPFLAGS)
1604         AC_SUBST(BUILD_WITH_LIBCREDIS_LDFLAGS)
1605 fi
1606 AM_CONDITIONAL(BUILD_WITH_LIBCREDIS, test "x$with_libcredis" = "xyes")
1607 # }}}
1608
1609 # --with-libcurl {{{
1610 with_curl_config="curl-config"
1611 with_curl_cflags=""
1612 with_curl_libs=""
1613 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
1614 [
1615         if test "x$withval" = "xno"
1616         then
1617                 with_libcurl="no"
1618         else if test "x$withval" = "xyes"
1619         then
1620                 with_libcurl="yes"
1621         else
1622                 if test -f "$withval" && test -x "$withval"
1623                 then
1624                         with_curl_config="$withval"
1625                         with_libcurl="yes"
1626                 else if test -x "$withval/bin/curl-config"
1627                 then
1628                         with_curl_config="$withval/bin/curl-config"
1629                         with_libcurl="yes"
1630                 fi; fi
1631                 with_libcurl="yes"
1632         fi; fi
1633 ],
1634 [
1635         with_libcurl="yes"
1636 ])
1637 if test "x$with_libcurl" = "xyes"
1638 then
1639         with_curl_cflags=`$with_curl_config --cflags 2>/dev/null`
1640         curl_config_status=$?
1641
1642         if test $curl_config_status -ne 0
1643         then
1644                 with_libcurl="no ($with_curl_config failed)"
1645         else
1646                 SAVE_CPPFLAGS="$CPPFLAGS"
1647                 CPPFLAGS="$CPPFLAGS $with_curl_cflags"
1648
1649                 AC_CHECK_HEADERS(curl/curl.h, [], [with_libcurl="no (curl/curl.h not found)"], [])
1650
1651                 CPPFLAGS="$SAVE_CPPFLAGS"
1652         fi
1653 fi
1654 if test "x$with_libcurl" = "xyes"
1655 then
1656         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
1657         curl_config_status=$?
1658
1659         if test $curl_config_status -ne 0
1660         then
1661                 with_libcurl="no ($with_curl_config failed)"
1662         else
1663                 AC_CHECK_LIB(curl, curl_easy_init,
1664                  [with_libcurl="yes"],
1665                  [with_libcurl="no (symbol 'curl_easy_init' not found)"],
1666                  [$with_curl_libs])
1667         fi
1668 fi
1669 if test "x$with_libcurl" = "xyes"
1670 then
1671         BUILD_WITH_LIBCURL_CFLAGS="$with_curl_cflags"
1672         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
1673         AC_SUBST(BUILD_WITH_LIBCURL_CFLAGS)
1674         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
1675 fi
1676 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
1677 # }}}
1678
1679 # --with-libdbi {{{
1680 with_libdbi_cppflags=""
1681 with_libdbi_ldflags=""
1682 AC_ARG_WITH(libdbi, [AS_HELP_STRING([--with-libdbi@<:@=PREFIX@:>@], [Path to libdbi.])],
1683 [
1684         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1685         then
1686                 with_libdbi_cppflags="-I$withval/include"
1687                 with_libdbi_ldflags="-L$withval/lib"
1688                 with_libdbi="yes"
1689         else
1690                 with_libdbi="$withval"
1691         fi
1692 ],
1693 [
1694         with_libdbi="yes"
1695 ])
1696 if test "x$with_libdbi" = "xyes"
1697 then
1698         SAVE_CPPFLAGS="$CPPFLAGS"
1699         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1700
1701         AC_CHECK_HEADERS(dbi/dbi.h, [with_libdbi="yes"], [with_libdbi="no (dbi/dbi.h not found)"])
1702
1703         CPPFLAGS="$SAVE_CPPFLAGS"
1704 fi
1705 if test "x$with_libdbi" = "xyes"
1706 then
1707         SAVE_CPPFLAGS="$CPPFLAGS"
1708         SAVE_LDFLAGS="$LDFLAGS"
1709         CPPFLAGS="$CPPFLAGS $with_libdbi_cppflags"
1710         LDFLAGS="$LDFLAGS $with_libdbi_ldflags"
1711
1712         AC_CHECK_LIB(dbi, dbi_initialize, [with_libdbi="yes"], [with_libdbi="no (Symbol 'dbi_initialize' not found)"])
1713
1714         CPPFLAGS="$SAVE_CPPFLAGS"
1715         LDFLAGS="$SAVE_LDFLAGS"
1716 fi
1717 if test "x$with_libdbi" = "xyes"
1718 then
1719         BUILD_WITH_LIBDBI_CPPFLAGS="$with_libdbi_cppflags"
1720         BUILD_WITH_LIBDBI_LDFLAGS="$with_libdbi_ldflags"
1721         BUILD_WITH_LIBDBI_LIBS="-ldbi"
1722         AC_SUBST(BUILD_WITH_LIBDBI_CPPFLAGS)
1723         AC_SUBST(BUILD_WITH_LIBDBI_LDFLAGS)
1724         AC_SUBST(BUILD_WITH_LIBDBI_LIBS)
1725 fi
1726 AM_CONDITIONAL(BUILD_WITH_LIBDBI, test "x$with_libdbi" = "xyes")
1727 # }}}
1728
1729 # --with-libesmtp {{{
1730 AC_ARG_WITH(libesmtp, [AS_HELP_STRING([--with-libesmtp@<:@=PREFIX@:>@], [Path to libesmtp.])],
1731 [
1732         if test "x$withval" != "xno" && test "x$withval" != "xyes"
1733         then
1734                 LDFLAGS="$LDFLAGS -L$withval/lib"
1735                 CPPFLAGS="$CPPFLAGS -I$withval/include -D_THREAD_SAFE"
1736                 with_libesmtp="yes"
1737         else
1738                 with_libesmtp="$withval"
1739         fi
1740 ],
1741 [
1742         with_libesmtp="yes"
1743 ])
1744 if test "x$with_libesmtp" = "xyes"
1745 then
1746         AC_CHECK_LIB(esmtp, smtp_create_session,
1747         [
1748                 AC_DEFINE(HAVE_LIBESMTP, 1, [Define to 1 if you have the esmtp library (-lesmtp).])
1749         ], [with_libesmtp="no (libesmtp not found)"])
1750 fi
1751 if test "x$with_libesmtp" = "xyes"
1752 then
1753         AC_CHECK_HEADERS(libesmtp.h,
1754         [
1755                 AC_DEFINE(HAVE_LIBESMTP_H, 1, [Define to 1 if you have the <libesmtp.h> header file.])
1756         ], [with_libesmtp="no (libesmtp.h not found)"])
1757 fi
1758 if test "x$with_libesmtp" = "xyes"
1759 then
1760         collect_libesmtp=1
1761 else
1762         collect_libesmtp=0
1763 fi
1764 AC_DEFINE_UNQUOTED(COLLECT_LIBESMTP, [$collect_libesmtp],
1765         [Wether or not to use the esmtp library])
1766 AM_CONDITIONAL(BUILD_WITH_LIBESMTP, test "x$with_libesmtp" = "xyes")
1767 # }}}
1768
1769 # --with-libganglia {{{
1770 AC_ARG_WITH(libganglia, [AS_HELP_STRING([--with-libganglia@<:@=PREFIX@:>@], [Path to libganglia.])],
1771 [
1772  if test -f "$withval" && test -x "$withval"
1773  then
1774          with_libganglia_config="$withval"
1775          with_libganglia="yes"
1776  else if test -f "$withval/bin/ganglia-config" && test -x "$withval/bin/ganglia-config"
1777  then
1778          with_libganglia_config="$withval/bin/ganglia-config"
1779          with_libganglia="yes"
1780  else if test -d "$withval"
1781  then
1782          GANGLIA_CPPFLAGS="-I$withval/include"
1783          GANGLIA_LDFLAGS="-L$withval/lib"
1784          with_libganglia="yes"
1785  else
1786          with_libganglia_config="ganglia-config"
1787          with_libganglia="$withval"
1788  fi; fi; fi
1789 ],
1790 [
1791  with_libganglia_config="ganglia-config"
1792  with_libganglia="yes"
1793 ])
1794
1795 if test "x$with_libganglia" = "xyes" && test "x$with_libganglia_config" != "x"
1796 then
1797         if test "x$GANGLIA_CPPFLAGS" = "x"
1798         then
1799                 GANGLIA_CPPFLAGS=`"$with_libganglia_config" --cflags 2>/dev/null`
1800         fi
1801
1802         if test "x$GANGLIA_LDFLAGS" = "x"
1803         then
1804                 GANGLIA_LDFLAGS=`"$with_libganglia_config" --ldflags 2>/dev/null`
1805         fi
1806
1807         if test "x$GANGLIA_LIBS" = "x"
1808         then
1809                 GANGLIA_LIBS=`"$with_libganglia_config" --libs 2>/dev/null`
1810         fi
1811 fi
1812
1813 SAVE_CPPFLAGS="$CPPFLAGS"
1814 SAVE_LDFLAGS="$LDFLAGS"
1815 CPPFLAGS="$CPPFLAGS $GANGLIA_CPPFLAGS"
1816 LDFLAGS="$LDFLAGS $GANGLIA_LDFLAGS"
1817
1818 if test "x$with_libganglia" = "xyes"
1819 then
1820         AC_CHECK_HEADERS(gm_protocol.h,
1821         [
1822                 AC_DEFINE(HAVE_GM_PROTOCOL_H, 1,
1823                           [Define to 1 if you have the <gm_protocol.h> header file.])
1824         ], [with_libganglia="no (gm_protocol.h not found)"])
1825 fi
1826
1827 if test "x$with_libganglia" = "xyes"
1828 then
1829         AC_CHECK_LIB(ganglia, xdr_Ganglia_value_msg,
1830         [
1831                 AC_DEFINE(HAVE_LIBGANGLIA, 1,
1832                           [Define to 1 if you have the ganglia library (-lganglia).])
1833         ], [with_libganglia="no (symbol xdr_Ganglia_value_msg not found)"])
1834 fi
1835
1836 CPPFLAGS="$SAVE_CPPFLAGS"
1837 LDFLAGS="$SAVE_LDFLAGS"
1838
1839 AC_SUBST(GANGLIA_CPPFLAGS)
1840 AC_SUBST(GANGLIA_LDFLAGS)
1841 AC_SUBST(GANGLIA_LIBS)
1842 AM_CONDITIONAL(BUILD_WITH_LIBGANGLIA, test "x$with_libganglia" = "xyes")
1843 # }}}
1844
1845 # --with-libgcrypt {{{
1846 GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS"
1847 GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS"
1848 GCRYPT_LIBS="$GCRYPT_LIBS"
1849 AC_ARG_WITH(libgcrypt, [AS_HELP_STRING([--with-libgcrypt@<:@=PREFIX@:>@], [Path to libgcrypt.])],
1850 [
1851  if test -f "$withval" && test -x "$withval"
1852  then
1853          with_libgcrypt_config="$withval"
1854          with_libgcrypt="yes"
1855  else if test -f "$withval/bin/gcrypt-config" && test -x "$withval/bin/gcrypt-config"
1856  then
1857          with_libgcrypt_config="$withval/bin/gcrypt-config"
1858          with_libgcrypt="yes"
1859  else if test -d "$withval"
1860  then
1861          GCRYPT_CPPFLAGS="$GCRYPT_CPPFLAGS -I$withval/include"
1862          GCRYPT_LDFLAGS="$GCRYPT_LDFLAGS -L$withval/lib"
1863          with_libgcrypt="yes"
1864  else
1865          with_libgcrypt_config="gcrypt-config"
1866          with_libgcrypt="$withval"
1867  fi; fi; fi
1868 ],
1869 [
1870  with_libgcrypt_config="libgcrypt-config"
1871  with_libgcrypt="yes"
1872 ])
1873
1874 if test "x$with_libgcrypt" = "xyes" && test "x$with_libgcrypt_config" != "x"
1875 then
1876         if test "x$GCRYPT_CPPFLAGS" = "x"
1877         then
1878                 GCRYPT_CPPFLAGS=`"$with_libgcrypt_config" --cflags 2>/dev/null`
1879         fi
1880
1881         if test "x$GCRYPT_LDFLAGS" = "x"
1882         then
1883                 gcrypt_exec_prefix=`"$with_libgcrypt_config" --exec-prefix 2>/dev/null`
1884                 GCRYPT_LDFLAGS="-L$gcrypt_exec_prefix/lib"
1885         fi
1886
1887         if test "x$GCRYPT_LIBS" = "x"
1888         then
1889                 GCRYPT_LIBS=`"$with_libgcrypt_config" --libs 2>/dev/null`
1890         fi
1891 fi
1892
1893 SAVE_CPPFLAGS="$CPPFLAGS"
1894 SAVE_LDFLAGS="$LDFLAGS"
1895 CPPFLAGS="$CPPFLAGS $GCRYPT_CPPFLAGS"
1896 LDFLAGS="$LDFLAGS $GCRYPT_LDFLAGS"
1897
1898 if test "x$with_libgcrypt" = "xyes"
1899 then
1900         if test "x$GCRYPT_CPPFLAGS" != "x"
1901         then
1902                 AC_MSG_NOTICE([gcrypt CPPFLAGS: $GCRYPT_CPPFLAGS])
1903         fi
1904         AC_CHECK_HEADERS(gcrypt.h,
1905                 [with_libgcrypt="yes"],
1906                 [with_libgcrypt="no (gcrypt.h not found)"])
1907 fi
1908
1909 if test "x$with_libgcrypt" = "xyes"
1910 then
1911         if test "x$GCRYPT_LDFLAGS" != "x"
1912         then
1913                 AC_MSG_NOTICE([gcrypt LDFLAGS: $GCRYPT_LDFLAGS])
1914         fi
1915         AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
1916                 [with_libgcrypt="yes"],
1917                 [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
1918
1919         if test "$with_libgcrypt" != "no"; then
1920                 AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")
1921                 GCRYPT_CPPFLAGS="$LIBGCRYPT_CPPFLAGS $LIBGCRYPT_CFLAGS"
1922                 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
1923         fi
1924 fi
1925
1926 CPPFLAGS="$SAVE_CPPFLAGS"
1927 LDFLAGS="$SAVE_LDFLAGS"
1928
1929 if test "x$with_libgcrypt" = "xyes"
1930 then
1931         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to 1 if you have the gcrypt library (-lgcrypt).])
1932 fi
1933
1934 AC_SUBST(GCRYPT_CPPFLAGS)
1935 AC_SUBST(GCRYPT_LDFLAGS)
1936 AC_SUBST(GCRYPT_LIBS)
1937 AM_CONDITIONAL(BUILD_WITH_LIBGCRYPT, test "x$with_libgcrypt" = "xyes")
1938 # }}}
1939
1940 # --with-libiptc {{{
1941 AC_ARG_WITH(libiptc, [AS_HELP_STRING([--with-libiptc@<:@=PREFIX@:>@], [Path to libiptc.])],
1942 [
1943         if test "x$withval" = "xshipped"
1944         then
1945                 with_libiptc="own"
1946         else if test "x$withval" = "xyes"
1947         then
1948                 with_libiptc="pkgconfig"
1949         else if test "x$withval" = "xno"
1950         then
1951                 with_libiptc="no"
1952         else
1953                 with_libiptc="yes"
1954                 with_libiptc_cflags="-I$withval/include"
1955                 with_libiptc_libs="-L$withval/lib"
1956         fi; fi; fi
1957 ],
1958 [
1959         if test "x$ac_system" = "xLinux"
1960         then
1961                 with_libiptc="pkgconfig"
1962         else
1963                 with_libiptc="no (Linux only)"
1964         fi
1965 ])
1966
1967 if test "x$with_libiptc" = "xpkgconfig" && test "x$PKG_CONFIG" = "x"
1968 then
1969         with_libiptc="no (Don't have pkg-config)"
1970 fi
1971
1972 if test "x$with_libiptc" = "xpkgconfig"
1973 then
1974         $PKG_CONFIG --exists 'libiptc' 2>/dev/null
1975         if test $? -ne 0
1976         then
1977                 with_libiptc="no (pkg-config doesn't know libiptc)"
1978         fi
1979 fi
1980 if test "x$with_libiptc" = "xpkgconfig"
1981 then
1982         with_libiptc_cflags="`$PKG_CONFIG --cflags 'libiptc'`"
1983         if test $? -ne 0
1984         then
1985                 with_libiptc="no ($PKG_CONFIG failed)"
1986         fi
1987         with_libiptc_libs="`$PKG_CONFIG --libs 'libiptc'`"
1988         if test $? -ne 0
1989         then
1990                 with_libiptc="no ($PKG_CONFIG failed)"
1991         fi
1992 fi
1993
1994 SAVE_CPPFLAGS="$CPPFLAGS"
1995 CPPFLAGS="$CPPFLAGS $with_libiptc_cflags"
1996
1997 # check whether the header file for libiptc is available.
1998 if test "x$with_libiptc" = "xpkgconfig"
1999 then
2000         AC_CHECK_HEADERS(libiptc/libiptc.h libiptc/libip6tc.h, ,
2001                         [with_libiptc="no (header file missing)"])
2002 fi
2003 # If the header file is available, check for the required type declaractions.
2004 # They may be missing in old versions of libiptc. In that case, they will be
2005 # declared in the iptables plugin.
2006 if test "x$with_libiptc" = "xpkgconfig"
2007 then
2008         AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
2009 fi
2010 # Check for the iptc_init symbol in the library.
2011 # This could be in iptc or ip4tc
2012 if test "x$with_libiptc" = "xpkgconfig"
2013 then
2014         SAVE_LIBS="$LIBS"
2015         AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
2016                         [with_libiptc="pkgconfig"],
2017                         [with_libiptc="no"],
2018                         [$with_libiptc_libs])
2019         LIBS="$SAVE_LIBS"
2020 fi
2021 if test "x$with_libiptc" = "xpkgconfig"
2022 then
2023         with_libiptc="yes"
2024 fi
2025
2026 CPPFLAGS="$SAVE_CPPFLAGS"
2027
2028 if test "x$with_libiptc" = "xown"
2029 then
2030         with_libiptc_cflags=""
2031         with_libiptc_libs=""
2032 fi
2033 if test "x$with_libiptc" = "xown"
2034 then
2035         AC_CHECK_HEADERS(linux/netfilter_ipv4/ip_tables.h linux/netfilter_ipv6/ip6_tables.h linux/netfilter/x_tables.h, [],
2036         [
2037                 with_libiptc="no (Linux iptables headers not found)"
2038         ],
2039         [
2040 #include "$srcdir/src/owniptc/ipt_kernel_headers.h"
2041         ])
2042 fi
2043 AM_CONDITIONAL(BUILD_WITH_OWN_LIBIPTC, test "x$with_libiptc" = "xown")
2044 if test "x$with_libiptc" = "xown"
2045 then
2046         AC_DEFINE(OWN_LIBIPTC, 1, [Define to 1 if we use the shipped iptc library.])
2047         with_libiptc="yes"
2048 fi
2049
2050 AM_CONDITIONAL(BUILD_WITH_LIBIPTC, test "x$with_libiptc" = "xyes")
2051 if test "x$with_libiptc" = "xyes"
2052 then
2053         BUILD_WITH_LIBIPTC_CPPFLAGS="$with_libiptc_cflags"
2054         BUILD_WITH_LIBIPTC_LDFLAGS="$with_libiptc_libs"
2055         AC_SUBST(BUILD_WITH_LIBIPTC_CPPFLAGS)
2056         AC_SUBST(BUILD_WITH_LIBIPTC_LDFLAGS)
2057 fi
2058 # }}}
2059
2060 # --with-java {{{
2061 with_java_home="$JAVA_HOME"
2062 with_java_vmtype="client"
2063 with_java_cflags=""
2064 with_java_libs=""
2065 JAVAC="$JAVAC"
2066 JAR="$JAR"
2067 AC_ARG_WITH(java, [AS_HELP_STRING([--with-java@<:@=PREFIX@:>@], [Path to Java home.])],
2068 [
2069         if test "x$withval" = "xno"
2070         then
2071                 with_java="no"
2072         else if test "x$withval" = "xyes"
2073         then
2074                 with_java="yes"
2075         else
2076                 with_java_home="$withval"
2077                 with_java="yes"
2078         fi; fi
2079 ],
2080 [with_java="yes"])
2081 if test "x$with_java" = "xyes"
2082 then
2083         if test -d "$with_java_home"
2084         then
2085                 AC_MSG_CHECKING([for jni.h])
2086                 TMPVAR=`find "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2087                 if test "x$TMPVAR" != "x"
2088                 then
2089                         AC_MSG_RESULT([found in $TMPVAR])
2090                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2091                 else
2092                         AC_MSG_RESULT([not found])
2093                 fi
2094
2095                 AC_MSG_CHECKING([for jni_md.h])
2096                 TMPVAR=`find "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2097                 if test "x$TMPVAR" != "x"
2098                 then
2099                         AC_MSG_RESULT([found in $TMPVAR])
2100                         JAVA_CPPFLAGS="$JAVA_CPPFLAGS -I$TMPVAR"
2101                 else
2102                         AC_MSG_RESULT([not found])
2103                 fi
2104
2105                 AC_MSG_CHECKING([for libjvm.so])
2106                 TMPVAR=`find "$with_java_home" -name libjvm.so -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
2107                 if test "x$TMPVAR" != "x"
2108                 then
2109                         AC_MSG_RESULT([found in $TMPVAR])
2110                         JAVA_LDFLAGS="$JAVA_LDFLAGS -L$TMPVAR -Wl,-rpath -Wl,$TMPVAR"
2111                 else
2112                         AC_MSG_RESULT([not found])
2113                 fi
2114
2115                 if test "x$JAVAC" = "x"
2116                 then
2117                         AC_MSG_CHECKING([for javac])
2118                         TMPVAR=`find "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
2119                         if test "x$TMPVAR" != "x"
2120                         then
2121                                 JAVAC="$TMPVAR"
2122                                 AC_MSG_RESULT([$JAVAC])
2123                         else
2124                                 AC_MSG_RESULT([not found])
2125                         fi
2126                 fi
2127                 if test "x$JAR" = "x"
2128                 then
2129                         AC_MSG_CHECKING([for jar])
2130                         TMPVAR=`find "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
2131                         if test "x$TMPVAR" != "x"
2132                         then
2133                                 JAR="$TMPVAR"
2134                                 AC_MSG_RESULT([$JAR])
2135                         else
2136                                 AC_MSG_RESULT([not found])
2137                         fi
2138                 fi
2139         else if test "x$with_java_home" != "x"
2140         then
2141                 AC_MSG_WARN([JAVA_HOME: No such directory: $with_java_home])
2142         fi; fi
2143 fi
2144
2145 if test "x$JAVA_CPPFLAGS" != "x"
2146 then
2147         AC_MSG_NOTICE([Building with JAVA_CPPFLAGS set to: $JAVA_CPPFLAGS])
2148 fi
2149 if test "x$JAVA_CFLAGS" != "x"
2150 then
2151         AC_MSG_NOTICE([Building with JAVA_CFLAGS set to: $JAVA_CFLAGS])
2152 fi
2153 if test "x$JAVA_LDFLAGS" != "x"
2154 then
2155         AC_MSG_NOTICE([Building with JAVA_LDFLAGS set to: $JAVA_LDFLAGS])
2156 fi
2157 if test "x$JAVAC" = "x"
2158 then
2159         with_javac_path="$PATH"
2160         if test "x$with_java_home" != "x"
2161         then
2162                 with_javac_path="$with_java_home:with_javac_path"
2163                 if test -d "$with_java_home/bin"
2164                 then
2165                         with_javac_path="$with_java_home/bin:with_javac_path"
2166                 fi
2167         fi
2168
2169         AC_PATH_PROG(JAVAC, javac, [], "$with_javac_path")
2170 fi
2171 if test "x$JAVAC" = "x"
2172 then
2173         with_java="no (javac not found)"
2174 fi
2175 if test "x$JAR" = "x"
2176 then
2177         with_jar_path="$PATH"
2178         if test "x$with_java_home" != "x"
2179         then
2180                 with_jar_path="$with_java_home:$with_jar_path"
2181                 if test -d "$with_java_home/bin"
2182                 then
2183                         with_jar_path="$with_java_home/bin:$with_jar_path"
2184                 fi
2185         fi
2186
2187         AC_PATH_PROG(JAR, jar, [], "$with_jar_path")
2188 fi
2189 if test "x$JAR" = "x"
2190 then
2191         with_java="no (jar not found)"
2192 fi
2193
2194 SAVE_CPPFLAGS="$CPPFLAGS"
2195 SAVE_CFLAGS="$CFLAGS"
2196 SAVE_LDFLAGS="$LDFLAGS"
2197 CPPFLAGS="$CPPFLAGS $JAVA_CPPFLAGS"
2198 CFLAGS="$CFLAGS $JAVA_CFLAGS"
2199 LDFLAGS="$LDFLAGS $JAVA_LDFLAGS"
2200
2201 if test "x$with_java" = "xyes"
2202 then
2203         AC_CHECK_HEADERS(jni.h, [], [with_java="no (jni.h not found)"])
2204 fi
2205 if test "x$with_java" = "xyes"
2206 then
2207         AC_CHECK_LIB(jvm, JNI_CreateJavaVM,
2208         [with_java="yes"],
2209         [with_java="no (libjvm not found)"],
2210         [$JAVA_LIBS])
2211 fi
2212 if test "x$with_java" = "xyes"
2213 then
2214         JAVA_LIBS="$JAVA_LIBS -ljvm"
2215         AC_MSG_NOTICE([Building with JAVA_LIBS set to: $JAVA_LIBS])
2216 fi
2217
2218 CPPFLAGS="$SAVE_CPPFLAGS"
2219 CFLAGS="$SAVE_CFLAGS"
2220 LDFLAGS="$SAVE_LDFLAGS"
2221
2222 AC_SUBST(JAVA_CPPFLAGS)
2223 AC_SUBST(JAVA_CFLAGS)
2224 AC_SUBST(JAVA_LDFLAGS)
2225 AC_SUBST(JAVA_LIBS)
2226 AM_CONDITIONAL(BUILD_WITH_JAVA, test "x$with_java" = "xyes")
2227 # }}}
2228
2229 # --with-liblvm2app {{{
2230 with_liblvm2app_cppflags=""
2231 with_liblvm2app_ldflags=""
2232 AC_ARG_WITH(liblvm2app, [AS_HELP_STRING([--with-liblvm2app@<:@=PREFIX@:>@], [Path to liblvm2app.])],
2233 [
2234         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2235         then
2236                 with_liblvm2app_cppflags="-I$withval/include"
2237                 with_liblvm2app_ldflags="-L$withval/lib"
2238                 with_liblvm2app="yes"
2239         else
2240                 with_liblvm2app="$withval"
2241         fi
2242 ],
2243 [
2244         with_liblvm2app="yes"
2245 ])
2246 if test "x$with_liblvm2app" = "xyes"
2247 then
2248         SAVE_CPPFLAGS="$CPPFLAGS"
2249         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2250
2251         AC_CHECK_HEADERS(lvm2app.h, [with_liblvm2app="yes"], [with_liblvm2app="no (lvm2app.h not found)"])
2252
2253         CPPFLAGS="$SAVE_CPPFLAGS"
2254 fi
2255
2256 if test "x$with_liblvm2app" = "xyes"
2257 then
2258         SAVE_CPPFLAGS="$CPPFLAGS"
2259         SAVE_LDFLAGS="$LDFLAGS"
2260         CPPFLAGS="$CPPFLAGS $with_liblvm2app_cppflags"
2261         LDFLAGS="$LDFLAGS $with_liblvm2app_ldflags"
2262
2263         AC_CHECK_LIB(lvm2app, lvm_init, [with_liblvm2app="yes"], [with_liblvm2app="no (Symbol 'lvm_init' not found)"])
2264
2265         CPPFLAGS="$SAVE_CPPFLAGS"
2266         LDFLAGS="$SAVE_LDFLAGS"
2267 fi
2268 if test "x$with_liblvm2app" = "xyes"
2269 then
2270         BUILD_WITH_LIBLVM2APP_CPPFLAGS="$with_liblvm2app_cppflags"
2271         BUILD_WITH_LIBLVM2APP_LDFLAGS="$with_liblvm2app_ldflags"
2272         BUILD_WITH_LIBLVM2APP_LIBS="-llvm2app"
2273         AC_SUBST(BUILD_WITH_LIBLVM2APP_CPPFLAGS)
2274         AC_SUBST(BUILD_WITH_LIBLVM2APP_LDFLAGS)
2275         AC_SUBST(BUILD_WITH_LIBLVM2APP_LIBS)
2276         AC_DEFINE(HAVE_LIBLVM2APP, 1, [Define if liblvm2app is present and usable.])
2277 fi
2278 AM_CONDITIONAL(BUILD_WITH_LIBLVM2APP, test "x$with_liblvm2app" = "xyes")
2279 # }}}
2280
2281 # --with-libmemcached {{{
2282 with_libmemcached_cppflags=""
2283 with_libmemcached_ldflags=""
2284 AC_ARG_WITH(libmemcached, [AS_HELP_STRING([--with-libmemcached@<:@=PREFIX@:>@], [Path to libmemcached.])],
2285 [
2286         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2287         then
2288                 with_libmemcached_cppflags="-I$withval/include"
2289                 with_libmemcached_ldflags="-L$withval/lib"
2290                 with_libmemcached="yes"
2291         else
2292                 with_libmemcached="$withval"
2293         fi
2294 ],
2295 [
2296         with_libmemcached="yes"
2297 ])
2298 if test "x$with_libmemcached" = "xyes"
2299 then
2300         SAVE_CPPFLAGS="$CPPFLAGS"
2301         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2302
2303         AC_CHECK_HEADERS(libmemcached/memcached.h, [with_libmemcached="yes"], [with_libmemcached="no (libmemcached/memcached.h not found)"])
2304
2305         CPPFLAGS="$SAVE_CPPFLAGS"
2306 fi
2307 if test "x$with_libmemcached" = "xyes"
2308 then
2309         SAVE_CPPFLAGS="$CPPFLAGS"
2310         SAVE_LDFLAGS="$LDFLAGS"
2311         CPPFLAGS="$CPPFLAGS $with_libmemcached_cppflags"
2312         LDFLAGS="$LDFLAGS $with_libmemcached_ldflags"
2313
2314         AC_CHECK_LIB(memcached, memcached_create, [with_libmemcached="yes"], [with_libmemcached="no (Symbol 'memcached_create' not found)"])
2315
2316         CPPFLAGS="$SAVE_CPPFLAGS"
2317         LDFLAGS="$SAVE_LDFLAGS"
2318 fi
2319 if test "x$with_libmemcached" = "xyes"
2320 then
2321         BUILD_WITH_LIBMEMCACHED_CPPFLAGS="$with_libmemcached_cppflags"
2322         BUILD_WITH_LIBMEMCACHED_LDFLAGS="$with_libmemcached_ldflags"
2323         BUILD_WITH_LIBMEMCACHED_LIBS="-lmemcached"
2324         AC_SUBST(BUILD_WITH_LIBMEMCACHED_CPPFLAGS)
2325         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LDFLAGS)
2326         AC_SUBST(BUILD_WITH_LIBMEMCACHED_LIBS)
2327         AC_DEFINE(HAVE_LIBMEMCACHED, 1, [Define if libmemcached is present and usable.])
2328 fi
2329 AM_CONDITIONAL(BUILD_WITH_LIBMEMCACHED, test "x$with_libmemcached" = "xyes")
2330 # }}}
2331
2332 # --with-libmodbus {{{
2333 with_libmodbus_config=""
2334 with_libmodbus_cflags=""
2335 with_libmodbus_libs=""
2336 AC_ARG_WITH(libmodbus, [AS_HELP_STRING([--with-libmodbus@<:@=PREFIX@:>@], [Path to the modbus library.])],
2337 [
2338         if test "x$withval" = "xno"
2339         then
2340                 with_libmodbus="no"
2341         else if test "x$withval" = "xyes"
2342         then
2343                 with_libmodbus="use_pkgconfig"
2344         else if test -d "$with_libmodbus/lib"
2345         then
2346                 AC_MSG_NOTICE([Not checking for libmodbus: Manually configured])
2347                 with_libmodbus_cflags="-I$withval/include"
2348                 with_libmodbus_libs="-L$withval/lib -lmodbus"
2349                 with_libmodbus="yes"
2350         fi; fi; fi
2351 ],
2352 [with_libmodbus="use_pkgconfig"])
2353
2354 # configure using pkg-config
2355 if test "x$with_libmodbus" = "xuse_pkgconfig"
2356 then
2357         if test "x$PKG_CONFIG" = "x"
2358         then
2359                 with_libmodbus="no (Don't have pkg-config)"
2360         fi
2361 fi
2362 if test "x$with_libmodbus" = "xuse_pkgconfig"
2363 then
2364         AC_MSG_NOTICE([Checking for libmodbus using $PKG_CONFIG])
2365         $PKG_CONFIG --exists 'libmodbus' 2>/dev/null
2366         if test $? -ne 0
2367         then
2368                 with_libmodbus="no (pkg-config doesn't know libmodbus)"
2369         fi
2370 fi
2371 if test "x$with_libmodbus" = "xuse_pkgconfig"
2372 then
2373         with_libmodbus_cflags="`$PKG_CONFIG --cflags 'libmodbus'`"
2374         if test $? -ne 0
2375         then
2376                 with_libmodbus="no ($PKG_CONFIG failed)"
2377         fi
2378         with_libmodbus_libs="`$PKG_CONFIG --libs 'libmodbus'`"
2379         if test $? -ne 0
2380         then
2381                 with_libmodbus="no ($PKG_CONFIG failed)"
2382         fi
2383 fi
2384 if test "x$with_libmodbus" = "xuse_pkgconfig"
2385 then
2386         with_libmodbus="yes"
2387 fi
2388
2389 # with_libmodbus_cflags and with_libmodbus_libs are set up now, let's do
2390 # the actual checks.
2391 if test "x$with_libmodbus" = "xyes"
2392 then
2393         SAVE_CPPFLAGS="$CPPFLAGS"
2394         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2395
2396         AC_CHECK_HEADERS(modbus/modbus.h, [], [with_libmodbus="no (modbus/modbus.h not found)"])
2397
2398         CPPFLAGS="$SAVE_CPPFLAGS"
2399 fi
2400 if test "x$with_libmodbus" = "xyes"
2401 then
2402         SAVE_CPPFLAGS="$CPPFLAGS"
2403         SAVE_LDFLAGS="$LDFLAGS"
2404
2405         CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
2406         LDFLAGS="$LDFLAGS $with_libmodbus_libs"
2407
2408         AC_CHECK_LIB(modbus, modbus_connect,
2409                      [with_libmodbus="yes"],
2410                      [with_libmodbus="no (symbol modbus_connect not found)"])
2411
2412         CPPFLAGS="$SAVE_CPPFLAGS"
2413         LDFLAGS="$SAVE_LDFLAGS"
2414 fi
2415 if test "x$with_libmodbus" = "xyes"
2416 then
2417         BUILD_WITH_LIBMODBUS_CFLAGS="$with_libmodbus_cflags"
2418         BUILD_WITH_LIBMODBUS_LIBS="$with_libmodbus_libs"
2419         AC_SUBST(BUILD_WITH_LIBMODBUS_CFLAGS)
2420         AC_SUBST(BUILD_WITH_LIBMODBUS_LIBS)
2421 fi
2422 # }}}
2423
2424 # --with-libmongoc {{{
2425 AC_ARG_WITH(libmongoc, [AS_HELP_STRING([--with-libmongoc@<:@=PREFIX@:>@], [Path to libmongoc.])],
2426 [
2427  if test "x$withval" = "xyes"
2428  then
2429          with_libmongoc="yes"
2430  else if test "x$withval" = "xno"
2431  then
2432          with_libmongoc="no"
2433  else
2434          with_libmongoc="yes"
2435          LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS -I$withval/include"
2436          LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS -L$withval/lib"
2437  fi; fi
2438 ],
2439 [with_libmongoc="yes"])
2440
2441 SAVE_CPPFLAGS="$CPPFLAGS"
2442 SAVE_LDFLAGS="$LDFLAGS"
2443
2444 CPPFLAGS="$CPPFLAGS $LIBMONGOC_CPPFLAGS"
2445 LDFLAGS="$LDFLAGS $LIBMONGOC_LDFLAGS"
2446
2447 if test "x$with_libmongoc" = "xyes"
2448 then
2449         if test "x$LIBMONGOC_CPPFLAGS" != "x"
2450         then
2451                 AC_MSG_NOTICE([libmongoc CPPFLAGS: $LIBMONGOC_CPPFLAGS])
2452         fi
2453         AC_CHECK_HEADERS(mongo.h,
2454         [with_libmongoc="yes"],
2455         [with_libmongoc="no ('mongo.h' not found)"],
2456 [#if HAVE_STDINT_H
2457 # define MONGO_HAVE_STDINT 1
2458 #else
2459 # define MONGO_USE_LONG_LONG_INT 1
2460 #endif
2461 ])
2462 fi
2463 if test "x$with_libmongoc" = "xyes"
2464 then
2465         if test "x$LIBMONGOC_LDFLAGS" != "x"
2466         then
2467                 AC_MSG_NOTICE([libmongoc LDFLAGS: $LIBMONGOC_LDFLAGS])
2468         fi
2469         AC_CHECK_LIB(mongoc, mongo_run_command,
2470         [with_libmongoc="yes"],
2471         [with_libmongoc="no (symbol 'mongo_run_command' not found)"])
2472 fi
2473
2474 CPPFLAGS="$SAVE_CPPFLAGS"
2475 LDFLAGS="$SAVE_LDFLAGS"
2476
2477 if test "x$with_libmongoc" = "xyes"
2478 then
2479         BUILD_WITH_LIBMONGOC_CPPFLAGS="$LIBMONGOC_CPPFLAGS"
2480         BUILD_WITH_LIBMONGOC_LDFLAGS="$LIBMONGOC_LDFLAGS"
2481         AC_SUBST(BUILD_WITH_LIBMONGOC_CPPFLAGS)
2482         AC_SUBST(BUILD_WITH_LIBMONGOC_LDFLAGS)
2483 fi
2484 AM_CONDITIONAL(BUILD_WITH_LIBMONGOC, test "x$with_libmongoc" = "xyes")
2485 # }}}
2486
2487 # --with-libmysql {{{
2488 with_mysql_config="mysql_config"
2489 with_mysql_cflags=""
2490 with_mysql_libs=""
2491 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
2492 [
2493         if test "x$withval" = "xno"
2494         then
2495                 with_libmysql="no"
2496         else if test "x$withval" = "xyes"
2497         then
2498                 with_libmysql="yes"
2499         else
2500                 if test -f "$withval" && test -x "$withval";
2501                 then
2502                         with_mysql_config="$withval"
2503                 else if test -x "$withval/bin/mysql_config"
2504                 then
2505                         with_mysql_config="$withval/bin/mysql_config"
2506                 fi; fi
2507                 with_libmysql="yes"
2508         fi; fi
2509 ],
2510 [
2511         with_libmysql="yes"
2512 ])
2513 if test "x$with_libmysql" = "xyes"
2514 then
2515         with_mysql_cflags=`$with_mysql_config --cflags 2>/dev/null`
2516         mysql_config_status=$?
2517
2518         if test $mysql_config_status -ne 0
2519         then
2520                 with_libmysql="no ($with_mysql_config failed)"
2521         else
2522                 SAVE_CPPFLAGS="$CPPFLAGS"
2523                 CPPFLAGS="$CPPFLAGS $with_mysql_cflags"
2524
2525                 have_mysql_h="no"
2526                 have_mysql_mysql_h="no"
2527                 AC_CHECK_HEADERS(mysql.h, [have_mysql_h="yes"])
2528
2529                 if test "x$have_mysql_h" = "xno"
2530                 then
2531                         AC_CHECK_HEADERS(mysql/mysql.h, [have_mysql_mysql_h="yes"])
2532                 fi
2533
2534                 if test "x$have_mysql_h$have_mysql_mysql_h" = "xnono"
2535                 then
2536                         with_libmysql="no (mysql.h not found)"
2537                 fi
2538
2539                 CPPFLAGS="$SAVE_CPPFLAGS"
2540         fi
2541 fi
2542 if test "x$with_libmysql" = "xyes"
2543 then
2544         with_mysql_libs=`$with_mysql_config --libs_r 2>/dev/null`
2545         mysql_config_status=$?
2546
2547         if test $mysql_config_status -ne 0
2548         then
2549                 with_libmysql="no ($with_mysql_config failed)"
2550         else
2551                 AC_CHECK_LIB(mysqlclient, mysql_init,
2552                  [with_libmysql="yes"],
2553                  [with_libmysql="no (symbol 'mysql_init' not found)"],
2554                  [$with_mysql_libs])
2555
2556                 AC_CHECK_LIB(mysqlclient, mysql_get_server_version,
2557                  [with_libmysql="yes"],
2558                  [with_libmysql="no (symbol 'mysql_get_server_version' not found)"],
2559                  [$with_mysql_libs])
2560         fi
2561 fi
2562 if test "x$with_libmysql" = "xyes"
2563 then
2564         BUILD_WITH_LIBMYSQL_CFLAGS="$with_mysql_cflags"
2565         BUILD_WITH_LIBMYSQL_LIBS="$with_mysql_libs"
2566         AC_SUBST(BUILD_WITH_LIBMYSQL_CFLAGS)
2567         AC_SUBST(BUILD_WITH_LIBMYSQL_LIBS)
2568 fi
2569 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
2570 # }}}
2571
2572 # --with-libmnl {{{
2573 with_libmnl_cflags=""
2574 with_libmnl_libs=""
2575 AC_ARG_WITH(libmnl, [AS_HELP_STRING([--with-libmnl@<:@=PREFIX@:>@], [Path to libmnl.])],
2576 [
2577  echo "libmnl: withval = $withval"
2578  if test "x$withval" = "xyes"
2579  then
2580          with_libmnl="yes"
2581  else if test "x$withval" = "xno"
2582  then
2583          with_libmnl="no"
2584  else
2585          if test -d "$withval/include"
2586          then
2587                  with_libmnl_cflags="-I$withval/include"
2588                  with_libmnl_libs="-L$withval/lib -lmnl"
2589                  with_libmnl="yes"
2590          else
2591                  AC_MSG_ERROR("no such directory: $withval/include")
2592          fi
2593  fi; fi
2594 ],
2595 [
2596  if test "x$ac_system" = "xLinux"
2597  then
2598          with_libmnl="yes"
2599  else
2600          with_libmnl="no (Linux only library)"
2601  fi
2602 ])
2603 if test "x$PKG_CONFIG" = "x"
2604 then
2605         with_libmnl="no (Don't have pkg-config)"
2606 fi
2607 if test "x$with_libmnl" = "xyes"
2608 then
2609         if $PKG_CONFIG --exists libmnl 2>/dev/null; then
2610           with_libmnl_cflags="$with_libmnl_ldflags `$PKG_CONFIG --cflags libmnl`"
2611           with_libmnl_libs="$with_libmnl_libs `$PKG_CONFIG --libs libmnl`"
2612         fi
2613
2614         AC_CHECK_HEADERS(libmnl.h libmnl/libmnl.h,
2615         [
2616          with_libmnl="yes"
2617          break
2618         ], [],
2619 [#include <stdio.h>
2620 #include <sys/types.h>
2621 #include <asm/types.h>
2622 #include <sys/socket.h>
2623 #include <linux/netlink.h>
2624 #include <linux/rtnetlink.h>])
2625         AC_CHECK_HEADERS(linux/gen_stats.h linux/pkt_sched.h, [], [],
2626 [#include <stdio.h>
2627 #include <sys/types.h>
2628 #include <asm/types.h>
2629 #include <sys/socket.h>])
2630
2631         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2632 [[
2633 #include <stdio.h>
2634 #include <sys/types.h>
2635 #include <asm/types.h>
2636 #include <sys/socket.h>
2637 #include <linux/netlink.h>
2638 #include <linux/rtnetlink.h>
2639 ]],
2640 [[
2641 int retval = TCA_STATS2;
2642 return (retval);
2643 ]]
2644         )],
2645         [AC_DEFINE([HAVE_TCA_STATS2], [1], [True if the enum-member TCA_STATS2 exists])])
2646
2647         AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
2648 [[
2649 #include <stdio.h>
2650 #include <sys/types.h>
2651 #include <asm/types.h>
2652 #include <sys/socket.h>
2653 #include <linux/netlink.h>
2654 #include <linux/rtnetlink.h>
2655 ]],
2656 [[
2657 int retval = TCA_STATS;
2658 return (retval);
2659 ]]
2660         )],
2661         [AC_DEFINE([HAVE_TCA_STATS], 1, [True if the enum-member TCA_STATS exists])])
2662 fi
2663 if test "x$with_libmnl" = "xyes"
2664 then
2665         AC_CHECK_LIB(mnl, mnl_nlmsg_get_payload,
2666                      [with_libmnl="yes"],
2667                      [with_libmnl="no (symbol 'mnl_nlmsg_get_payload' not found)"],
2668                      [$with_libmnl_libs])
2669 fi
2670 if test "x$with_libmnl" = "xyes"
2671 then
2672         AC_DEFINE(HAVE_LIBMNL, 1, [Define if libmnl is present and usable.])
2673         BUILD_WITH_LIBMNL_CFLAGS="$with_libmnl_cflags"
2674         BUILD_WITH_LIBMNL_LIBS="$with_libmnl_libs"
2675         AC_SUBST(BUILD_WITH_LIBMNL_CFLAGS)
2676         AC_SUBST(BUILD_WITH_LIBMNL_LIBS)
2677 fi
2678 AM_CONDITIONAL(BUILD_WITH_LIBMNL, test "x$with_libmnl" = "xyes")
2679 # }}}
2680
2681 # --with-libnetapp {{{
2682 AC_ARG_VAR([LIBNETAPP_CPPFLAGS], [C preprocessor flags required to build with libnetapp])
2683 AC_ARG_VAR([LIBNETAPP_LDFLAGS],  [Linker flags required to build with libnetapp])
2684 AC_ARG_VAR([LIBNETAPP_LIBS],     [Other libraries required to link against libnetapp])
2685 LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS"
2686 LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS"
2687 LIBNETAPP_LIBS="$LIBNETAPP_LIBS"
2688 AC_ARG_WITH(libnetapp, [AS_HELP_STRING([--with-libnetapp@<:@=PREFIX@:>@], [Path to libnetapp.])],
2689 [
2690  if test -d "$withval"
2691  then
2692          LIBNETAPP_CPPFLAGS="$LIBNETAPP_CPPFLAGS -I$withval/include"
2693          LIBNETAPP_LDFLAGS="$LIBNETAPP_LDFLAGS -L$withval/lib"
2694          with_libnetapp="yes"
2695  else
2696          with_libnetapp="$withval"
2697  fi
2698 ],
2699 [
2700  with_libnetapp="yes"
2701 ])
2702
2703 SAVE_CPPFLAGS="$CPPFLAGS"
2704 SAVE_LDFLAGS="$LDFLAGS"
2705 CPPFLAGS="$CPPFLAGS $LIBNETAPP_CPPFLAGS"
2706 LDFLAGS="$LDFLAGS $LIBNETAPP_LDFLAGS"
2707
2708 if test "x$with_libnetapp" = "xyes"
2709 then
2710         if test "x$LIBNETAPP_CPPFLAGS" != "x"
2711         then
2712                 AC_MSG_NOTICE([netapp CPPFLAGS: $LIBNETAPP_CPPFLAGS])
2713         fi
2714         AC_CHECK_HEADERS(netapp_api.h,
2715                 [with_libnetapp="yes"],
2716                 [with_libnetapp="no (netapp_api.h not found)"])
2717 fi
2718
2719 if test "x$with_libnetapp" = "xyes"
2720 then
2721         if test "x$LIBNETAPP_LDFLAGS" != "x"
2722         then
2723                 AC_MSG_NOTICE([netapp LDFLAGS: $LIBNETAPP_LDFLAGS])
2724         fi
2725
2726         if test "x$LIBNETAPP_LIBS" = "x"
2727         then
2728                 LIBNETAPP_LIBS="-lpthread -lxml -ladt -lssl -lm -lcrypto -lz"
2729         fi
2730         AC_MSG_NOTICE([netapp LIBS: $LIBNETAPP_LIBS])
2731
2732         AC_CHECK_LIB(netapp, na_server_invoke_elem,
2733                 [with_libnetapp="yes"],
2734                 [with_libnetapp="no (symbol na_server_invoke_elem not found)"],
2735                 [$LIBNETAPP_LIBS])
2736         LIBNETAPP_LIBS="-lnetapp $LIBNETAPP_LIBS"
2737 fi
2738
2739 CPPFLAGS="$SAVE_CPPFLAGS"
2740 LDFLAGS="$SAVE_LDFLAGS"
2741
2742 if test "x$with_libnetapp" = "xyes"
2743 then
2744         AC_DEFINE(HAVE_LIBNETAPP, 1, [Define to 1 if you have the netapp library (-lnetapp).])
2745 fi
2746
2747 AC_SUBST(LIBNETAPP_CPPFLAGS)
2748 AC_SUBST(LIBNETAPP_LDFLAGS)
2749 AC_SUBST(LIBNETAPP_LIBS)
2750 AM_CONDITIONAL(BUILD_WITH_LIBNETAPP, test "x$with_libnetapp" = "xyes")
2751 # }}}
2752
2753 # --with-libnetsnmp {{{
2754 with_snmp_config="net-snmp-config"
2755 with_snmp_cflags=""
2756 with_snmp_libs=""
2757 AC_ARG_WITH(libnetsnmp, [AS_HELP_STRING([--with-libnetsnmp@<:@=PREFIX@:>@], [Path to the Net-SNMPD library.])],
2758 [
2759         if test "x$withval" = "xno"
2760         then
2761                 with_libnetsnmp="no"
2762         else if test "x$withval" = "xyes"
2763         then
2764                 with_libnetsnmp="yes"
2765         else
2766                 if test -x "$withval"
2767                 then
2768                         with_snmp_config="$withval"
2769                         with_libnetsnmp="yes"
2770                 else
2771                         with_snmp_config="$withval/bin/net-snmp-config"
2772                         with_libnetsnmp="yes"
2773                 fi
2774         fi; fi
2775 ],
2776 [with_libnetsnmp="yes"])
2777 if test "x$with_libnetsnmp" = "xyes"
2778 then
2779         with_snmp_cflags=`$with_snmp_config --cflags 2>/dev/null`
2780         snmp_config_status=$?
2781
2782         if test $snmp_config_status -ne 0
2783         then
2784                 with_libnetsnmp="no ($with_snmp_config failed)"
2785         else
2786                 SAVE_CPPFLAGS="$CPPFLAGS"
2787                 CPPFLAGS="$CPPFLAGS $with_snmp_cflags"
2788                 
2789                 AC_CHECK_HEADERS(net-snmp/net-snmp-config.h, [], [with_libnetsnmp="no (net-snmp/net-snmp-config.h not found)"])
2790
2791                 CPPFLAGS="$SAVE_CPPFLAGS"
2792         fi
2793 fi
2794 if test "x$with_libnetsnmp" = "xyes"
2795 then
2796         with_snmp_libs=`$with_snmp_config --libs 2>/dev/null`
2797         snmp_config_status=$?
2798
2799         if test $snmp_config_status -ne 0
2800         then
2801                 with_libnetsnmp="no ($with_snmp_config failed)"
2802         else
2803                 AC_CHECK_LIB(netsnmp, init_snmp,
2804                 [with_libnetsnmp="yes"],
2805                 [with_libnetsnmp="no (libnetsnmp not found)"],
2806                 [$with_snmp_libs])
2807         fi
2808 fi
2809 if test "x$with_libnetsnmp" = "xyes"
2810 then
2811         BUILD_WITH_LIBSNMP_CFLAGS="$with_snmp_cflags"
2812         BUILD_WITH_LIBSNMP_LIBS="$with_snmp_libs"
2813         AC_SUBST(BUILD_WITH_LIBSNMP_CFLAGS)
2814         AC_SUBST(BUILD_WITH_LIBSNMP_LIBS)
2815 fi
2816 AM_CONDITIONAL(BUILD_WITH_LIBNETSNMP, test "x$with_libnetsnmp" = "xyes")
2817 # }}}
2818
2819 # --with-liboconfig {{{
2820 with_own_liboconfig="no"
2821 liboconfig_LDFLAGS="$LDFLAGS"
2822 liboconfig_CPPFLAGS="$CPPFLAGS"
2823 AC_ARG_WITH(liboconfig, [AS_HELP_STRING([--with-liboconfig@<:@=PREFIX@:>@], [Path to liboconfig.])],
2824 [
2825         if test "x$withval" != "xno" && test "x$withval" != "xyes"
2826         then
2827                 if test -d "$withval/lib"
2828                 then
2829                         liboconfig_LDFLAGS="$LDFLAGS -L$withval/lib"
2830                 fi
2831                 if test -d "$withval/include"
2832                 then
2833                         liboconfig_CPPFLAGS="$CPPFLAGS -I$withval/include"
2834                 fi
2835         fi
2836         if test "x$withval" = "xno"
2837         then
2838                 AC_MSG_ERROR("liboconfig is required")
2839         fi
2840 ],
2841 [
2842         with_liboconfig="yes"
2843 ])
2844
2845 save_LDFLAGS="$LDFLAGS"
2846 save_CPPFLAGS="$CPPFLAGS"
2847 LDFLAGS="$liboconfig_LDFLAGS"
2848 CPPFLAGS="$liboconfig_CPPFLAGS"
2849 AC_CHECK_LIB(oconfig, oconfig_parse_fh,
2850 [
2851         with_liboconfig="yes"
2852         with_own_liboconfig="no"
2853 ],
2854 [
2855         with_liboconfig="yes"
2856         with_own_liboconfig="yes"
2857         LDFLAGS="$save_LDFLAGS"
2858         CPPFLAGS="$save_CPPFLAGS"
2859 ])
2860
2861 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOCONFIG, test "x$with_own_liboconfig" = "xyes")
2862 if test "x$with_own_liboconfig" = "xyes"
2863 then
2864         with_liboconfig="yes (shipped version)"
2865 fi
2866 # }}}
2867
2868 # --with-liboping {{{
2869 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
2870 [
2871  if test "x$withval" = "xyes"
2872  then
2873          with_liboping="yes"
2874  else if test "x$withval" = "xno"
2875  then
2876          with_liboping="no"
2877  else
2878          with_liboping="yes"
2879          LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS -I$withval/include"
2880          LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS -L$withval/lib"
2881  fi; fi
2882 ],
2883 [with_liboping="yes"])
2884
2885 SAVE_CPPFLAGS="$CPPFLAGS"
2886 SAVE_LDFLAGS="$LDFLAGS"
2887
2888 CPPFLAGS="$CPPFLAGS $LIBOPING_CPPFLAGS"
2889 LDFLAGS="$LDFLAGS $LIBOPING_LDFLAGS"
2890
2891 if test "x$with_liboping" = "xyes"
2892 then
2893         if test "x$LIBOPING_CPPFLAGS" != "x"
2894         then
2895                 AC_MSG_NOTICE([liboping CPPFLAGS: $LIBOPING_CPPFLAGS])
2896         fi
2897         AC_CHECK_HEADERS(oping.h,
2898         [with_liboping="yes"],
2899         [with_liboping="no (oping.h not found)"])
2900 fi
2901 if test "x$with_liboping" = "xyes"
2902 then
2903         if test "x$LIBOPING_LDFLAGS" != "x"
2904         then
2905                 AC_MSG_NOTICE([liboping LDFLAGS: $LIBOPING_LDFLAGS])
2906         fi
2907         AC_CHECK_LIB(oping, ping_construct,
2908         [with_liboping="yes"],
2909         [with_liboping="no (symbol 'ping_construct' not found)"])
2910 fi
2911
2912 CPPFLAGS="$SAVE_CPPFLAGS"
2913 LDFLAGS="$SAVE_LDFLAGS"
2914
2915 if test "x$with_liboping" = "xyes"
2916 then
2917         BUILD_WITH_LIBOPING_CPPFLAGS="$LIBOPING_CPPFLAGS"
2918         BUILD_WITH_LIBOPING_LDFLAGS="$LIBOPING_LDFLAGS"
2919         AC_SUBST(BUILD_WITH_LIBOPING_CPPFLAGS)
2920         AC_SUBST(BUILD_WITH_LIBOPING_LDFLAGS)
2921 fi
2922 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
2923 # }}}
2924
2925 # --with-oracle {{{
2926 with_oracle_cppflags=""
2927 with_oracle_libs=""
2928 AC_ARG_WITH(oracle, [AS_HELP_STRING([--with-oracle@<:@=ORACLE_HOME@:>@], [Path to Oracle.])],
2929 [
2930         if test "x$withval" = "xyes"
2931         then
2932                 if test "x$ORACLE_HOME" = "x"
2933                 then
2934                         AC_MSG_WARN([Use of the Oracle library has been forced, but the environment variable ORACLE_HOME is not set.])
2935                 fi
2936                 with_oracle="yes"
2937         else if test "x$withval" = "xno"
2938         then
2939                 with_oracle="no"
2940         else
2941                 with_oracle="yes"
2942                 ORACLE_HOME="$withval"
2943         fi; fi
2944 ],
2945 [
2946         if test "x$ORACLE_HOME" = "x"
2947         then
2948                 with_oracle="no (ORACLE_HOME is not set)"
2949         else
2950                 with_oracle="yes"
2951         fi
2952 ])
2953 if test "x$ORACLE_HOME" != "x"
2954 then
2955         with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"
2956
2957         if test -e "$ORACLE_HOME/lib/ldflags"
2958         then
2959                 with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`
2960         fi
2961         #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"
2962         with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"
2963 fi
2964 if test "x$with_oracle" = "xyes"
2965 then
2966         SAVE_CPPFLAGS="$CPPFLAGS"
2967         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2968
2969         AC_CHECK_HEADERS(oci.h, [with_oracle="yes"], [with_oracle="no (oci.h not found)"])
2970
2971         CPPFLAGS="$SAVE_CPPFLAGS"
2972 fi
2973 if test "x$with_oracle" = "xyes"
2974 then
2975         SAVE_CPPFLAGS="$CPPFLAGS"
2976         SAVE_LDFLAGS="$LDFLAGS"
2977         CPPFLAGS="$CPPFLAGS $with_oracle_cppflags"
2978         LDFLAGS="$LDFLAGS $with_oracle_libs"
2979
2980         AC_CHECK_FUNC(OCIEnvCreate, [with_oracle="yes"], [with_oracle="no (Symbol 'OCIEnvCreate' not found)"])
2981
2982         CPPFLAGS="$SAVE_CPPFLAGS"
2983         LDFLAGS="$SAVE_LDFLAGS"
2984 fi
2985 if test "x$with_oracle" = "xyes"
2986 then
2987         BUILD_WITH_ORACLE_CFLAGS="$with_oracle_cppflags"
2988         BUILD_WITH_ORACLE_LIBS="$with_oracle_libs"
2989         AC_SUBST(BUILD_WITH_ORACLE_CFLAGS)
2990         AC_SUBST(BUILD_WITH_ORACLE_LIBS)
2991 fi
2992 # }}}
2993
2994 # --with-libowcapi {{{
2995 with_libowcapi_cppflags=""
2996 with_libowcapi_libs="-lowcapi"
2997 AC_ARG_WITH(libowcapi, [AS_HELP_STRING([--with-libowcapi@<:@=PREFIX@:>@], [Path to libowcapi.])],
2998 [
2999         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3000         then
3001                 with_libowcapi_cppflags="-I$withval/include"
3002                 with_libowcapi_libs="-L$withval/lib -lowcapi"
3003                 with_libowcapi="yes"
3004         else
3005                 with_libowcapi="$withval"
3006         fi
3007 ],
3008 [
3009         with_libowcapi="yes"
3010 ])
3011 if test "x$with_libowcapi" = "xyes"
3012 then
3013         SAVE_CPPFLAGS="$CPPFLAGS"
3014         CPPFLAGS="$with_libowcapi_cppflags"
3015         
3016         AC_CHECK_HEADERS(owcapi.h, [with_libowcapi="yes"], [with_libowcapi="no (owcapi.h not found)"])
3017
3018         CPPFLAGS="$SAVE_CPPFLAGS"
3019 fi
3020 if test "x$with_libowcapi" = "xyes"
3021 then
3022         SAVE_LDFLAGS="$LDFLAGS"
3023         SAVE_CPPFLAGS="$CPPFLAGS"
3024         LDFLAGS="$with_libowcapi_libs"
3025         CPPFLAGS="$with_libowcapi_cppflags"
3026         
3027         AC_CHECK_LIB(owcapi, OW_get, [with_libowcapi="yes"], [with_libowcapi="no (libowcapi not found)"])
3028
3029         LDFLAGS="$SAVE_LDFLAGS"
3030         CPPFLAGS="$SAVE_CPPFLAGS"
3031 fi
3032 if test "x$with_libowcapi" = "xyes"
3033 then
3034         BUILD_WITH_LIBOWCAPI_CPPFLAGS="$with_libowcapi_cppflags"
3035         BUILD_WITH_LIBOWCAPI_LIBS="$with_libowcapi_libs"
3036         AC_SUBST(BUILD_WITH_LIBOWCAPI_CPPFLAGS)
3037         AC_SUBST(BUILD_WITH_LIBOWCAPI_LIBS)
3038 fi
3039 # }}}
3040
3041 # --with-libpcap {{{
3042 AC_ARG_WITH(libpcap, [AS_HELP_STRING([--with-libpcap@<:@=PREFIX@:>@], [Path to libpcap.])],
3043 [
3044         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3045         then
3046                 LDFLAGS="$LDFLAGS -L$withval/lib"
3047                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3048                 with_libpcap="yes"
3049         else
3050                 with_libpcap="$withval"
3051         fi
3052 ],
3053 [
3054         with_libpcap="yes"
3055 ])
3056 if test "x$with_libpcap" = "xyes"
3057 then
3058         AC_CHECK_LIB(pcap, pcap_open_live,
3059         [
3060                 AC_DEFINE(HAVE_LIBPCAP, 1, [Define to 1 if you have the pcap library (-lpcap).])
3061         ], [with_libpcap="no (libpcap not found)"])
3062 fi
3063 if test "x$with_libpcap" = "xyes"
3064 then
3065         AC_CHECK_HEADERS(pcap.h,,
3066                          [with_libpcap="no (pcap.h not found)"])
3067 fi
3068 if test "x$with_libpcap" = "xyes"
3069 then
3070         AC_CHECK_HEADERS(pcap-bpf.h,,
3071                          [with_libpcap="no (pcap-bpf.h not found)"])
3072 fi
3073 AM_CONDITIONAL(BUILD_WITH_LIBPCAP, test "x$with_libpcap" = "xyes")
3074 # }}}
3075
3076 # --with-libperl {{{
3077 perl_interpreter="perl"
3078 AC_ARG_WITH(libperl, [AS_HELP_STRING([--with-libperl@<:@=PREFIX@:>@], [Path to libperl.])],
3079 [
3080         if test -f "$withval" && test -x "$withval"
3081         then
3082                 perl_interpreter="$withval"
3083                 with_libperl="yes"
3084         else if test "x$withval" != "xno" && test "x$withval" != "xyes"
3085         then
3086                 LDFLAGS="$LDFLAGS -L$withval/lib"
3087                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3088                 perl_interpreter="$withval/bin/perl"
3089                 with_libperl="yes"
3090         else
3091                 with_libperl="$withval"
3092         fi; fi
3093 ],
3094 [
3095         with_libperl="yes"
3096 ])
3097
3098 AC_MSG_CHECKING([for perl])
3099 perl_interpreter=`which "$perl_interpreter" 2> /dev/null`
3100 if test -x "$perl_interpreter"
3101 then
3102         AC_MSG_RESULT([yes ($perl_interpreter)])
3103 else
3104         perl_interpreter=""
3105         AC_MSG_RESULT([no])
3106 fi
3107
3108 AC_SUBST(PERL, "$perl_interpreter")
3109
3110 if test "x$with_libperl" = "xyes" \
3111         && test -n "$perl_interpreter"
3112 then
3113   SAVE_CFLAGS="$CFLAGS"
3114   SAVE_LDFLAGS="$LDFLAGS"
3115 dnl ARCHFLAGS="" -> disable multi -arch on OSX (see Config_heavy.pl:fetch_string)
3116   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ccopts`
3117   PERL_LDFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e ldopts`
3118   CFLAGS="$CFLAGS $PERL_CFLAGS"
3119   LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3120
3121   AC_CACHE_CHECK([for libperl],
3122     [c_cv_have_libperl],
3123     AC_LINK_IFELSE([AC_LANG_PROGRAM(
3124 [[[
3125 #define PERL_NO_GET_CONTEXT
3126 #include <EXTERN.h>
3127 #include <perl.h>
3128 #include <XSUB.h>
3129 ]]],
3130 [[[
3131        dTHX;
3132        load_module (PERL_LOADMOD_NOIMPORT,
3133                          newSVpv ("Collectd::Plugin::FooBar", 24),
3134                          Nullsv);
3135 ]]]
3136       )],
3137       [c_cv_have_libperl="yes"],
3138       [c_cv_have_libperl="no"]
3139     )
3140   )
3141
3142   if test "x$c_cv_have_libperl" = "xyes"
3143   then
3144           AC_DEFINE(HAVE_LIBPERL, 1, [Define if libperl is present and usable.])
3145           AC_SUBST(PERL_CFLAGS)
3146           AC_SUBST(PERL_LDFLAGS)
3147   else
3148           with_libperl="no"
3149   fi
3150
3151   CFLAGS="$SAVE_CFLAGS"
3152   LDFLAGS="$SAVE_LDFLAGS"
3153 else if test -z "$perl_interpreter"; then
3154   with_libperl="no (no perl interpreter found)"
3155   c_cv_have_libperl="no"
3156 fi; fi
3157 AM_CONDITIONAL(BUILD_WITH_LIBPERL, test "x$with_libperl" = "xyes")
3158
3159 if test "x$with_libperl" = "xyes"
3160 then
3161         SAVE_CFLAGS="$CFLAGS"
3162         SAVE_LDFLAGS="$LDFLAGS"
3163         CFLAGS="$CFLAGS $PERL_CFLAGS"
3164         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3165
3166         AC_CACHE_CHECK([if perl supports ithreads],
3167                 [c_cv_have_perl_ithreads],
3168                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3169 [[[
3170 #include <EXTERN.h>
3171 #include <perl.h>
3172 #include <XSUB.h>
3173
3174 #if !defined(USE_ITHREADS)
3175 # error "Perl does not support ithreads!"
3176 #endif /* !defined(USE_ITHREADS) */
3177 ]]],
3178 [[[ ]]]
3179                         )],
3180                         [c_cv_have_perl_ithreads="yes"],
3181                         [c_cv_have_perl_ithreads="no"]
3182                 )
3183         )
3184
3185         if test "x$c_cv_have_perl_ithreads" = "xyes"
3186         then
3187                 AC_DEFINE(HAVE_PERL_ITHREADS, 1, [Define if Perl supports ithreads.])
3188         fi
3189
3190         CFLAGS="$SAVE_CFLAGS"
3191         LDFLAGS="$SAVE_LDFLAGS"
3192 fi
3193
3194 if test "x$with_libperl" = "xyes"
3195 then
3196         SAVE_CFLAGS="$CFLAGS"
3197         SAVE_LDFLAGS="$LDFLAGS"
3198         # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3)
3199         # (see issues #41 and #42)
3200         CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror"
3201         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3202
3203         AC_CACHE_CHECK([for broken Perl_load_module()],
3204                 [c_cv_have_broken_perl_load_module],
3205                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3206 [[[
3207 #define PERL_NO_GET_CONTEXT
3208 #include <EXTERN.h>
3209 #include <perl.h>
3210 #include <XSUB.h>
3211 ]]],
3212 [[[
3213                          dTHX;
3214                          load_module (PERL_LOADMOD_NOIMPORT,
3215                              newSVpv ("Collectd::Plugin::FooBar", 24),
3216                              Nullsv);
3217 ]]]
3218                         )],
3219                         [c_cv_have_broken_perl_load_module="no"],
3220                         [c_cv_have_broken_perl_load_module="yes"]
3221                 )
3222         )
3223
3224         CFLAGS="$SAVE_CFLAGS"
3225         LDFLAGS="$SAVE_LDFLAGS"
3226 fi
3227 AM_CONDITIONAL(HAVE_BROKEN_PERL_LOAD_MODULE,
3228                 test "x$c_cv_have_broken_perl_load_module" = "xyes")
3229
3230 if test "x$with_libperl" = "xyes"
3231 then
3232         SAVE_CFLAGS="$CFLAGS"
3233         SAVE_LDFLAGS="$LDFLAGS"
3234         CFLAGS="$CFLAGS $PERL_CFLAGS"
3235         LDFLAGS="$LDFLAGS $PERL_LDFLAGS"
3236
3237         AC_CHECK_MEMBER(
3238                 [struct mgvtbl.svt_local],
3239                 [have_struct_mgvtbl_svt_local="yes"],
3240                 [have_struct_mgvtbl_svt_local="no"],
3241                 [
3242 #include <EXTERN.h>
3243 #include <perl.h>
3244 #include <XSUB.h>
3245                 ])
3246
3247         if test "x$have_struct_mgvtbl_svt_local" = "xyes"
3248         then
3249                 AC_DEFINE(HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL, 1,
3250                                   [Define if Perl's struct mgvtbl has member svt_local.])
3251         fi
3252
3253         CFLAGS="$SAVE_CFLAGS"
3254         LDFLAGS="$SAVE_LDFLAGS"
3255 fi
3256 # }}}
3257
3258 # --with-libpq {{{
3259 with_pg_config="pg_config"
3260 with_libpq_includedir=""
3261 with_libpq_libdir=""
3262 with_libpq_cppflags=""
3263 with_libpq_ldflags=""
3264 AC_ARG_WITH(libpq, [AS_HELP_STRING([--with-libpq@<:@=PREFIX@:>@],
3265         [Path to libpq.])],
3266 [
3267         if test "x$withval" = "xno"
3268         then
3269                 with_libpq="no"
3270         else if test "x$withval" = "xyes"
3271         then
3272                 with_libpq="yes"
3273         else
3274                 if test -f "$withval" && test -x "$withval";
3275                 then
3276                         with_pg_config="$withval"
3277                 else if test -x "$withval/bin/pg_config"
3278                 then
3279                         with_pg_config="$withval/bin/pg_config"
3280                 fi; fi
3281                 with_libpq="yes"
3282         fi; fi
3283 ],
3284 [
3285         with_libpq="yes"
3286 ])
3287 if test "x$with_libpq" = "xyes"
3288 then
3289         with_libpq_includedir=`$with_pg_config --includedir 2> /dev/null`
3290         pg_config_status=$?
3291
3292         if test $pg_config_status -eq 0
3293         then
3294                 if test -n "$with_libpq_includedir"; then
3295                         for dir in $with_libpq_includedir; do
3296                                 with_libpq_cppflags="$with_libpq_cppflags -I$dir"
3297                         done
3298                 fi
3299         else
3300                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3301         fi
3302
3303         SAVE_CPPFLAGS="$CPPFLAGS"
3304         CPPFLAGS="$CPPFLAGS $with_libpq_cppflags"
3305
3306         AC_CHECK_HEADERS(libpq-fe.h, [],
3307                 [with_libpq="no (libpq-fe.h not found)"], [])
3308
3309         CPPFLAGS="$SAVE_CPPFLAGS"
3310 fi
3311 if test "x$with_libpq" = "xyes"
3312 then
3313         with_libpq_libdir=`$with_pg_config --libdir 2> /dev/null`
3314         pg_config_status=$?
3315
3316         if test $pg_config_status -eq 0
3317         then
3318                 if test -n "$with_libpq_libdir"; then
3319                         for dir in $with_libpq_libdir; do
3320                                 with_libpq_ldflags="$with_libpq_ldflags -L$dir"
3321                         done
3322                 fi
3323         else
3324                 AC_MSG_WARN([$with_pg_config returned with status $pg_config_status])
3325         fi
3326
3327         SAVE_LDFLAGS="$LDFLAGS"
3328         LDFLAGS="$LDFLAGS $with_libpq_ldflags"
3329
3330         AC_CHECK_LIB(pq, PQconnectdb,
3331                 [with_libpq="yes"],
3332                 [with_libpq="no (symbol 'PQconnectdb' not found)"])
3333
3334         AC_CHECK_LIB(pq, PQserverVersion,
3335                 [with_libpq="yes"],
3336                 [with_libpq="no (symbol 'PQserverVersion' not found)"])
3337
3338         LDFLAGS="$SAVE_LDFLAGS"
3339 fi
3340 if test "x$with_libpq" = "xyes"
3341 then
3342         BUILD_WITH_LIBPQ_CPPFLAGS="$with_libpq_cppflags"
3343         BUILD_WITH_LIBPQ_LDFLAGS="$with_libpq_ldflags"
3344         AC_SUBST(BUILD_WITH_LIBPQ_CPPFLAGS)
3345         AC_SUBST(BUILD_WITH_LIBPQ_LDFLAGS)
3346 fi
3347 AM_CONDITIONAL(BUILD_WITH_LIBPQ, test "x$with_libpq" = "xyes")
3348 # }}}
3349
3350 # --with-libpthread {{{
3351 AC_ARG_WITH(libpthread, [AS_HELP_STRING([--with-libpthread=@<:@=PREFIX@:>@], [Path to libpthread.])],
3352 [       if test "x$withval" != "xno" \
3353                 && test "x$withval" != "xyes"
3354         then
3355                 LDFLAGS="$LDFLAGS -L$withval/lib"
3356                 CPPFLAGS="$CPPFLAGS -I$withval/include"
3357                 with_libpthread="yes"
3358         else
3359                 if test "x$withval" = "xno"
3360                 then
3361                         with_libpthread="no (disabled)"
3362                 fi
3363         fi
3364 ], [with_libpthread="yes"])
3365 if test "x$with_libpthread" = "xyes"
3366 then
3367         AC_CHECK_LIB(pthread, pthread_create, [with_libpthread="yes"], [with_libpthread="no (libpthread not found)"], [])
3368 fi
3369
3370 if test "x$with_libpthread" = "xyes"
3371 then
3372         AC_CHECK_HEADERS(pthread.h,, [with_libpthread="no (pthread.h not found)"])
3373 fi
3374 if test "x$with_libpthread" = "xyes"
3375 then
3376         collect_pthread=1
3377 else
3378         collect_pthread=0
3379 fi
3380 AC_DEFINE_UNQUOTED(HAVE_LIBPTHREAD, [$collect_pthread],
3381         [Wether or not to use pthread (POSIX threads) library])
3382 AM_CONDITIONAL(BUILD_WITH_LIBPTHREAD, test "x$with_libpthread" = "xyes")
3383 # }}}
3384
3385 # --with-python {{{
3386 with_python_prog=""
3387 with_python_path="$PATH"
3388 AC_ARG_WITH(python, [AS_HELP_STRING([--with-python@<:@=PREFIX@:>@], [Path to the python interpreter.])],
3389 [
3390  if test "x$withval" = "xyes" || test "x$withval" = "xno"
3391  then
3392          with_python="$withval"
3393  else if test -x "$withval"
3394  then
3395          with_python_prog="$withval"
3396          with_python_path="`dirname \"$withval\"`$PATH_SEPARATOR$with_python_path"
3397          with_python="yes"
3398  else if test -d "$withval"
3399  then
3400          with_python_path="$withval$PATH_SEPARATOR$with_python_path"
3401          with_python="yes"
3402  else
3403          AC_MSG_WARN([Argument not recognized: $withval])
3404  fi; fi; fi
3405 ], [with_python="yes"])
3406
3407 SAVE_PATH="$PATH"
3408 SAVE_CPPFLAGS="$CPPFLAGS"
3409 SAVE_LDFLAGS="$LDFLAGS"
3410 SAVE_LIBS="$LIBS"
3411
3412 PATH="$with_python_path"
3413
3414 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
3415 then
3416         AC_MSG_CHECKING([for python])
3417         with_python_prog="`which python 2>/dev/null`"
3418         if test "x$with_python_prog" = "x"
3419         then
3420                 AC_MSG_RESULT([not found])
3421                 with_python="no (interpreter not found)"
3422         else
3423                 AC_MSG_RESULT([$with_python_prog])
3424         fi
3425 fi
3426
3427 if test "x$with_python" = "xyes"
3428 then
3429         AC_MSG_CHECKING([for Python CPPFLAGS])
3430         python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
3431         python_config_status=$?
3432
3433         if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
3434         then
3435                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_include_path)])
3436                 with_python="no"
3437         else
3438                 AC_MSG_RESULT([$python_include_path])
3439         fi
3440 fi
3441
3442 if test "x$with_python" = "xyes"
3443 then
3444         CPPFLAGS="-I$python_include_path $CPPFLAGS"
3445         AC_CHECK_HEADERS(Python.h,
3446                          [with_python="yes"],
3447                          [with_python="no ('Python.h' not found)"])
3448 fi
3449
3450 if test "x$with_python" = "xyes"
3451 then
3452         AC_MSG_CHECKING([for Python LDFLAGS])
3453         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`
3454         python_config_status=$?
3455
3456         if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
3457         then
3458                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_path)])
3459                 with_python="no"
3460         else
3461                 AC_MSG_RESULT([$python_library_path])
3462         fi
3463 fi
3464
3465 if test "x$with_python" = "xyes"
3466 then
3467         AC_MSG_CHECKING([for Python LIBS])
3468         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`
3469         python_config_status=$?
3470
3471         if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
3472         then
3473                 AC_MSG_RESULT([failed with status $python_config_status (output: $python_library_flags)])
3474                 with_python="no"
3475         else
3476                 AC_MSG_RESULT([$python_library_flags])
3477         fi
3478 fi
3479
3480 if test "x$with_python" = "xyes"
3481 then
3482         LDFLAGS="-L$python_library_path $LDFLAGS"
3483         LIBS="$python_library_flags $LIBS"
3484
3485         AC_CHECK_FUNC(PyObject_CallFunction,
3486                       [with_python="yes"],
3487                       [with_python="no (Symbol 'PyObject_CallFunction' not found)"])
3488 fi
3489
3490 PATH="$SAVE_PATH"
3491 CPPFLAGS="$SAVE_CPPFLAGS"
3492 LDFLAGS="$SAVE_LDFLAGS"
3493 LIBS="$SAVE_LIBS"
3494
3495 if test "x$with_python" = "xyes"
3496 then
3497         BUILD_WITH_PYTHON_CPPFLAGS="-I$python_include_path"
3498         BUILD_WITH_PYTHON_LDFLAGS="-L$python_library_path"
3499         BUILD_WITH_PYTHON_LIBS="$python_library_flags"
3500         AC_SUBST(BUILD_WITH_PYTHON_CPPFLAGS)
3501         AC_SUBST(BUILD_WITH_PYTHON_LDFLAGS)
3502         AC_SUBST(BUILD_WITH_PYTHON_LIBS)
3503 fi
3504 # }}} --with-python
3505
3506 # --with-librabbitmq {{{
3507 with_librabbitmq_cppflags=""
3508 with_librabbitmq_ldflags=""
3509 AC_ARG_WITH(librabbitmq, [AS_HELP_STRING([--with-librabbitmq@<:@=PREFIX@:>@], [Path to librabbitmq.])],
3510 [
3511         if test "x$withval" != "xno" && test "x$withval" != "xyes"
3512         then
3513                 with_librabbitmq_cppflags="-I$withval/include"
3514                 with_librabbitmq_ldflags="-L$withval/lib"
3515                 with_librabbitmq="yes"
3516         else
3517                 with_librabbitmq="$withval"
3518         fi
3519 ],
3520 [
3521         with_librabbitmq="yes"
3522 ])
3523 SAVE_CPPFLAGS="$CPPFLAGS"
3524 SAVE_LDFLAGS="$LDFLAGS"
3525 CPPFLAGS="$CPPFLAGS $with_librabbitmq_cppflags"
3526 LDFLAGS="$LDFLAGS $with_librabbitmq_ldflags"
3527 if test "x$with_librabbitmq" = "xyes"
3528 then
3529         AC_CHECK_HEADERS(amqp.h, [with_librabbitmq="yes"], [with_librabbitmq="no (amqp.h not found)"])
3530 fi
3531 if test "x$with_librabbitmq" = "xyes"
3532 then
3533         # librabbitmq up to version 0.9.1 provides "library_errno", later
3534         # versions use "library_error". The library does not provide a version
3535         # macro :( Use "AC_CHECK_MEMBERS" (plural) for automatic defines.
3536         AC_CHECK_MEMBERS([amqp_rpc_reply_t.library_errno],,,
3537                          [
3538 #if HAVE_STDLIB_H
3539 # include <stdlib.h>
3540 #endif
3541 #if HAVE_STDIO_H
3542 # include <stdio.h>
3543 #endif
3544 #if HAVE_STDINT_H
3545 # include <stdint.h>
3546 #endif
3547 #if HAVE_INTTYPES_H
3548 # include <inttypes.h>
3549 #endif
3550 #include <amqp.h>
3551                          ])
3552 fi
3553 if test "x$with_librabbitmq" = "xyes"
3554 then
3555         AC_CHECK_LIB(rabbitmq, amqp_basic_publish, [with_librabbitmq="yes"], [with_librabbitmq="no (Symbol 'amqp_basic_publish' not found)"])
3556 fi
3557 if test "x$with_librabbitmq" = "xyes"
3558 then
3559         BUILD_WITH_LIBRABBITMQ_CPPFLAGS="$with_librabbitmq_cppflags"
3560         BUILD_WITH_LIBRABBITMQ_LDFLAGS="$with_librabbitmq_ldflags"
3561         BUILD_WITH_LIBRABBITMQ_LIBS="-lrabbitmq"
3562         AC_SUBST(BUILD_WITH_LIBRABBITMQ_CPPFLAGS)
3563         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LDFLAGS)
3564         AC_SUBST(BUILD_WITH_LIBRABBITMQ_LIBS)
3565         AC_DEFINE(HAVE_LIBRABBITMQ, 1, [Define if librabbitmq is present and usable.])
3566 fi
3567 CPPFLAGS="$SAVE_CPPFLAGS"
3568 LDFLAGS="$SAVE_LDFLAGS"
3569 AM_CONDITIONAL(BUILD_WITH_LIBRABBITMQ, test "x$with_librabbitmq" = "xyes")
3570 # }}}
3571
3572 # --with-librouteros {{{
3573 AC_ARG_WITH(librouteros, [AS_HELP_STRING([--with-librouteros@<:@=PREFIX@:>@], [Path to librouteros.])],
3574 [
3575  if test "x$withval" = "xyes"
3576  then
3577          with_librouteros="yes"
3578  else if test "x$withval" = "xno"
3579  then
3580          with_librouteros="no"
3581  else
3582          with_librouteros="yes"
3583          LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS -I$withval/include"
3584          LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS -L$withval/lib"
3585  fi; fi
3586 ],
3587 [with_librouteros="yes"])
3588
3589 SAVE_CPPFLAGS="$CPPFLAGS"
3590 SAVE_LDFLAGS="$LDFLAGS"
3591
3592 CPPFLAGS="$CPPFLAGS $LIBROUTEROS_CPPFLAGS"
3593 LDFLAGS="$LDFLAGS $LIBROUTEROS_LDFLAGS"
3594
3595 if test "x$with_librouteros" = "xyes"
3596 then
3597         if test "x$LIBROUTEROS_CPPFLAGS" != "x"
3598         then
3599                 AC_MSG_NOTICE([librouteros CPPFLAGS: $LIBROUTEROS_CPPFLAGS])
3600         fi
3601         AC_CHECK_HEADERS(routeros_api.h,
3602         [with_librouteros="yes"],
3603         [with_librouteros="no (routeros_api.h not found)"])
3604 fi
3605 if test "x$with_librouteros" = "xyes"
3606 then
3607         if test "x$LIBROUTEROS_LDFLAGS" != "x"
3608         then
3609                 AC_MSG_NOTICE([librouteros LDFLAGS: $LIBROUTEROS_LDFLAGS])
3610         fi
3611         AC_CHECK_LIB(routeros, ros_interface,
3612         [with_librouteros="yes"],
3613         [with_librouteros="no (symbol 'ros_interface' not found)"])
3614 fi
3615
3616 CPPFLAGS="$SAVE_CPPFLAGS"
3617 LDFLAGS="$SAVE_LDFLAGS"
3618
3619 if test "x$with_librouteros" = "xyes"
3620 then
3621         BUILD_WITH_LIBROUTEROS_CPPFLAGS="$LIBROUTEROS_CPPFLAGS"
3622         BUILD_WITH_LIBROUTEROS_LDFLAGS="$LIBROUTEROS_LDFLAGS"
3623         AC_SUBST(BUILD_WITH_LIBROUTEROS_CPPFLAGS)
3624         AC_SUBST(BUILD_WITH_LIBROUTEROS_LDFLAGS)
3625 fi
3626 AM_CONDITIONAL(BUILD_WITH_LIBROUTEROS, test "x$with_librouteros" = "xyes")
3627 # }}}
3628
3629 # --with-librrd {{{
3630 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
3631 librrd_cflags=""
3632 librrd_ldflags=""
3633 librrd_threadsafe="yes"
3634 librrd_rrdc_update="no"
3635 AC_ARG_WITH(librrd, [AS_HELP_STRING([--with-librrd@<:@=PREFIX@:>@], [Path to rrdtool.])],
3636 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
3637         then
3638                 librrd_cflags="-I$withval/include"
3639                 librrd_ldflags="-L$withval/lib"
3640                 with_librrd="yes"
3641         else
3642                 with_librrd="$withval"
3643         fi
3644 ], [with_librrd="yes"])
3645 if test "x$with_librrd" = "xyes"
3646 then
3647         SAVE_CPPFLAGS="$CPPFLAGS"
3648         SAVE_LDFLAGS="$LDFLAGS"
3649
3650         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3651         LDFLAGS="$LDFLAGS $librrd_ldflags"
3652
3653         AC_CHECK_HEADERS(rrd.h,, [with_librrd="no (rrd.h not found)"])
3654
3655         CPPFLAGS="$SAVE_CPPFLAGS"
3656         LDFLAGS="$SAVE_LDFLAGS"
3657 fi
3658 if test "x$with_librrd" = "xyes"
3659 then
3660         SAVE_CPPFLAGS="$CPPFLAGS"
3661         SAVE_LDFLAGS="$LDFLAGS"
3662
3663         CPPFLAGS="$CPPFLAGS $librrd_cflags"
3664         LDFLAGS="$LDFLAGS $librrd_ldflags"
3665
3666         AC_CHECK_LIB(rrd_th, rrd_update_r,
3667         [with_librrd="yes"
3668          librrd_ldflags="$librrd_ldflags -lrrd_th -lm"
3669         ],
3670         [librrd_threadsafe="no"
3671          AC_CHECK_LIB(rrd, rrd_update,
3672          [with_librrd="yes"
3673           librrd_ldflags="$librrd_ldflags -lrrd -lm"
3674          ],
3675          [with_librrd="no (symbol 'rrd_update' not found)"],
3676          [-lm])
3677         ],
3678         [-lm])
3679
3680         if test "x$librrd_threadsafe" = "xyes"
3681         then
3682                 AC_CHECK_LIB(rrd_th, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3683         else
3684                 AC_CHECK_LIB(rrd, rrdc_update, [librrd_rrdc_update="yes"], [librrd_rrdc_update="no"])
3685         fi
3686
3687         CPPFLAGS="$SAVE_CPPFLAGS"
3688         LDFLAGS="$SAVE_LDFLAGS"
3689 fi
3690 if test "x$with_librrd" = "xyes"
3691 then
3692         BUILD_WITH_LIBRRD_CFLAGS="$librrd_cflags"
3693         BUILD_WITH_LIBRRD_LDFLAGS="$librrd_ldflags"
3694         AC_SUBST(BUILD_WITH_LIBRRD_CFLAGS)
3695         AC_SUBST(BUILD_WITH_LIBRRD_LDFLAGS)
3696 fi
3697 if test "x$librrd_threadsafe" = "xyes"
3698 then
3699         AC_DEFINE(HAVE_THREADSAFE_LIBRRD, 1, [Define to 1 if you have the threadsafe rrd library (-lrrd_th).])
3700 fi
3701 # }}}
3702
3703 # --with-libsensors {{{
3704 with_sensors_cflags=""
3705 with_sensors_ldflags=""
3706 AC_ARG_WITH(libsensors, [AS_HELP_STRING([--with-libsensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
3707 [
3708         if test "x$withval" = "xno"
3709         then
3710                 with_libsensors="no"
3711         else
3712                 with_libsensors="yes"
3713                 if test "x$withval" != "xyes"
3714                 then
3715                         with_sensors_cflags="-I$withval/include"
3716                         with_sensors_ldflags="-L$withval/lib"
3717                         with_libsensors="yes"
3718                 fi
3719         fi
3720 ],
3721 [
3722         if test "x$ac_system" = "xLinux"
3723         then
3724                 with_libsensors="yes"
3725         else
3726                 with_libsensors="no (Linux only library)"
3727         fi
3728 ])
3729 if test "x$with_libsensors" = "xyes"
3730 then
3731         SAVE_CPPFLAGS="$CPPFLAGS"
3732         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3733
3734 #       AC_CHECK_HEADERS(sensors/sensors.h,
3735 #       [
3736 #               AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
3737 #       ],
3738 #       [with_libsensors="no (sensors/sensors.h not found)"])
3739         AC_CHECK_HEADERS(sensors/sensors.h, [], [with_libsensors="no (sensors/sensors.h not found)"])
3740
3741         CPPFLAGS="$SAVE_CPPFLAGS"
3742 fi
3743 if test "x$with_libsensors" = "xyes"
3744 then
3745         SAVE_CPPFLAGS="$CPPFLAGS"
3746         SAVE_LDFLAGS="$LDFLAGS"
3747         CPPFLAGS="$CPPFLAGS $with_sensors_cflags"
3748         LDFLAGS="$LDFLAGS $with_sensors_ldflags"
3749
3750         AC_CHECK_LIB(sensors, sensors_init,
3751         [
3752                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
3753         ],
3754         [with_libsensors="no (libsensors not found)"])
3755
3756         CPPFLAGS="$SAVE_CPPFLAGS"
3757         LDFLAGS="$SAVE_LDFLAGS"
3758 fi
3759 if test "x$with_libsensors" = "xyes"
3760 then
3761         BUILD_WITH_LIBSENSORS_CFLAGS="$with_sensors_cflags"
3762         BUILD_WITH_LIBSENSORS_LDFLAGS="$with_sensors_ldflags"
3763         AC_SUBST(BUILD_WITH_LIBSENSORS_CFLAGS)
3764         AC_SUBST(BUILD_WITH_LIBSENSORS_LDFLAGS)
3765 fi
3766 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_libsensors" = "xyes")
3767 # }}}
3768
3769 # --with-libsigrok {{{
3770 with_libsigrok_cflags=""
3771 with_libsigrok_ldflags=""
3772 AC_ARG_WITH(libsigrok, [AS_HELP_STRING([--with-libsigrok@<:@=PREFIX@:>@], [Path to libsigrok.])],
3773 [
3774         if test "x$withval" = "xno"
3775         then
3776                 with_libsigrok="no"
3777         else
3778                 with_libsigrok="yes"
3779                 if test "x$withval" != "xyes"
3780                 then
3781                         with_libsigrok_cflags="-I$withval/include"
3782                         with_libsigrok_ldflags="-L$withval/lib"
3783                 fi
3784         fi
3785 ],[])
3786
3787 # libsigrok has a glib dependency
3788 if test "x$with_libsigrok" = "xyes"
3789 then
3790         if test -z "m4_ifdef([AM_PATH_GLIB_2_0], [yes], [])"
3791         then
3792                 with_libsigrok="no (glib not available)"
3793         else
3794                 AM_PATH_GLIB_2_0([2.28.0],
3795                         [with_libsigrok_cflags="$with_libsigrok_cflags $GLIB_CFLAGS"; with_libsigrok_ldflags="$with_libsigrok_ldflags $GLIB_LIBS"])
3796         fi
3797 fi
3798
3799 # libsigrok headers
3800 if test "x$with_libsigrok" = "xyes"
3801 then
3802         SAVE_CPPFLAGS="$CPPFLAGS"
3803         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
3804
3805         AC_CHECK_HEADERS(libsigrok/libsigrok.h, [], [with_libsigrok="no (libsigrok/libsigrok.h not found)"])
3806
3807         CPPFLAGS="$SAVE_CPPFLAGS"
3808 fi
3809
3810 # libsigrok library
3811 if test "x$with_libsigrok" = "xyes"
3812 then
3813         SAVE_CPPFLAGS="$CPPFLAGS"
3814         SAVE_LDFLAGS="$LDFLAGS"
3815         CPPFLAGS="$CPPFLAGS $with_libsigrok_cflags"
3816         LDFLAGS="$LDFLAGS $with_libsigrok_ldflags"
3817
3818         AC_CHECK_LIB(sigrok, sr_init,
3819         [
3820                 AC_DEFINE(HAVE_LIBSIGROK, 1, [Define to 1 if you have the sigrok library (-lsigrok).])
3821         ],
3822         [with_libsigrok="no (libsigrok not found)"])
3823
3824         CPPFLAGS="$SAVE_CPPFLAGS"
3825         LDFLAGS="$SAVE_LDFLAGS"
3826 fi
3827 if test "x$with_libsigrok" = "xyes"
3828 then
3829         BUILD_WITH_LIBSIGROK_CFLAGS="$with_libsigrok_cflags"
3830         BUILD_WITH_LIBSIGROK_LDFLAGS="$with_libsigrok_ldflags"
3831         AC_SUBST(BUILD_WITH_LIBSIGROK_CFLAGS)
3832         AC_SUBST(BUILD_WITH_LIBSIGROK_LDFLAGS)
3833 fi
3834 AM_CONDITIONAL(BUILD_WITH_LIBSIGROK, test "x$with_libsigrok" = "xyes")
3835 # }}}
3836
3837 # --with-libstatgrab {{{
3838 with_libstatgrab_cflags=""
3839 with_libstatgrab_ldflags=""
3840 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
3841 [
3842  if test "x$withval" != "xno" \
3843    && test "x$withval" != "xyes"
3844  then
3845    with_libstatgrab_cflags="-I$withval/include"
3846    with_libstatgrab_ldflags="-L$withval/lib -lstatgrab"
3847    with_libstatgrab="yes"
3848    with_libstatgrab_pkg_config="no"
3849  else
3850    with_libstatgrab="$withval"
3851    with_libstatgrab_pkg_config="yes"
3852  fi
3853  ],
3854 [
3855  with_libstatgrab="yes"
3856  with_libstatgrab_pkg_config="yes"
3857 ])
3858
3859 if test "x$with_libstatgrab" = "xyes" \
3860   && test "x$with_libstatgrab_pkg_config" = "xyes"
3861 then
3862   if test "x$PKG_CONFIG" != "x"
3863   then
3864     AC_MSG_CHECKING([pkg-config for libstatgrab])
3865     temp_result="found"
3866     $PKG_CONFIG --exists libstatgrab 2>/dev/null
3867     if test "$?" != "0"
3868     then
3869       with_libstatgrab_pkg_config="no"
3870       with_libstatgrab="no (pkg-config doesn't know libstatgrab)"
3871       temp_result="not found"
3872     fi
3873     AC_MSG_RESULT([$temp_result])
3874   else
3875     AC_MSG_NOTICE([pkg-config not available, trying to guess flags for the statgrab library.])
3876     with_libstatgrab_pkg_config="no"
3877     with_libstatgrab_ldflags="$with_libstatgrab_ldflags -lstatgrab"
3878   fi
3879 fi
3880
3881 if test "x$with_libstatgrab" = "xyes" \
3882   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3883   && test "x$with_libstatgrab_cflags" = "x"
3884 then
3885   AC_MSG_CHECKING([for libstatgrab CFLAGS])
3886   temp_result="`$PKG_CONFIG --cflags libstatgrab`"
3887   if test "$?" = "0"
3888   then
3889     with_libstatgrab_cflags="$temp_result"
3890   else
3891     with_libstatgrab="no ($PKG_CONFIG --cflags libstatgrab failed)"
3892     temp_result="$PKG_CONFIG --cflags libstatgrab failed"
3893   fi
3894   AC_MSG_RESULT([$temp_result])
3895 fi
3896
3897 if test "x$with_libstatgrab" = "xyes" \
3898   && test "x$with_libstatgrab_pkg_config" = "xyes" \
3899   && test "x$with_libstatgrab_ldflags" = "x"
3900 then
3901   AC_MSG_CHECKING([for libstatgrab LDFLAGS])
3902   temp_result="`$PKG_CONFIG --libs libstatgrab`"
3903   if test "$?" = "0"
3904   then
3905     with_libstatgrab_ldflags="$temp_result"
3906   else
3907     with_libstatgrab="no ($PKG_CONFIG --libs libstatgrab failed)"
3908     temp_result="$PKG_CONFIG --libs libstatgrab failed"
3909   fi
3910   AC_MSG_RESULT([$temp_result])
3911 fi
3912
3913 if test "x$with_libstatgrab" = "xyes"
3914 then
3915   SAVE_CPPFLAGS="$CPPFLAGS"
3916   CPPFLAGS="$CPPFLAGS $with_libstatgrab_cflags"
3917
3918   AC_CHECK_HEADERS(statgrab.h,
3919                    [with_libstatgrab="yes"],
3920                    [with_libstatgrab="no (statgrab.h not found)"])
3921
3922   CPPFLAGS="$SAVE_CPPFLAGS"
3923 fi
3924
3925 if test "x$with_libstatgrab" = "xyes"
3926 then
3927   SAVE_CFLAGS="$CFLAGS"
3928   SAVE_LDFLAGS="$LDFLAGS"
3929
3930   CFLAGS="$CFLAGS $with_libstatgrab_cflags"
3931   LDFLAGS="$LDFLAGS $with_libstatgrab_ldflags"
3932
3933   AC_CHECK_LIB(statgrab, sg_init,
3934                [with_libstatgrab="yes"],
3935                [with_libstatgrab="no (symbol sg_init not found)"])
3936
3937   CFLAGS="$SAVE_CFLAGS"
3938   LDFLAGS="$SAVE_LDFLAGS"
3939 fi
3940
3941 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
3942 if test "x$with_libstatgrab" = "xyes"
3943 then
3944   AC_DEFINE(HAVE_LIBSTATGRAB, 1, [Define to 1 if you have the 'statgrab' library (-lstatgrab)])
3945   BUILD_WITH_LIBSTATGRAB_CFLAGS="$with_libstatgrab_cflags"
3946   BUILD_WITH_LIBSTATGRAB_LDFLAGS="$with_libstatgrab_ldflags"
3947   AC_SUBST(BUILD_WITH_LIBSTATGRAB_CFLAGS)
3948   AC_SUBST(BUILD_WITH_LIBSTATGRAB_LDFLAGS)
3949 fi
3950 # }}}
3951
3952 # --with-libtokyotyrant {{{
3953 with_libtokyotyrant_cppflags=""
3954 with_libtokyotyrant_ldflags=""
3955 with_libtokyotyrant_libs=""
3956 AC_ARG_WITH(libtokyotyrant, [AS_HELP_STRING([--with-libtokyotyrant@<:@=PREFIX@:>@], [Path to libtokyotyrant.])],
3957 [
3958   if test "x$withval" = "xno"
3959   then
3960     with_libtokyotyrant="no"
3961   else if test "x$withval" = "xyes"
3962   then
3963     with_libtokyotyrant="yes"
3964   else
3965     with_libtokyotyrant_cppflags="-I$withval/include"
3966     with_libtokyotyrant_ldflags="-L$withval/include"
3967     with_libtokyotyrant_libs="-ltokyotyrant"
3968     with_libtokyotyrant="yes"
3969   fi; fi
3970 ],
3971 [
3972   with_libtokyotyrant="yes"
3973 ])
3974
3975 if test "x$with_libtokyotyrant" = "xyes"
3976 then
3977   if $PKG_CONFIG --exists tokyotyrant
3978   then
3979     with_libtokyotyrant_cppflags="$with_libtokyotyrant_cppflags `$PKG_CONFIG --cflags tokyotyrant`"
3980     with_libtokyotyrant_ldflags="$with_libtokyotyrant_ldflags `pkg-config --libs-only-L tokyotyrant`"
3981     with_libtokyotyrant_libs="$with_libtokyotyrant_libs `pkg-config --libs-only-l tokyotyrant`"
3982   fi
3983 fi
3984
3985 SAVE_CPPFLAGS="$CPPFLAGS"
3986 SAVE_LDFLAGS="$LDFLAGS"
3987 CPPFLAGS="$CPPFLAGS $with_libtokyotyrant_cppflags"
3988 LDFLAGS="$LDFLAGS $with_libtokyotyrant_ldflags"
3989
3990 if test "x$with_libtokyotyrant" = "xyes"
3991 then
3992   AC_CHECK_HEADERS(tcrdb.h,
3993   [
3994           AC_DEFINE(HAVE_TCRDB_H, 1,
3995                     [Define to 1 if you have the <tcrdb.h> header file.])
3996   ], [with_libtokyotyrant="no (tcrdb.h not found)"])
3997 fi
3998
3999 if test "x$with_libtokyotyrant" = "xyes"
4000 then
4001   AC_CHECK_LIB(tokyotyrant, tcrdbrnum,
4002   [
4003           AC_DEFINE(HAVE_LIBTOKYOTYRANT, 1,
4004                     [Define to 1 if you have the tokyotyrant library (-ltokyotyrant).])
4005   ],
4006   [with_libtokyotyrant="no (symbol tcrdbrnum not found)"],
4007   [$with_libtokyotyrant_libs])
4008 fi
4009
4010 CPPFLAGS="$SAVE_CPPFLAGS"
4011 LDFLAGS="$SAVE_LDFLAGS"
4012
4013 if test "x$with_libtokyotyrant" = "xyes"
4014 then 
4015   BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS="$with_libtokyotyrant_cppflags"
4016   BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS="$with_libtokyotyrant_ldflags"
4017   BUILD_WITH_LIBTOKYOTYRANT_LIBS="$with_libtokyotyrant_libs"
4018   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS)
4019   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS)
4020   AC_SUBST(BUILD_WITH_LIBTOKYOTYRANT_LIBS)
4021 fi
4022 AM_CONDITIONAL(BUILD_WITH_LIBTOKYOTYRANT, test "x$with_libtokyotyrant" = "xyes")
4023 # }}}
4024
4025 # --with-libupsclient {{{
4026 with_libupsclient_config=""
4027 with_libupsclient_cflags=""
4028 with_libupsclient_libs=""
4029 AC_ARG_WITH(libupsclient, [AS_HELP_STRING([--with-libupsclient@<:@=PREFIX@:>@], [Path to the upsclient library.])],
4030 [
4031         if test "x$withval" = "xno"
4032         then
4033                 with_libupsclient="no"
4034         else if test "x$withval" = "xyes"
4035         then
4036                 with_libupsclient="use_pkgconfig"
4037         else
4038                 if test -x "$withval"
4039                 then
4040                         with_libupsclient_config="$withval"
4041                         with_libupsclient="use_libupsclient_config"
4042                 else if test -x "$withval/bin/libupsclient-config"
4043                 then
4044                         with_libupsclient_config="$withval/bin/libupsclient-config"
4045                         with_libupsclient="use_libupsclient_config"
4046                 else
4047                         AC_MSG_NOTICE([Not checking for libupsclient: Manually configured])
4048                         with_libupsclient_cflags="-I$withval/include"
4049                         with_libupsclient_libs="-L$withval/lib -lupsclient"
4050                         with_libupsclient="yes"
4051                 fi; fi
4052         fi; fi
4053 ],
4054 [with_libupsclient="use_pkgconfig"])
4055
4056 # configure using libupsclient-config
4057 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4058 then
4059         AC_MSG_NOTICE([Checking for libupsclient using $with_libupsclient_config])
4060         with_libupsclient_cflags="`$with_libupsclient_config --cflags`"
4061         if test $? -ne 0
4062         then
4063                 with_libupsclient="no ($with_libupsclient_config failed)"
4064         fi
4065         with_libupsclient_libs="`$with_libupsclient_config --libs`"
4066         if test $? -ne 0
4067         then
4068                 with_libupsclient="no ($with_libupsclient_config failed)"
4069         fi
4070 fi
4071 if test "x$with_libupsclient" = "xuse_libupsclient_config"
4072 then
4073         with_libupsclient="yes"
4074 fi
4075
4076 # configure using pkg-config
4077 if test "x$with_libupsclient" = "xuse_pkgconfig"
4078 then
4079         if test "x$PKG_CONFIG" = "x"
4080         then
4081                 with_libupsclient="no (Don't have pkg-config)"
4082         fi
4083 fi
4084 if test "x$with_libupsclient" = "xuse_pkgconfig"
4085 then
4086         AC_MSG_NOTICE([Checking for libupsclient using $PKG_CONFIG])
4087         $PKG_CONFIG --exists 'libupsclient' 2>/dev/null
4088         if test $? -ne 0
4089         then
4090                 with_libupsclient="no (pkg-config doesn't know libupsclient)"
4091         fi
4092 fi
4093 if test "x$with_libupsclient" = "xuse_pkgconfig"
4094 then
4095         with_libupsclient_cflags="`$PKG_CONFIG --cflags 'libupsclient'`"
4096         if test $? -ne 0
4097         then
4098                 with_libupsclient="no ($PKG_CONFIG failed)"
4099         fi
4100         with_libupsclient_libs="`$PKG_CONFIG --libs 'libupsclient'`"
4101         if test $? -ne 0
4102         then
4103                 with_libupsclient="no ($PKG_CONFIG failed)"
4104         fi
4105 fi
4106 if test "x$with_libupsclient" = "xuse_pkgconfig"
4107 then
4108         with_libupsclient="yes"
4109 fi
4110
4111 # with_libupsclient_cflags and with_libupsclient_libs are set up now, let's do
4112 # the actual checks.
4113 if test "x$with_libupsclient" = "xyes"
4114 then
4115         SAVE_CPPFLAGS="$CPPFLAGS"
4116         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4117
4118         AC_CHECK_HEADERS(upsclient.h, [], [with_libupsclient="no (upsclient.h not found)"])
4119
4120         CPPFLAGS="$SAVE_CPPFLAGS"
4121 fi
4122 if test "x$with_libupsclient" = "xyes"
4123 then
4124         SAVE_CPPFLAGS="$CPPFLAGS"
4125         SAVE_LDFLAGS="$LDFLAGS"
4126
4127         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4128         LDFLAGS="$LDFLAGS $with_libupsclient_libs"
4129
4130         AC_CHECK_LIB(upsclient, upscli_connect,
4131                      [with_libupsclient="yes"],
4132                      [with_libupsclient="no (symbol upscli_connect not found)"])
4133
4134         CPPFLAGS="$SAVE_CPPFLAGS"
4135         LDFLAGS="$SAVE_LDFLAGS"
4136 fi
4137 if test "x$with_libupsclient" = "xyes"
4138 then
4139         SAVE_CPPFLAGS="$CPPFLAGS"
4140         CPPFLAGS="$CPPFLAGS $with_libupsclient_cflags"
4141
4142         AC_CHECK_TYPES([UPSCONN_t, UPSCONN], [], [],
4143 [#include <stdlib.h>
4144 #include <stdio.h>
4145 #include <upsclient.h>])
4146
4147         CPPFLAGS="$SAVE_CPPFLAGS"
4148 fi
4149 if test "x$with_libupsclient" = "xyes"
4150 then
4151         BUILD_WITH_LIBUPSCLIENT_CFLAGS="$with_libupsclient_cflags"
4152         BUILD_WITH_LIBUPSCLIENT_LIBS="$with_libupsclient_libs"
4153         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_CFLAGS)
4154         AC_SUBST(BUILD_WITH_LIBUPSCLIENT_LIBS)
4155 fi
4156 # }}}
4157
4158 # --with-libxmms {{{
4159 with_xmms_config="xmms-config"
4160 with_xmms_cflags=""
4161 with_xmms_libs=""
4162 AC_ARG_WITH(libxmms, [AS_HELP_STRING([--with-libxmms@<:@=PREFIX@:>@], [Path to libxmms.])],
4163 [
4164         if test "x$withval" != "xno" \
4165                 && test "x$withval" != "xyes"
4166         then
4167                 if test -f "$withval" && test -x "$withval";
4168                 then
4169                         with_xmms_config="$withval"
4170                 else if test -x "$withval/bin/xmms-config"
4171                 then
4172                         with_xmms_config="$withval/bin/xmms-config"
4173                 fi; fi
4174                 with_libxmms="yes"
4175         else if test "x$withval" = "xno"
4176         then
4177                 with_libxmms="no"
4178         else
4179                 with_libxmms="yes"
4180         fi; fi
4181 ],
4182 [
4183         with_libxmms="yes"
4184 ])
4185 if test "x$with_libxmms" = "xyes"
4186 then
4187         with_xmms_cflags=`$with_xmms_config --cflags 2>/dev/null`
4188         xmms_config_status=$?
4189
4190         if test $xmms_config_status -ne 0
4191         then
4192                 with_libxmms="no"
4193         fi
4194 fi
4195 if test "x$with_libxmms" = "xyes"
4196 then
4197         with_xmms_libs=`$with_xmms_config --libs 2>/dev/null`
4198         xmms_config_status=$?
4199
4200         if test $xmms_config_status -ne 0
4201         then
4202                 with_libxmms="no"
4203         fi
4204 fi
4205 if test "x$with_libxmms" = "xyes"
4206 then
4207         AC_CHECK_LIB(xmms, xmms_remote_get_info,
4208         [
4209                 BUILD_WITH_LIBXMMS_CFLAGS="$with_xmms_cflags"
4210                 BUILD_WITH_LIBXMMS_LIBS="$with_xmms_libs"
4211                 AC_SUBST(BUILD_WITH_LIBXMMS_CFLAGS)
4212                 AC_SUBST(BUILD_WITH_LIBXMMS_LIBS)
4213         ],
4214         [
4215                 with_libxmms="no"
4216         ],
4217         [$with_xmms_libs])
4218 fi
4219 with_libxmms_numeric=0
4220 if test "x$with_libxmms" = "xyes"
4221 then
4222         with_libxmms_numeric=1
4223 fi
4224 AC_DEFINE_UNQUOTED(HAVE_LIBXMMS, [$with_libxmms_numeric], [Define to 1 if you have the 'xmms' library (-lxmms).])
4225 AM_CONDITIONAL(BUILD_WITH_LIBXMMS, test "x$with_libxmms" = "xyes")
4226 # }}}
4227
4228 # --with-libyajl {{{
4229 with_libyajl_cppflags=""
4230 with_libyajl_ldflags=""
4231 AC_ARG_WITH(libyajl, [AS_HELP_STRING([--with-libyajl@<:@=PREFIX@:>@], [Path to libyajl.])],
4232 [
4233         if test "x$withval" != "xno" && test "x$withval" != "xyes"
4234         then
4235                 with_libyajl_cppflags="-I$withval/include"
4236                 with_libyajl_ldflags="-L$withval/lib"
4237                 with_libyajl="yes"
4238         else
4239                 with_libyajl="$withval"
4240         fi
4241 ],
4242 [
4243         with_libyajl="yes"
4244 ])
4245 if test "x$with_libyajl" = "xyes"
4246 then
4247         SAVE_CPPFLAGS="$CPPFLAGS"
4248         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4249
4250         AC_CHECK_HEADERS(yajl/yajl_parse.h, [with_libyajl="yes"], [with_libyajl="no (yajl/yajl_parse.h not found)"])
4251         AC_CHECK_HEADERS(yajl/yajl_version.h)
4252
4253         CPPFLAGS="$SAVE_CPPFLAGS"
4254 fi
4255 if test "x$with_libyajl" = "xyes"
4256 then
4257         SAVE_CPPFLAGS="$CPPFLAGS"
4258         SAVE_LDFLAGS="$LDFLAGS"
4259         CPPFLAGS="$CPPFLAGS $with_libyajl_cppflags"
4260         LDFLAGS="$LDFLAGS $with_libyajl_ldflags"
4261
4262         AC_CHECK_LIB(yajl, yajl_alloc, [with_libyajl="yes"], [with_libyajl="no (Symbol 'yajl_alloc' not found)"])
4263
4264         CPPFLAGS="$SAVE_CPPFLAGS"
4265         LDFLAGS="$SAVE_LDFLAGS"
4266 fi
4267 if test "x$with_libyajl" = "xyes"
4268 then
4269         BUILD_WITH_LIBYAJL_CPPFLAGS="$with_libyajl_cppflags"
4270         BUILD_WITH_LIBYAJL_LDFLAGS="$with_libyajl_ldflags"
4271         BUILD_WITH_LIBYAJL_LIBS="-lyajl"
4272         AC_SUBST(BUILD_WITH_LIBYAJL_CPPFLAGS)
4273         AC_SUBST(BUILD_WITH_LIBYAJL_LDFLAGS)
4274         AC_SUBST(BUILD_WITH_LIBYAJL_LIBS)
4275         AC_DEFINE(HAVE_LIBYAJL, 1, [Define if libyajl is present and usable.])
4276 fi
4277 AM_CONDITIONAL(BUILD_WITH_LIBYAJL, test "x$with_libyajl" = "xyes")
4278 # }}}
4279
4280 # --with-mic {{{
4281 with_mic_cflags="-I/opt/intel/mic/sysmgmt/sdk/include"
4282 with_mic_ldpath="-L/opt/intel/mic/sysmgmt/sdk/lib/Linux"
4283 with_mic_libs=""
4284 AC_ARG_WITH(mic,[AS_HELP_STRING([--with-mic@<:@=PREFIX@:>@], [Path to Intel MIC Access API.])],
4285 [
4286         if test "x$withval" = "xno"
4287         then
4288                 with_mic="no"
4289         else if test "x$withval" = "xyes"
4290         then
4291                 with_mic="yes"
4292         else if test -d "$with_mic/lib"
4293         then
4294                 AC_MSG_NOTICE([Not checking for Intel Mic: Manually configured])
4295                 with_mic_cflags="-I$withval/include"
4296                 with_mic_ldpath="-L$withval/lib/Linux"
4297                 with_mic_libs="-lMicAccessSDK -lscif -lpthread"
4298                 with_mic="yes"
4299         fi; fi; fi
4300 ],
4301 [with_mic="yes"])
4302 if test "x$with_mic" = "xyes"
4303 then
4304         SAVE_CPPFLAGS="$CPPFLAGS"
4305         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4306         AC_CHECK_HEADERS(MicAccessApi.h,[],[with_mic="no (MicAccessApi not found)"])
4307         CPPFLAGS="$SAVE_CPPFLAGS"
4308 fi
4309 if test "x$with_mic" = "xyes"
4310 then
4311         SAVE_CPPFLAGS="$CPPFLAGS"
4312         SAVE_LDFLAGS="$LDFLAGS"
4313
4314         CPPFLAGS="$CPPFLAGS $with_mic_cflags"
4315         LDFLAGS="$LDFLAGS $with_mic_ldpath"
4316
4317         AC_CHECK_LIB(MicAccessSDK, MicInitAPI,
4318                         [with_mic_ldpath="$with_mic_ldpath"
4319                         with_mic_libs="-lMicAccessSDK -lscif -lpthread"],
4320                         [with_mic="no (symbol MicInitAPI not found)"],[-lscif -lpthread])
4321
4322         CPPFLAGS="$SAVE_CPPFLAGS"
4323         LDFLAGS="$SAVE_LDFLAGS"
4324 fi
4325
4326 if test "x$with_mic" = "xyes"
4327 then
4328         BUILD_WITH_MIC_CPPFLAGS="$with_mic_cflags"
4329         BUILD_WITH_MIC_LIBPATH="$with_mic_ldpath"
4330         BUILD_WITH_MIC_LDADD="$with_mic_libs"
4331         AC_SUBST(BUILD_WITH_MIC_CPPFLAGS)
4332         AC_SUBST(BUILD_WITH_MIC_LIBPATH)
4333         AC_SUBST(BUILD_WITH_MIC_LDADD)
4334 fi
4335 #}}}
4336
4337 # --with-libvarnish {{{
4338 with_libvarnish_cppflags=""
4339 with_libvarnish_cflags=""
4340 with_libvarnish_libs=""
4341 AC_ARG_WITH(libvarnish, [AS_HELP_STRING([--with-libvarnish@<:@=PREFIX@:>@], [Path to libvarnish.])],
4342 [
4343         if test "x$withval" = "xno"
4344         then
4345                 with_libvarnish="no"
4346         else if test "x$withval" = "xyes"
4347         then
4348                 with_libvarnish="use_pkgconfig"
4349         else if test -d "$with_libvarnish/lib"
4350         then
4351                 AC_MSG_NOTICE([Not checking for libvarnish: Manually configured])
4352                 with_libvarnish_cflags="-I$withval/include"
4353                 with_libvarnish_libs="-L$withval/lib -lvarnishapi"
4354                 with_libvarnish="yes"
4355         fi; fi; fi
4356 ],
4357 [with_libvarnish="use_pkgconfig"])
4358
4359 # configure using pkg-config
4360 if test "x$with_libvarnish" = "xuse_pkgconfig"
4361 then
4362         if test "x$PKG_CONFIG" = "x"
4363         then
4364                 with_libvarnish="no (Don't have pkg-config)"
4365         fi
4366 fi
4367 if test "x$with_libvarnish" = "xuse_pkgconfig"
4368 then
4369         AC_MSG_NOTICE([Checking for varnishapi using $PKG_CONFIG])
4370         $PKG_CONFIG --exists 'varnishapi' 2>/dev/null
4371         if test $? -ne 0
4372         then
4373                 with_libvarnish="no (pkg-config doesn't know varnishapi)"
4374         fi
4375 fi
4376 if test "x$with_libvarnish" = "xuse_pkgconfig"
4377 then
4378         with_libvarnish_cflags="`$PKG_CONFIG --cflags 'varnishapi'`"
4379         if test $? -ne 0
4380         then
4381                 with_libvarnish="no ($PKG_CONFIG failed)"
4382         fi
4383         with_libvarnish_libs="`$PKG_CONFIG --libs 'varnishapi'`"
4384         if test $? -ne 0
4385         then
4386                 with_libvarnish="no ($PKG_CONFIG failed)"
4387         fi
4388 fi
4389 if test "x$with_libvarnish" = "xuse_pkgconfig"
4390 then
4391         with_libvarnish="yes"
4392 fi
4393
4394 # with_libvarnish_cflags and with_libvarnish_libs are set up now, let's do
4395 # the actual checks.
4396 if test "x$with_libvarnish" = "xyes"
4397 then
4398         SAVE_CPPFLAGS="$CPPFLAGS"
4399         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4400         AC_CHECK_HEADERS(varnish/varnishapi.h, [], [with_libvarnish="no (varnish/varnishapi.h not found)"])
4401
4402         CPPFLAGS="$SAVE_CPPFLAGS"
4403 fi
4404 if test "x$with_libvarnish" = "xyes"
4405 then
4406         SAVE_CPPFLAGS="$CPPFLAGS"
4407         #SAVE_LDFLAGS="$LDFLAGS"
4408
4409         CPPFLAGS="$CPPFLAGS $with_libvarnish_cflags"
4410         #LDFLAGS="$LDFLAGS $with_libvarnish_libs"
4411
4412     AC_CHECK_HEADERS(varnish/vsc.h,
4413         [AC_DEFINE([HAVE_VARNISH_V3], [1], [Varnish 3 API support])],
4414         [AC_DEFINE([HAVE_VARNISH_V2], [1], [Varnish 2 API support])])
4415
4416         CPPFLAGS="$SAVE_CPPFLAGS"
4417         #LDFLAGS="$SAVE_LDFLAGS"
4418 fi
4419 if test "x$with_libvarnish" = "xyes"
4420 then
4421         BUILD_WITH_LIBVARNISH_CFLAGS="$with_libvarnish_cflags"
4422         BUILD_WITH_LIBVARNISH_LIBS="$with_libvarnish_libs"
4423         AC_SUBST(BUILD_WITH_LIBVARNISH_CFLAGS)
4424         AC_SUBST(BUILD_WITH_LIBVARNISH_LIBS)
4425 fi
4426 # }}}
4427
4428 # pkg-config --exists 'libxml-2.0'; pkg-config --exists libvirt {{{
4429 with_libxml2="no (pkg-config isn't available)"
4430 with_libxml2_cflags=""
4431 with_libxml2_ldflags=""
4432 with_libvirt="no (pkg-config isn't available)"
4433 with_libvirt_cflags=""
4434 with_libvirt_ldflags=""
4435 if test "x$PKG_CONFIG" != "x"
4436 then
4437         pkg-config --exists 'libxml-2.0' 2>/dev/null
4438         if test "$?" = "0"
4439         then
4440                 with_libxml2="yes"
4441         else
4442                 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
4443         fi
4444
4445         pkg-config --exists libvirt 2>/dev/null
4446         if test "$?" = "0"
4447         then
4448                 with_libvirt="yes"
4449         else
4450                 with_libvirt="no (pkg-config doesn't know libvirt)"
4451         fi
4452 fi
4453 if test "x$with_libxml2" = "xyes"
4454 then
4455         with_libxml2_cflags="`pkg-config --cflags libxml-2.0`"
4456         if test $? -ne 0
4457         then
4458                 with_libxml2="no"
4459         fi
4460         with_libxml2_ldflags="`pkg-config --libs libxml-2.0`"
4461         if test $? -ne 0
4462         then
4463                 with_libxml2="no"
4464         fi
4465 fi
4466 if test "x$with_libxml2" = "xyes"
4467 then
4468         SAVE_CPPFLAGS="$CPPFLAGS"
4469         CPPFLAGS="$CPPFLAGS $with_libxml2_cflags"
4470
4471         AC_CHECK_HEADERS(libxml/parser.h, [],
4472                       [with_libxml2="no (libxml/parser.h not found)"])
4473
4474         CPPFLAGS="$SAVE_CPPFLAGS"
4475 fi
4476 if test "x$with_libxml2" = "xyes"
4477 then
4478         SAVE_CFLAGS="$CFLAGS"
4479         SAVE_LDFLAGS="$LDFLAGS"
4480
4481         CFLAGS="$CFLAGS $with_libxml2_cflags"
4482         LDFLAGS="$LDFLAGS $with_libxml2_ldflags"
4483
4484         AC_CHECK_LIB(xml2, xmlXPathEval,
4485                      [with_libxml2="yes"],
4486                      [with_libxml2="no (symbol xmlXPathEval not found)"])
4487
4488         CFLAGS="$SAVE_CFLAGS"
4489         LDFLAGS="$SAVE_LDFLAGS"
4490 fi
4491 dnl Add the right compiler flags and libraries.
4492 if test "x$with_libxml2" = "xyes"; then
4493         BUILD_WITH_LIBXML2_CFLAGS="$with_libxml2_cflags"
4494         BUILD_WITH_LIBXML2_LIBS="$with_libxml2_ldflags"
4495         AC_SUBST(BUILD_WITH_LIBXML2_CFLAGS)
4496         AC_SUBST(BUILD_WITH_LIBXML2_LIBS)
4497 fi
4498 if test "x$with_libvirt" = "xyes"
4499 then
4500         with_libvirt_cflags="`pkg-config --cflags libvirt`"
4501         if test $? -ne 0
4502         then
4503                 with_libvirt="no"
4504         fi
4505         with_libvirt_ldflags="`pkg-config --libs libvirt`"
4506         if test $? -ne 0
4507         then
4508                 with_libvirt="no"
4509         fi
4510 fi
4511 if test "x$with_libvirt" = "xyes"
4512 then
4513         SAVE_CPPFLAGS="$CPPFLAGS"
4514         CPPFLAGS="$CPPFLAGS $with_libvirt_cflags"
4515
4516         AC_CHECK_HEADERS(libvirt/libvirt.h, [],
4517                       [with_libvirt="no (libvirt/libvirt.h not found)"])
4518
4519         CPPFLAGS="$SAVE_CPPFLAGS"
4520 fi
4521 if test "x$with_libvirt" = "xyes"
4522 then
4523         SAVE_CFLAGS="$CFLAGS"
4524         SAVE_LDFLAGS="$LDFLAGS"
4525
4526         CFLAGS="$CFLAGS $with_libvirt_cflags"
4527         LDFLAGS="$LDFLAGS $with_libvirt_ldflags"
4528
4529         AC_CHECK_LIB(virt, virDomainBlockStats,
4530                      [with_libvirt="yes"],
4531                      [with_libvirt="no (symbol virDomainBlockStats not found)"])
4532
4533         CFLAGS="$SAVE_CFLAGS"
4534         LDFLAGS="$SAVE_LDFLAGS"
4535 fi
4536 dnl Add the right compiler flags and libraries.
4537 if test "x$with_libvirt" = "xyes"; then
4538         BUILD_WITH_LIBVIRT_CFLAGS="$with_libvirt_cflags"
4539         BUILD_WITH_LIBVIRT_LIBS="$with_libvirt_ldflags"
4540         AC_SUBST(BUILD_WITH_LIBVIRT_CFLAGS)
4541         AC_SUBST(BUILD_WITH_LIBVIRT_LIBS)
4542 fi
4543 # }}}
4544
4545 # $PKG_CONFIG --exists OpenIPMIpthread {{{
4546 with_libopenipmipthread="yes"
4547 with_libopenipmipthread_cflags=""
4548 with_libopenipmipthread_libs=""
4549
4550 AC_MSG_CHECKING([for pkg-config])
4551 temp_result="no"
4552 if test "x$PKG_CONFIG" = "x"
4553 then
4554         with_libopenipmipthread="no"
4555         temp_result="no"
4556 else
4557         temp_result="$PKG_CONFIG"
4558 fi
4559 AC_MSG_RESULT([$temp_result])
4560
4561 if test "x$with_libopenipmipthread" = "xyes"
4562 then
4563         AC_MSG_CHECKING([for libOpenIPMIpthread])
4564         $PKG_CONFIG --exists OpenIPMIpthread 2>/dev/null
4565         if test "$?" != "0"
4566         then
4567                 with_libopenipmipthread="no (pkg-config doesn't know OpenIPMIpthread)"
4568         fi
4569         AC_MSG_RESULT([$with_libopenipmipthread])
4570 fi
4571
4572 if test "x$with_libopenipmipthread" = "xyes"
4573 then
4574         AC_MSG_CHECKING([for libOpenIPMIpthread CFLAGS])
4575         temp_result="`$PKG_CONFIG --cflags OpenIPMIpthread`"
4576         if test "$?" = "0"
4577         then
4578                 with_libopenipmipthread_cflags="$temp_result"
4579         else
4580                 with_libopenipmipthread="no ($PKG_CONFIG --cflags OpenIPMIpthread failed)"
4581                 temp_result="$PKG_CONFIG --cflags OpenIPMIpthread failed"
4582         fi
4583         AC_MSG_RESULT([$temp_result])
4584 fi
4585
4586 if test "x$with_libopenipmipthread" = "xyes"
4587 then
4588         AC_MSG_CHECKING([for libOpenIPMIpthread LDFLAGS])
4589         temp_result="`$PKG_CONFIG --libs OpenIPMIpthread`"
4590         if test "$?" = "0"
4591         then
4592                 with_libopenipmipthread_ldflags="$temp_result"
4593         else
4594                 with_libopenipmipthread="no ($PKG_CONFIG --libs OpenIPMIpthread failed)"
4595                 temp_result="$PKG_CONFIG --libs OpenIPMIpthread failed"
4596         fi
4597         AC_MSG_RESULT([$temp_result])
4598 fi
4599
4600 if test "x$with_libopenipmipthread" = "xyes"
4601 then
4602         SAVE_CPPFLAGS="$CPPFLAGS"
4603         CPPFLAGS="$CPPFLAGS $with_libopenipmipthread_cflags"
4604
4605         AC_CHECK_HEADERS(OpenIPMI/ipmi_smi.h,
4606                          [with_libopenipmipthread="yes"],
4607                          [with_libopenipmipthread="no (OpenIPMI/ipmi_smi.h not found)"],
4608 [#include <OpenIPMI/ipmiif.h>
4609 #include <OpenIPMI/ipmi_err.h>
4610 #include <OpenIPMI/ipmi_posix.h>
4611 #include <OpenIPMI/ipmi_conn.h>
4612 ])
4613
4614         CPPFLAGS="$SAVE_CPPFLAGS"
4615 fi
4616
4617 if test "x$with_libopenipmipthread" = "xyes"
4618 then
4619         BUILD_WITH_OPENIPMI_CFLAGS="$with_libopenipmipthread_cflags"
4620         BUILD_WITH_OPENIPMI_LIBS="$with_libopenipmipthread_ldflags"
4621         AC_SUBST(BUILD_WITH_OPENIPMI_CFLAGS)
4622         AC_SUBST(BUILD_WITH_OPENIPMI_LIBS)
4623 fi
4624 # }}}
4625
4626 PKG_CHECK_MODULES([LIBNOTIFY], [libnotify],
4627                 [with_libnotify="yes"],
4628                 [if test "x$LIBNOTIFY_PKG_ERRORS" = "x"; then
4629                          with_libnotify="no"
4630                  else
4631                          with_libnotify="no ($LIBNOTIFY_PKG_ERRORS)"
4632                  fi])
4633
4634 # Check for enabled/disabled features
4635 #
4636
4637 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
4638 # ------------------------------------------------------------
4639 dnl
4640 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
4641 dnl
4642 AC_DEFUN(
4643         [AC_COLLECTD],
4644         [
4645         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
4646         m4_if(
4647                 [$2],
4648                 [enable],
4649                 [dnl
4650                 m4_define([EnDis],[disabled])dnl
4651                 m4_define([YesNo],[no])dnl
4652                 ],dnl
4653                 [m4_if(
4654                         [$2],
4655                         [disable],
4656                         [dnl
4657                         m4_define([EnDis],[enabled])dnl
4658                         m4_define([YesNo],[yes])dnl
4659                         ],
4660                         [dnl
4661                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
4662                         ]dnl
4663                 )]dnl
4664         )dnl
4665         m4_if([$3], [feature], [],
4666                 [m4_if(
4667                         [$3], [module], [],
4668                         [dnl
4669                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
4670                         ]dnl
4671                 )]dnl
4672         )dnl
4673         AC_ARG_ENABLE(
4674                 [$1],
4675                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
4676                 [],
4677                 enable_$1='[YesNo]'dnl
4678         )# AC_ARG_ENABLE
4679 if test "x$enable_$1" = "xno"
4680 then
4681         collectd_$1=0
4682 else
4683         if test "x$enable_$1" = "xyes"
4684         then
4685                 collectd_$1=1
4686         else
4687                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
4688                 collectd_$1=1
4689                 enable_$1='yes'
4690         fi
4691 fi
4692         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
4693         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
4694         ]dnl
4695 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
4696
4697 # AC_PLUGIN(name, default, info)
4698 # ------------------------------------------------------------
4699 dnl
4700 AC_DEFUN(
4701   [AC_PLUGIN],
4702   [
4703     enable_plugin="no"
4704     force="no"
4705     AC_ARG_ENABLE([$1], AC_HELP_STRING([--enable-$1], [$3]),
4706     [
4707      if test "x$enableval" = "xyes"
4708      then
4709              enable_plugin="yes"
4710      else if test "x$enableval" = "xforce"
4711      then
4712              enable_plugin="yes"
4713              force="yes"
4714      else
4715              enable_plugin="no (disabled on command line)"
4716      fi; fi
4717     ],
4718     [
4719          if test "x$enable_all_plugins" = "xauto"
4720          then
4721              if test "x$2" = "xyes"
4722              then
4723                      enable_plugin="yes"
4724              else
4725                      enable_plugin="no"
4726              fi
4727          else
4728              enable_plugin="$enable_all_plugins"
4729          fi
4730     ])
4731     if test "x$enable_plugin" = "xyes"
4732     then
4733             if test "x$2" = "xyes" || test "x$force" = "xyes"
4734             then
4735                     AC_DEFINE([HAVE_PLUGIN_]my_toupper([$1]), 1, [Define to 1 if the $1 plugin is enabled.])
4736                     if test "x$2" != "xyes"
4737                     then
4738                             dependency_warning="yes"
4739                     fi
4740             else # User passed "yes" but dependency checking yielded "no" => Dependency problem.
4741                     dependency_error="yes"
4742                     enable_plugin="no (dependency error)"
4743             fi
4744     fi
4745     AM_CONDITIONAL([BUILD_PLUGIN_]my_toupper([$1]), test "x$enable_plugin" = "xyes")
4746     enable_$1="$enable_plugin"
4747   ]
4748 )# AC_PLUGIN(name, default, info)
4749
4750 m4_divert_once([HELP_ENABLE], [
4751 collectd features:])
4752 # FIXME: Remove these calls to `AC_COLLECTD' and then remove that macro.
4753 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
4754 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
4755 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
4756
4757 dependency_warning="no"
4758 dependency_error="no"
4759
4760 plugin_ascent="no"
4761 plugin_battery="no"
4762 plugin_bind="no"
4763 plugin_cgroups="no"
4764 plugin_conntrack="no"
4765 plugin_contextswitch="no"
4766 plugin_cpu="no"
4767 plugin_cpufreq="no"
4768 plugin_curl_json="no"
4769 plugin_curl_xml="no"
4770 plugin_df="no"
4771 plugin_disk="no"
4772 plugin_entropy="no"
4773 plugin_ethstat="no"
4774 plugin_fscache="no"
4775 plugin_interface="no"
4776 plugin_ipmi="no"
4777 plugin_ipvs="no"
4778 plugin_irq="no"
4779 plugin_libvirt="no"
4780 plugin_load="no"
4781 plugin_memory="no"
4782 plugin_multimeter="no"
4783 plugin_nfs="no"
4784 plugin_numa="no"
4785 plugin_perl="no"
4786 plugin_processes="no"
4787 plugin_protocols="no"
4788 plugin_serial="no"
4789 plugin_swap="no"
4790 plugin_tape="no"
4791 plugin_tcpconns="no"
4792 plugin_ted="no"
4793 plugin_thermal="no"
4794 plugin_users="no"
4795 plugin_uptime="no"
4796 plugin_vmem="no"
4797 plugin_vserver="no"
4798 plugin_wireless="no"
4799 plugin_zfs_arc="no"
4800
4801 # Linux
4802 if test "x$ac_system" = "xLinux"
4803 then
4804         plugin_battery="yes"
4805         plugin_conntrack="yes"
4806         plugin_contextswitch="yes"
4807         plugin_cgroups="yes"
4808         plugin_cpu="yes"
4809         plugin_cpufreq="yes"
4810         plugin_disk="yes"
4811         plugin_entropy="yes"
4812         plugin_fscache="yes"
4813         plugin_interface="yes"
4814         plugin_irq="yes"
4815         plugin_load="yes"
4816         plugin_lvm="yes"
4817         plugin_memory="yes"
4818         plugin_nfs="yes"
4819         plugin_numa="yes"
4820         plugin_processes="yes"
4821         plugin_protocols="yes"
4822         plugin_serial="yes"
4823         plugin_swap="yes"
4824         plugin_tcpconns="yes"
4825         plugin_thermal="yes"
4826         plugin_uptime="yes"
4827         plugin_vmem="yes"
4828         plugin_vserver="yes"
4829         plugin_wireless="yes"
4830
4831         if test "x$have_linux_ip_vs_h" = "xyes" || test "x$have_net_ip_vs_h" = "xyes" || test "x$have_ip_vs_h" = "xyes"
4832         then
4833                 plugin_ipvs="yes"
4834         fi
4835 fi
4836
4837 if test "x$ac_system" = "xOpenBSD"
4838 then
4839         plugin_tcpconns="yes"
4840 fi
4841
4842 # Mac OS X devices
4843 if test "x$with_libiokit" = "xyes"
4844 then
4845         plugin_battery="yes"
4846         plugin_disk="yes"
4847 fi
4848
4849 # AIX
4850
4851 if test "x$ac_system" = "xAIX"
4852 then
4853         plugin_tcpconns="yes"
4854 fi
4855
4856 # FreeBSD
4857
4858 if test "x$ac_system" = "xFreeBSD"
4859 then
4860         plugin_zfs_arc="yes"
4861 fi
4862
4863
4864 if test "x$with_perfstat" = "xyes"
4865 then
4866         plugin_cpu="yes"
4867         plugin_contextswitch="yes"
4868         plugin_disk="yes"
4869         plugin_memory="yes"
4870         plugin_swap="yes"
4871         plugin_interface="yes"
4872         plugin_load="yes"
4873         plugin_uptime="yes"
4874 fi
4875
4876 if test "x$with_procinfo" = "xyes"
4877 then
4878         plugin_processes="yes"
4879 fi
4880
4881 # Solaris
4882 if test "x$with_kstat" = "xyes"
4883 then
4884         plugin_nfs="yes"
4885         plugin_uptime="yes"
4886         plugin_zfs_arc="yes"
4887 fi
4888
4889 if test "x$with_devinfo$with_kstat" = "xyesyes"
4890 then
4891         plugin_cpu="yes"
4892         plugin_disk="yes"
4893         plugin_interface="yes"
4894         plugin_memory="yes"
4895         plugin_tape="yes"
4896 fi
4897
4898 # libstatgrab
4899 if test "x$with_libstatgrab" = "xyes"
4900 then
4901         plugin_cpu="yes"
4902         plugin_disk="yes"
4903         plugin_interface="yes"
4904         plugin_load="yes"
4905         plugin_memory="yes"
4906         plugin_swap="yes"
4907         plugin_users="yes"
4908 fi
4909
4910 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4911 then
4912         plugin_ascent="yes"
4913         if test "x$have_strptime" = "xyes"
4914         then
4915                 plugin_bind="yes"
4916         fi
4917 fi
4918
4919 if test "x$with_libopenipmipthread" = "xyes"
4920 then
4921         plugin_ipmi="yes"
4922 fi
4923
4924 if test "x$with_libcurl" = "xyes" && test "x$with_libyajl" = "xyes"
4925 then
4926         plugin_curl_json="yes"
4927 fi
4928
4929 if test "x$with_libcurl" = "xyes" && test "x$with_libxml2" = "xyes"
4930 then
4931         plugin_curl_xml="yes"
4932 fi
4933
4934 if test "x$have_processor_info" = "xyes"
4935 then
4936         plugin_cpu="yes"
4937 fi
4938 if test "x$have_sysctl" = "xyes"
4939 then
4940         plugin_cpu="yes"
4941         plugin_memory="yes"
4942         plugin_uptime="yes"
4943         if test "x$ac_system" = "xDarwin"
4944         then
4945                 plugin_swap="yes"
4946         fi
4947 fi
4948 if test "x$have_sysctlbyname" = "xyes"
4949 then
4950         plugin_contextswitch="yes"
4951         plugin_cpu="yes"
4952         plugin_memory="yes"
4953         plugin_tcpconns="yes"
4954 fi
4955
4956 # Df plugin: Check if we know how to determine mount points first.
4957 #if test "x$have_listmntent" = "xyes"; then
4958 #       plugin_df="yes"
4959 #fi
4960 if test "x$have_getvfsstat" = "xyes" || test "x$have_getfsstat" = "xyes"
4961 then
4962         plugin_df="yes"
4963 fi
4964 if test "x$c_cv_have_two_getmntent" = "xyes" || test "x$have_getmntent" = "xgen" || test "x$have_getmntent" = "xsun"
4965 then
4966         plugin_df="yes"
4967 fi
4968 #if test "x$have_getmntent" = "xseq"
4969 #then
4970 #       plugin_df="yes"
4971 #fi
4972 if test "x$c_cv_have_one_getmntent" = "xyes"
4973 then
4974         plugin_df="yes"
4975 fi
4976
4977 # Df plugin: Check if we have either `statfs' or `statvfs' second.
4978 if test "x$plugin_df" = "xyes"
4979 then
4980         plugin_df="no"
4981         if test "x$have_statfs" = "xyes"
4982         then
4983                 plugin_df="yes"
4984         fi
4985         if test "x$have_statvfs" = "xyes"
4986         then
4987                 plugin_df="yes"
4988         fi
4989 fi
4990
4991 if test "x$have_linux_sockios_h$have_linux_ethtool_h" = "xyesyes"
4992 then
4993         plugin_ethstat="yes"
4994 fi
4995
4996 if test "x$have_getifaddrs" = "xyes"
4997 then
4998         plugin_interface="yes"
4999 fi
5000
5001 if test "x$with_libxml2" = "xyes" && test "x$with_libvirt" = "xyes"
5002 then
5003         plugin_libvirt="yes"
5004 fi
5005
5006 if test "x$have_getloadavg" = "xyes"
5007 then
5008         plugin_load="yes"
5009 fi
5010
5011 if test "x$c_cv_have_libperl$c_cv_have_perl_ithreads" = "xyesyes"
5012 then
5013         plugin_perl="yes"
5014 fi
5015
5016 # Mac OS X memory interface
5017 if test "x$have_host_statistics" = "xyes"
5018 then
5019         plugin_memory="yes"
5020 fi
5021
5022 if test "x$have_termios_h" = "xyes"
5023 then
5024         plugin_multimeter="yes"
5025         plugin_ted="yes"
5026 fi
5027
5028 if test "x$have_thread_info" = "xyes"
5029 then
5030         plugin_processes="yes"
5031 fi
5032
5033 if test "x$with_kvm_getprocs" = "xyes" && test "x$have_struct_kinfo_proc_freebsd" = "xyes"
5034 then
5035         plugin_processes="yes"
5036 fi
5037
5038 if test "x$with_kvm_getswapinfo" = "xyes"
5039 then
5040         plugin_swap="yes"
5041 fi
5042
5043 if test "x$have_swapctl" = "xyes" && test "x$c_cv_have_swapctl_two_args" = "xyes"
5044 then
5045         plugin_swap="yes"
5046 fi
5047
5048 if test "x$with_kvm_openfiles$with_kvm_nlist" = "xyesyes"
5049 then
5050         plugin_tcpconns="yes"
5051 fi
5052
5053 if test "x$have_getutent" = "xyes"
5054 then
5055         plugin_users="yes"
5056 fi
5057 if test "x$have_getutxent" = "xyes"
5058 then
5059         plugin_users="yes"
5060 fi
5061
5062 m4_divert_once([HELP_ENABLE], [
5063 collectd plugins:])
5064
5065 AC_ARG_ENABLE([all-plugins],
5066                 AC_HELP_STRING([--enable-all-plugins],
5067                                 [enable all plugins (auto by def)]),
5068                 [
5069                  if test "x$enableval" = "xyes"
5070                  then
5071                          enable_all_plugins="yes"
5072                  else if test "x$enableval" = "xauto"
5073                  then
5074                          enable_all_plugins="auto"
5075                  else
5076                          enable_all_plugins="no"
5077                  fi; fi
5078                 ],
5079                 [enable_all_plugins="auto"])
5080
5081 m4_divert_once([HELP_ENABLE], [])
5082
5083 AC_PLUGIN([aggregation], [yes],                [Aggregation plugin])
5084 AC_PLUGIN([amqp],        [$with_librabbitmq],  [AMQP output plugin])
5085 AC_PLUGIN([apache],      [$with_libcurl],      [Apache httpd statistics])
5086 AC_PLUGIN([apcups],      [yes],                [Statistics of UPSes by APC])
5087 AC_PLUGIN([apple_sensors], [$with_libiokit],   [Apple's hardware sensors])
5088 AC_PLUGIN([aquaero],     [$with_libaquaero5],  [Aquaero's hardware sensors])
5089 AC_PLUGIN([ascent],      [$plugin_ascent],     [AscentEmu player statistics])
5090 AC_PLUGIN([battery],     [$plugin_battery],    [Battery statistics])
5091 AC_PLUGIN([bind],        [$plugin_bind],       [ISC Bind nameserver statistics])
5092 AC_PLUGIN([conntrack],   [$plugin_conntrack],  [nf_conntrack statistics])
5093 AC_PLUGIN([contextswitch], [$plugin_contextswitch], [context switch statistics])
5094 AC_PLUGIN([cpufreq],     [$plugin_cpufreq],    [CPU frequency statistics])
5095 AC_PLUGIN([cpu],         [$plugin_cpu],        [CPU usage statistics])
5096 AC_PLUGIN([csv],         [yes],                [CSV output plugin])
5097 AC_PLUGIN([curl],        [$with_libcurl],      [CURL generic web statistics])
5098 AC_PLUGIN([curl_json],   [$plugin_curl_json],    [CouchDB statistics])
5099 AC_PLUGIN([curl_xml],   [$plugin_curl_xml],    [CURL generic xml statistics])
5100 AC_PLUGIN([cgroups],     [$plugin_cgroups],    [CGroups CPU usage accounting])
5101 AC_PLUGIN([dbi],         [$with_libdbi],       [General database statistics])
5102 AC_PLUGIN([df],          [$plugin_df],         [Filesystem usage statistics])
5103 AC_PLUGIN([disk],        [$plugin_disk],       [Disk usage statistics])
5104 AC_PLUGIN([dns],         [$with_libpcap],      [DNS traffic analysis])
5105 AC_PLUGIN([email],       [yes],                [EMail statistics])
5106 AC_PLUGIN([entropy],     [$plugin_entropy],    [Entropy statistics])
5107 AC_PLUGIN([ethstat],     [$plugin_ethstat],    [Stats from NIC driver])
5108 AC_PLUGIN([exec],        [yes],                [Execution of external programs])
5109 AC_PLUGIN([filecount],   [yes],                [Count files in directories])
5110 AC_PLUGIN([fscache],     [$plugin_fscache],    [fscache statistics])
5111 AC_PLUGIN([gmond],       [$with_libganglia],   [Ganglia plugin])
5112 AC_PLUGIN([hddtemp],     [yes],                [Query hddtempd])
5113 AC_PLUGIN([interface],   [$plugin_interface],  [Interface traffic statistics])
5114 AC_PLUGIN([ipmi],        [$plugin_ipmi],       [IPMI sensor statistics])
5115 AC_PLUGIN([iptables],    [$with_libiptc],      [IPTables rule counters])
5116 AC_PLUGIN([ipvs],        [$plugin_ipvs],       [IPVS connection statistics])
5117 AC_PLUGIN([irq],         [$plugin_irq],        [IRQ statistics])
5118 AC_PLUGIN([java],        [$with_java],         [Embed the Java Virtual Machine])
5119 AC_PLUGIN([libvirt],     [$plugin_libvirt],    [Virtual machine statistics])
5120 AC_PLUGIN([load],        [$plugin_load],       [System load])
5121 AC_PLUGIN([logfile],     [yes],                [File logging plugin])
5122 AC_PLUGIN([lpar],        [$with_perfstat],     [AIX logical partitions statistics])
5123 AC_PLUGIN([lvm],         [$with_liblvm2app],   [LVM statistics])
5124 AC_PLUGIN([madwifi],     [$have_linux_wireless_h], [Madwifi wireless statistics])
5125 AC_PLUGIN([match_empty_counter], [yes],        [The empty counter match])
5126 AC_PLUGIN([match_hashed], [yes],               [The hashed match])
5127 AC_PLUGIN([match_regex], [yes],                [The regex match])
5128 AC_PLUGIN([match_timediff], [yes],             [The timediff match])
5129 AC_PLUGIN([match_value], [yes],                [The value match])
5130 AC_PLUGIN([mbmon],       [yes],                [Query mbmond])
5131 AC_PLUGIN([md],          [$have_linux_raid_md_u_h], [md (Linux software RAID) devices])
5132 AC_PLUGIN([memcachec],   [$with_libmemcached], [memcachec statistics])
5133 AC_PLUGIN([memcached],   [yes],                [memcached statistics])
5134 AC_PLUGIN([memory],      [$plugin_memory],     [Memory usage])
5135 AC_PLUGIN([mic],         [$with_mic],          [Intel Many Integrated Core stats])
5136 AC_PLUGIN([modbus],      [$with_libmodbus],    [Modbus plugin])
5137 AC_PLUGIN([multimeter],  [$plugin_multimeter], [Read multimeter values])
5138 AC_PLUGIN([mysql],       [$with_libmysql],     [MySQL statistics])
5139 AC_PLUGIN([netapp],      [$with_libnetapp],    [NetApp plugin])
5140 AC_PLUGIN([netlink],     [$with_libmnl],       [Enhanced Linux network statistics])
5141 AC_PLUGIN([network],     [yes],                [Network communication plugin])
5142 AC_PLUGIN([nfs],         [$plugin_nfs],        [NFS statistics])
5143 AC_PLUGIN([nginx],       [$with_libcurl],      [nginx statistics])
5144 AC_PLUGIN([notify_desktop], [$with_libnotify], [Desktop notifications])
5145 AC_PLUGIN([notify_email], [$with_libesmtp],    [Email notifier])
5146 AC_PLUGIN([ntpd],        [yes],                [NTPd statistics])
5147 AC_PLUGIN([numa],        [$plugin_numa],       [NUMA virtual memory statistics])
5148 AC_PLUGIN([nut],         [$with_libupsclient], [Network UPS tools statistics])
5149 AC_PLUGIN([olsrd],       [yes],                [olsrd statistics])
5150 AC_PLUGIN([onewire],     [$with_libowcapi],    [OneWire sensor statistics])
5151 AC_PLUGIN([openvpn],     [yes],                [OpenVPN client statistics])
5152 AC_PLUGIN([oracle],      [$with_oracle],       [Oracle plugin])
5153 AC_PLUGIN([perl],        [$plugin_perl],       [Embed a Perl interpreter])
5154 AC_PLUGIN([pf],          [$have_net_pfvar_h],  [BSD packet filter (PF) statistics])
5155 # FIXME: Check for libevent, too.
5156 AC_PLUGIN([pinba],       [$have_protoc_c],     [Pinba statistics])
5157 AC_PLUGIN([ping],        [$with_liboping],     [Network latency statistics])
5158 AC_PLUGIN([postgresql],  [$with_libpq],        [PostgreSQL database statistics])
5159 AC_PLUGIN([powerdns],    [yes],                [PowerDNS statistics])
5160 AC_PLUGIN([processes],   [$plugin_processes],  [Process statistics])
5161 AC_PLUGIN([protocols],   [$plugin_protocols],  [Protocol (IP, TCP, ...) statistics])
5162 AC_PLUGIN([python],      [$with_python],       [Embed a Python interpreter])
5163 AC_PLUGIN([redis],       [$with_libcredis],    [Redis plugin])
5164 AC_PLUGIN([routeros],    [$with_librouteros],  [RouterOS plugin])
5165 AC_PLUGIN([rrdcached],   [$librrd_rrdc_update], [RRDTool output plugin])
5166 AC_PLUGIN([rrdtool],     [$with_librrd],       [RRDTool output plugin])
5167 AC_PLUGIN([sensors],     [$with_libsensors],   [lm_sensors statistics])
5168 AC_PLUGIN([serial],      [$plugin_serial],     [serial port traffic])
5169 AC_PLUGIN([sigrok],      [$with_libsigrok],    [sigrok acquisition sources])
5170 AC_PLUGIN([snmp],        [$with_libnetsnmp],   [SNMP querying plugin])
5171 AC_PLUGIN([statsd],      [yes],                [StatsD plugin])
5172 AC_PLUGIN([swap],        [$plugin_swap],       [Swap usage statistics])
5173 AC_PLUGIN([syslog],      [$have_syslog],       [Syslog logging plugin])
5174 AC_PLUGIN([table],       [yes],                [Parsing of tabular data])
5175 AC_PLUGIN([tail],        [yes],                [Parsing of logfiles])
5176 AC_PLUGIN([tail_csv],    [yes],                [Parsing of CSV files])
5177 AC_PLUGIN([tape],        [$plugin_tape],       [Tape drive statistics])
5178 AC_PLUGIN([target_notification], [yes],        [The notification target])
5179 AC_PLUGIN([target_replace], [yes],             [The replace target])
5180 AC_PLUGIN([target_scale],[yes],                [The scale target])
5181 AC_PLUGIN([target_set],  [yes],                [The set target])
5182 AC_PLUGIN([target_v5upgrade], [yes],           [The v5upgrade target])
5183 AC_PLUGIN([tcpconns],    [$plugin_tcpconns],   [TCP connection statistics])
5184 AC_PLUGIN([teamspeak2],  [yes],                [TeamSpeak2 server statistics])
5185 AC_PLUGIN([ted],         [$plugin_ted],        [Read The Energy Detective values])
5186 AC_PLUGIN([thermal],     [$plugin_thermal],    [Linux ACPI thermal zone statistics])
5187 AC_PLUGIN([threshold],   [yes],                [Threshold checking plugin])
5188 AC_PLUGIN([tokyotyrant], [$with_libtokyotyrant],  [TokyoTyrant database statistics])
5189 AC_PLUGIN([unixsock],    [yes],                [Unixsock communication plugin])
5190 AC_PLUGIN([uptime],      [$plugin_uptime],     [Uptime statistics])
5191 AC_PLUGIN([users],       [$plugin_users],      [User statistics])
5192 AC_PLUGIN([uuid],        [yes],                [UUID as hostname plugin])
5193 AC_PLUGIN([varnish],     [$with_libvarnish],   [Varnish cache statistics])
5194 AC_PLUGIN([vmem],        [$plugin_vmem],       [Virtual memory statistics])
5195 AC_PLUGIN([vserver],     [$plugin_vserver],    [Linux VServer statistics])
5196 AC_PLUGIN([wireless],    [$plugin_wireless],   [Wireless statistics])
5197 AC_PLUGIN([write_graphite], [yes],             [Graphite / Carbon output plugin])
5198 AC_PLUGIN([write_http],  [$with_libcurl],      [HTTP output plugin])
5199 AC_PLUGIN([write_mongodb], [$with_libmongoc],  [MongoDB output plugin])
5200 AC_PLUGIN([write_redis], [$with_libcredis],    [Redis output plugin])
5201 AC_PLUGIN([write_riemann], [$have_protoc_c],   [Riemann output plugin])
5202 AC_PLUGIN([xmms],        [$with_libxmms],      [XMMS statistics])
5203 AC_PLUGIN([zfs_arc],     [$plugin_zfs_arc],    [ZFS ARC statistics])
5204
5205 dnl Default configuration file
5206 # Load either syslog or logfile
5207 LOAD_PLUGIN_SYSLOG=""
5208 LOAD_PLUGIN_LOGFILE=""
5209
5210 AC_MSG_CHECKING([which default log plugin to load])
5211 default_log_plugin="none"
5212 if test "x$enable_syslog" = "xyes"
5213 then
5214         default_log_plugin="syslog"
5215 else
5216         LOAD_PLUGIN_SYSLOG="##"
5217 fi
5218
5219 if test "x$enable_logfile" = "xyes"
5220 then
5221         if test "x$default_log_plugin" = "xnone"
5222         then
5223                 default_log_plugin="logfile"
5224         else
5225                 LOAD_PLUGIN_LOGFILE="#"
5226         fi
5227 else
5228         LOAD_PLUGIN_LOGFILE="##"
5229 fi
5230 AC_MSG_RESULT([$default_log_plugin])
5231
5232 AC_SUBST(LOAD_PLUGIN_SYSLOG)
5233 AC_SUBST(LOAD_PLUGIN_LOGFILE)
5234
5235 DEFAULT_LOG_LEVEL="info"
5236 if test "x$enable_debug" = "xyes"
5237 then
5238         DEFAULT_LOG_LEVEL="debug"
5239 fi
5240 AC_SUBST(DEFAULT_LOG_LEVEL)
5241
5242 # Load only one of rrdtool, network, csv in the default config.
5243 LOAD_PLUGIN_RRDTOOL=""
5244 LOAD_PLUGIN_NETWORK=""
5245 LOAD_PLUGIN_CSV=""
5246
5247 AC_MSG_CHECKING([which default write plugin to load])
5248 default_write_plugin="none"
5249 if test "x$enable_rrdtool" = "xyes"
5250 then
5251         default_write_plugin="rrdtool"
5252 else
5253         LOAD_PLUGIN_RRDTOOL="##"
5254 fi
5255
5256 if test "x$enable_network" = "xyes"
5257 then
5258         if test "x$default_write_plugin" = "xnone"
5259         then
5260                 default_write_plugin="network"
5261         else
5262                 LOAD_PLUGIN_NETWORK="#"
5263         fi
5264 else
5265         LOAD_PLUGIN_NETWORK="##"
5266 fi
5267
5268 if test "x$enable_csv" = "xyes"
5269 then
5270         if test "x$default_write_plugin" = "xnone"
5271         then
5272                 default_write_plugin="csv"
5273         else
5274                 LOAD_PLUGIN_CSV="#"
5275         fi
5276 else
5277         LOAD_PLUGIN_CSV="##"
5278 fi
5279 AC_MSG_RESULT([$default_write_plugin])
5280
5281 AC_SUBST(LOAD_PLUGIN_RRDTOOL)
5282 AC_SUBST(LOAD_PLUGIN_NETWORK)
5283 AC_SUBST(LOAD_PLUGIN_CSV)
5284
5285 dnl ip_vs.h
5286 if test "x$ac_system" = "xLinux" \
5287         && test "x$have_linux_ip_vs_h$have_net_ip_vs_h$have_ip_vs_h" = "xnonono"
5288 then
5289         enable_ipvs="$enable_ipvs (ip_vs.h not found)"
5290 fi
5291
5292 if test "x$ip_vs_h_needs_kernel_cflags" = "xyes"
5293 then
5294         enable_ipvs="$enable_ipvs (needs $KERNEL_CFLAGS)"
5295 fi
5296
5297 dnl Perl bindings
5298 PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
5299 AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
5300 [
5301         if test "x$withval" != "xno" && test "x$withval" != "xyes"
5302         then
5303                 PERL_BINDINGS_OPTIONS="$withval"
5304                 with_perl_bindings="yes"
5305         else
5306                 with_perl_bindings="$withval"
5307         fi
5308 ],
5309 [
5310         if test -n "$perl_interpreter"
5311         then
5312                 with_perl_bindings="yes"
5313         else
5314                 with_perl_bindings="no (no perl interpreter found)"
5315         fi
5316 ])
5317 if test "x$with_perl_bindings" = "xyes"
5318 then
5319         PERL_BINDINGS="perl"
5320 else
5321         PERL_BINDINGS=""
5322 fi
5323 AC_SUBST(PERL_BINDINGS)
5324 AC_SUBST(PERL_BINDINGS_OPTIONS)
5325
5326 dnl libcollectdclient
5327 LCC_VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d'.' -f1`
5328 LCC_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d'.' -f2`
5329 LCC_VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d'.' -f3`
5330
5331 LCC_VERSION_EXTRA=`echo $PACKAGE_VERSION | cut -d'.' -f4-`
5332
5333 LCC_VERSION_STRING="$LCC_VERSION_MAJOR.$LCC_VERSION_MINOR.$LCC_VERSION_PATCH"
5334
5335 AC_SUBST(LCC_VERSION_MAJOR)
5336 AC_SUBST(LCC_VERSION_MINOR)
5337 AC_SUBST(LCC_VERSION_PATCH)
5338 AC_SUBST(LCC_VERSION_EXTRA)
5339 AC_SUBST(LCC_VERSION_STRING)
5340
5341 AC_CONFIG_FILES(src/libcollectdclient/collectd/lcc_features.h)
5342
5343 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/libcollectdclient/Makefile src/libcollectdclient/libcollectdclient.pc src/liboconfig/Makefile bindings/Makefile bindings/java/Makefile)
5344
5345 if test "x$with_librrd" = "xyes" \
5346         && test "x$librrd_threadsafe" != "xyes"
5347 then
5348         with_librrd="yes (warning: librrd is not thread-safe)"
5349 fi
5350
5351 if test "x$with_libperl" = "xyes"
5352 then
5353         with_libperl="yes (version `$perl_interpreter -MConfig -e 'print $Config{version};'`)"
5354 else
5355         enable_perl="no (needs libperl)"
5356 fi
5357
5358 if test "x$enable_perl" = "xno" && test "x$c_cv_have_perl_ithreads" = "xno"
5359 then
5360         enable_perl="no (libperl doesn't support ithreads)"
5361 fi
5362
5363 if test "x$with_perl_bindings" = "xyes" \
5364         && test "x$PERL_BINDINGS_OPTIONS" != "x"
5365 then
5366         with_perl_bindings="yes ($PERL_BINDINGS_OPTIONS)"
5367 fi
5368
5369 cat <<EOF;
5370
5371 Configuration:
5372   Libraries:
5373     intel mic . . . . . . $with_mic
5374     libaquaero5 . . . . . $with_libaquaero5
5375     libcurl . . . . . . . $with_libcurl
5376     libdbi  . . . . . . . $with_libdbi
5377     libcredis . . . . . . $with_libcredis
5378     libesmtp  . . . . . . $with_libesmtp
5379     libganglia  . . . . . $with_libganglia
5380     libgcrypt . . . . . . $with_libgcrypt
5381     libiokit  . . . . . . $with_libiokit
5382     libiptc . . . . . . . $with_libiptc
5383     libjvm  . . . . . . . $with_java
5384     libkstat  . . . . . . $with_kstat
5385     libkvm  . . . . . . . $with_libkvm
5386     libmemcached  . . . . $with_libmemcached
5387     libmnl  . . . . . . . $with_libmnl
5388     libmodbus . . . . . . $with_libmodbus
5389     libmysql  . . . . . . $with_libmysql
5390     libnetapp . . . . . . $with_libnetapp
5391     libnetsnmp  . . . . . $with_libnetsnmp
5392     libnotify . . . . . . $with_libnotify
5393     liboconfig  . . . . . $with_liboconfig
5394     libopenipmi . . . . . $with_libopenipmipthread
5395     liboping  . . . . . . $with_liboping
5396     libpcap . . . . . . . $with_libpcap
5397     libperfstat . . . . . $with_perfstat
5398     libperl . . . . . . . $with_libperl
5399     libpq . . . . . . . . $with_libpq
5400     libpthread  . . . . . $with_libpthread
5401     librabbitmq . . . . . $with_librabbitmq
5402     librouteros . . . . . $with_librouteros
5403     librrd  . . . . . . . $with_librrd
5404     libsensors  . . . . . $with_libsensors
5405     libsigrok   . . . . . $with_libsigrok
5406     libstatgrab . . . . . $with_libstatgrab
5407     libtokyotyrant  . . . $with_libtokyotyrant
5408     libupsclient  . . . . $with_libupsclient
5409     libvarnish  . . . . . $with_libvarnish
5410     libvirt . . . . . . . $with_libvirt
5411     libxml2 . . . . . . . $with_libxml2
5412     libxmms . . . . . . . $with_libxmms
5413     libyajl . . . . . . . $with_libyajl
5414     libevent  . . . . . . $with_libevent
5415     protobuf-c  . . . . . $have_protoc_c
5416     oracle  . . . . . . . $with_oracle
5417     python  . . . . . . . $with_python
5418
5419   Features:
5420     daemon mode . . . . . $enable_daemon
5421     debug . . . . . . . . $enable_debug
5422
5423   Bindings:
5424     perl  . . . . . . . . $with_perl_bindings
5425
5426   Modules:
5427     aggregation . . . . . $enable_aggregation
5428     amqp    . . . . . . . $enable_amqp
5429     apache  . . . . . . . $enable_apache
5430     apcups  . . . . . . . $enable_apcups
5431     aquaero . . . . . . . $enable_aquaero
5432     apple_sensors . . . . $enable_apple_sensors
5433     ascent  . . . . . . . $enable_ascent
5434     battery . . . . . . . $enable_battery
5435     bind  . . . . . . . . $enable_bind
5436     conntrack . . . . . . $enable_conntrack
5437     contextswitch . . . . $enable_contextswitch
5438     cgroups . . . . . . . $enable_cgroups
5439     cpu . . . . . . . . . $enable_cpu
5440     cpufreq . . . . . . . $enable_cpufreq
5441     csv . . . . . . . . . $enable_csv
5442     curl  . . . . . . . . $enable_curl
5443     curl_json . . . . . . $enable_curl_json
5444     curl_xml  . . . . . . $enable_curl_xml
5445     dbi . . . . . . . . . $enable_dbi
5446     df  . . . . . . . . . $enable_df
5447     disk  . . . . . . . . $enable_disk
5448     dns . . . . . . . . . $enable_dns
5449     email . . . . . . . . $enable_email
5450     entropy . . . . . . . $enable_entropy
5451     ethstat . . . . . . . $enable_ethstat
5452     exec  . . . . . . . . $enable_exec
5453     filecount . . . . . . $enable_filecount
5454     fscache . . . . . . . $enable_fscache
5455     gmond . . . . . . . . $enable_gmond
5456     hddtemp . . . . . . . $enable_hddtemp
5457     interface . . . . . . $enable_interface
5458     ipmi  . . . . . . . . $enable_ipmi
5459     iptables  . . . . . . $enable_iptables
5460     ipvs  . . . . . . . . $enable_ipvs
5461     irq . . . . . . . . . $enable_irq
5462     java  . . . . . . . . $enable_java
5463     libvirt . . . . . . . $enable_libvirt
5464     load  . . . . . . . . $enable_load
5465     logfile . . . . . . . $enable_logfile
5466     lpar  . . . . . . . . $enable_lpar
5467     lvm . . . . . . . . . $enable_lvm
5468     madwifi . . . . . . . $enable_madwifi
5469     match_empty_counter . $enable_match_empty_counter
5470     match_hashed  . . . . $enable_match_hashed
5471     match_regex . . . . . $enable_match_regex
5472     match_timediff  . . . $enable_match_timediff
5473     match_value . . . . . $enable_match_value
5474     mbmon . . . . . . . . $enable_mbmon
5475     md  . . . . . . . . . $enable_md
5476     memcachec . . . . . . $enable_memcachec
5477     memcached . . . . . . $enable_memcached
5478     memory  . . . . . . . $enable_memory
5479     modbus  . . . . . . . $enable_modbus
5480     multimeter  . . . . . $enable_multimeter
5481     mysql . . . . . . . . $enable_mysql
5482     netapp  . . . . . . . $enable_netapp
5483     netlink . . . . . . . $enable_netlink
5484     network . . . . . . . $enable_network
5485     nfs . . . . . . . . . $enable_nfs
5486     nginx . . . . . . . . $enable_nginx
5487     notify_desktop  . . . $enable_notify_desktop
5488     notify_email  . . . . $enable_notify_email
5489     ntpd  . . . . . . . . $enable_ntpd
5490     numa  . . . . . . . . $enable_numa
5491     nut . . . . . . . . . $enable_nut
5492     olsrd . . . . . . . . $enable_olsrd
5493     onewire . . . . . . . $enable_onewire
5494     openvpn . . . . . . . $enable_openvpn
5495     oracle  . . . . . . . $enable_oracle
5496     perl  . . . . . . . . $enable_perl
5497     pf  . . . . . . . . . $enable_pf
5498     pinba . . . . . . . . $enable_pinba
5499     ping  . . . . . . . . $enable_ping
5500     postgresql  . . . . . $enable_postgresql
5501     powerdns  . . . . . . $enable_powerdns
5502     processes . . . . . . $enable_processes
5503     protocols . . . . . . $enable_protocols
5504     python  . . . . . . . $enable_python
5505     redis . . . . . . . . $enable_redis
5506     routeros  . . . . . . $enable_routeros
5507     rrdcached . . . . . . $enable_rrdcached
5508     rrdtool . . . . . . . $enable_rrdtool
5509     sensors . . . . . . . $enable_sensors
5510     serial  . . . . . . . $enable_serial
5511     sigrok  . . . . . . . $enable_sigrok
5512     snmp  . . . . . . . . $enable_snmp
5513     statsd  . . . . . . . $enable_statsd
5514     swap  . . . . . . . . $enable_swap
5515     syslog  . . . . . . . $enable_syslog
5516     table . . . . . . . . $enable_table
5517     tail  . . . . . . . . $enable_tail
5518     tail_csv  . . . . . . $enable_tail_csv
5519     tape  . . . . . . . . $enable_tape
5520     target_notification . $enable_target_notification
5521     target_replace  . . . $enable_target_replace
5522     target_scale  . . . . $enable_target_scale
5523     target_set  . . . . . $enable_target_set
5524     target_v5upgrade  . . $enable_target_v5upgrade
5525     tcpconns  . . . . . . $enable_tcpconns
5526     teamspeak2  . . . . . $enable_teamspeak2
5527     ted . . . . . . . . . $enable_ted
5528     thermal . . . . . . . $enable_thermal
5529     threshold . . . . . . $enable_threshold
5530     tokyotyrant . . . . . $enable_tokyotyrant
5531     unixsock  . . . . . . $enable_unixsock
5532     uptime  . . . . . . . $enable_uptime
5533     users . . . . . . . . $enable_users
5534     uuid  . . . . . . . . $enable_uuid
5535     varnish . . . . . . . $enable_varnish
5536     vmem  . . . . . . . . $enable_vmem
5537     vserver . . . . . . . $enable_vserver
5538     wireless  . . . . . . $enable_wireless
5539     write_graphite  . . . $enable_write_graphite
5540     write_http  . . . . . $enable_write_http
5541     write_mongodb . . . . $enable_write_mongodb
5542     write_redis . . . . . $enable_write_redis
5543     write_riemann . . . . $enable_write_riemann
5544     xmms  . . . . . . . . $enable_xmms
5545     zfs_arc . . . . . . . $enable_zfs_arc
5546
5547 EOF
5548
5549 if test "x$dependency_error" = "xyes"; then
5550         AC_MSG_ERROR("Some plugins are missing dependencies - see the summary above for details")
5551 fi
5552
5553 if test "x$dependency_warning" = "xyes"; then
5554         AC_MSG_WARN("Some plugins seem to have missing dependencies but have been enabled forcibly - see the summary above for details")
5555 fi
5556
5557 # vim: set fdm=marker :