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