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