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