Merge branch 'collectd-3.10'
[collectd.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(collectd, 3.10.2)
3 AC_CONFIG_SRCDIR(src/collectd.c)
4 AC_CONFIG_HEADERS(src/config.h)
5 AM_INIT_AUTOMAKE(dist-bzip2)
6 AC_LANG(C)
7
8 AC_PREFIX_DEFAULT("/opt/collectd")
9
10 #
11 # Checks for programs.
12 #
13 AC_PROG_CC
14 AC_PROG_CPP
15 AC_PROG_INSTALL
16 AC_PROG_LN_S
17 AC_PROG_MAKE_SET
18 AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes")
19
20 dnl configure libtool
21 AC_DISABLE_STATIC
22 AC_LIBLTDL_CONVENIENCE
23 AC_SUBST(LTDLINCL)
24 AC_SUBST(LIBLTDL)
25 AC_LIBTOOL_DLOPEN
26 AC_PROG_LIBTOOL
27 #AC_PROG_RANLIB
28 AC_CONFIG_SUBDIRS(libltdl src/libconfig)
29
30 #
31 # Checks for header files.
32 #
33 AC_HEADER_STDC
34 AC_HEADER_SYS_WAIT
35 AC_HEADER_DIRENT
36 AC_CHECK_HEADERS(stdint.h)
37 AC_CHECK_HEADERS(stdio.h)
38 AC_CHECK_HEADERS(errno.h)
39 AC_CHECK_HEADERS(math.h)
40 AC_CHECK_HEADERS(syslog.h)
41 AC_CHECK_HEADERS(fcntl.h)
42 AC_CHECK_HEADERS(signal.h)
43 AC_CHECK_HEADERS(assert.h)
44 AC_CHECK_HEADERS(sys/types.h)
45 AC_CHECK_HEADERS(sys/socket.h)
46 AC_CHECK_HEADERS(sys/select.h)
47 AC_CHECK_HEADERS(sys/poll.h)
48 AC_CHECK_HEADERS(netdb.h)
49 AC_CHECK_HEADERS(arpa/inet.h)
50 AC_CHECK_HEADERS(sys/resource.h)
51 AC_CHECK_HEADERS(sys/param.h)
52
53 # For ping library
54 AC_CHECK_HEADERS(netinet/in_systm.h, [], [],
55 [#if HAVE_STDINT_H
56 # include <stdint.h>
57 #endif
58 #if HAVE_SYS_TYPES_H
59 # include <sys/types.h>
60 #endif
61 ])
62 AC_CHECK_HEADERS(netinet/in.h, [], [],
63 [#if HAVE_STDINT_H
64 # include <stdint.h>
65 #endif
66 #if HAVE_SYS_TYPES_H
67 # include <sys/types.h>
68 #endif
69 #if HAVE_NETINET_IN_SYSTM_H
70 # include <netinet/in_systm.h>
71 #endif
72 ])
73 AC_CHECK_HEADERS(netinet/ip.h, [], [],
74 [#if HAVE_STDINT_H
75 # include <stdint.h>
76 #endif
77 #if HAVE_SYS_TYPES_H
78 # include <sys/types.h>
79 #endif
80 #if HAVE_NETINET_IN_SYSTM_H
81 # include <netinet/in_systm.h>
82 #endif
83 #if HAVE_NETINET_IN_H
84 # include <netinet/in.h>
85 #endif
86 ])
87 AC_CHECK_HEADERS(netinet/ip_icmp.h, [], [],
88 [#if HAVE_STDINT_H
89 # include <stdint.h>
90 #endif
91 #if HAVE_SYS_TYPES_H
92 # include <sys/types.h>
93 #endif
94 #if HAVE_NETINET_IN_SYSTM_H
95 # include <netinet/in_systm.h>
96 #endif
97 #if HAVE_NETINET_IN_H
98 # include <netinet/in.h>
99 #endif
100 #if HAVE_NETINET_IP_H
101 # include <netinet/ip.h>
102 #endif
103 ])
104 AC_CHECK_HEADERS(netinet/ip_var.h, [], [],
105 [#if HAVE_STDINT_H
106 # include <stdint.h>
107 #endif
108 #if HAVE_SYS_TYPES_H
109 # include <sys/types.h>
110 #endif
111 #if HAVE_NETINET_IN_SYSTM_H
112 # include <netinet/in_systm.h>
113 #endif
114 #if HAVE_NETINET_IN_H
115 # include <netinet/in.h>
116 #endif
117 #if HAVE_NETINET_IP_H
118 # include <netinet/ip.h>
119 #endif
120 ])
121 AC_CHECK_HEADERS(netinet/ip6.h, [], [],
122 [#if HAVE_STDINT_H
123 # include <stdint.h>
124 #endif
125 #if HAVE_SYS_TYPES_H
126 # include <sys/types.h>
127 #endif
128 #if HAVE_NETINET_IN_SYSTM_H
129 # include <netinet/in_systm.h>
130 #endif
131 #if HAVE_NETINET_IN_H
132 # include <netinet/in.h>
133 #endif
134 ])
135 AC_CHECK_HEADERS(netinet/icmp6.h, [], [],
136 [#if HAVE_STDINT_H
137 # include <stdint.h>
138 #endif
139 #if HAVE_SYS_TYPES_H
140 # include <sys/types.h>
141 #endif
142 #if HAVE_NETINET_IN_SYSTM_H
143 # include <netinet/in_systm.h>
144 #endif
145 #if HAVE_NETINET_IN_H
146 # include <netinet/in.h>
147 #endif
148 #if HAVE_NETINET_IP6_H
149 # include <netinet/ip6.h>
150 #endif
151 ])
152
153 # For cpu modules
154 AC_CHECK_HEADERS(sys/sysctl.h sys/dkstat.h)
155 AC_CHECK_HEADERS(mach/mach_init.h)
156 AC_CHECK_HEADERS(mach/host_priv.h)
157 AC_CHECK_HEADERS(mach/mach_error.h)
158 AC_CHECK_HEADERS(mach/mach_host.h)
159 AC_CHECK_HEADERS(mach/mach_port.h)
160 AC_CHECK_HEADERS(mach/mach_types.h)
161 AC_CHECK_HEADERS(mach/message.h)
162 AC_CHECK_HEADERS(mach/processor_set.h)
163 AC_CHECK_HEADERS(mach/processor.h)
164 AC_CHECK_HEADERS(mach/processor_info.h)
165 AC_CHECK_HEADERS(mach/task.h)
166 AC_CHECK_HEADERS(mach/thread_act.h)
167 AC_CHECK_HEADERS(mach/vm_region.h)
168 AC_CHECK_HEADERS(mach/vm_map.h)
169 AC_CHECK_HEADERS(mach/vm_prot.h)
170 AC_CHECK_HEADERS(mach/vm_statistics.h)
171 AC_CHECK_HEADERS(mach/kern_return.h)
172
173 # For hddtemp module
174 AC_CHECK_HEADERS(linux/major.h)
175
176 # For the apple_sensors module
177 AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h)
178 AC_CHECK_HEADERS(IOKit/IOKitLib.h)
179 AC_CHECK_HEADERS(IOKit/IOTypes.h)
180
181 # For the battery plugin
182 AC_CHECK_HEADERS(IOKit/ps/IOPowerSources.h, [], [],
183 [
184 #if HAVE_IOKIT_IOKITLIB_H
185 #  include <IOKit/IOKitLib.h>
186 #endif
187 #if HAVE_IOKIT_IOTYPES_H
188 #  include <IOKit/IOTypes.h>
189 #endif
190 ])
191 AC_CHECK_HEADERS(IOKit/ps/IOPSKeys.h)
192
193 # For the `disk' plugin
194 AC_CHECK_HEADERS(IOKit/IOBSD.h)
195 AC_CHECK_HEADERS(IOKit/storage/IOBlockStorageDriver.h)
196
197 # For load module
198 AC_CHECK_HEADERS(sys/loadavg.h)
199
200 # For the processes plugin
201 AC_CHECK_HEADERS(linux/config.h)
202
203 # For the swap module
204 AC_CHECK_HEADERS(sys/swap.h)
205
206 # For users module
207 AC_CHECK_HEADERS(utmp.h)
208 AC_CHECK_HEADERS(utmpx.h)
209
210 # For traffic plugin
211 AC_CHECK_HEADERS(ifaddrs.h)
212 AC_CHECK_HEADERS(net/if.h, [], [],
213 [
214 #if HAVE_SYS_TYPES_H
215 #  include <sys/types.h>
216 #endif
217 #if HAVE_SYS_SOCKET_H
218 #  include <sys/socket.h>
219 #endif
220 ])
221 AC_CHECK_HEADERS(linux/if.h, [], [],
222 [
223 #if HAVE_SYS_TYPES_H
224 #  include <sys/types.h>
225 #endif
226 #if HAVE_SYS_SOCKET_H
227 #  include <sys/socket.h>
228 #endif
229 ])
230 AC_CHECK_HEADERS(linux/netdevice.h, [], [],
231 [
232 #if HAVE_SYS_TYPES_H
233 #  include <sys/types.h>
234 #endif
235 #if HAVE_SYS_SOCKET_H
236 #  include <sys/socket.h>
237 #endif
238 #if HAVE_LINUX_IF_H
239 # include <linux/if.h>
240 #endif
241 ])
242
243 # For apache plugin
244 AC_CHECK_HEADERS(curl/curl.h)
245
246 # For quota module
247 AC_CHECK_HEADERS(grp.h pwd.h sys/ucred.h)
248 AC_CHECK_HEADERS(ctype.h)
249 AC_CHECK_HEADERS(limits.h)
250 AC_CHECK_HEADERS(sys/quota.h)
251 AC_CHECK_HEADERS(xfs/xqm.h)
252
253 # For mount interface
254 AC_CHECK_HEADERS(fs_info.h)
255 AC_CHECK_HEADERS(fshelp.h)
256 AC_CHECK_HEADERS(paths.h)
257 AC_CHECK_HEADERS(mntent.h)
258 AC_CHECK_HEADERS(mnttab.h)
259 AC_CHECK_HEADERS(sys/fstyp.h)
260 AC_CHECK_HEADERS(sys/fs_types.h)
261 AC_CHECK_HEADERS(sys/mntent.h)
262 AC_CHECK_HEADERS(sys/mnttab.h)
263 AC_CHECK_HEADERS(sys/mount.h)
264 AC_CHECK_HEADERS(sys/statfs.h)
265 AC_CHECK_HEADERS(sys/statvfs.h)
266 AC_CHECK_HEADERS(sys/vfs.h)
267 AC_CHECK_HEADERS(sys/vfstab.h)
268
269 # For the swap plugin, FreeBSD
270 AC_CHECK_HEADERS(kvm.h)
271
272 # For debugging interface (variable number of arguments)
273 AC_CHECK_HEADERS(stdarg.h)
274
275 dnl Checking for libraries
276 AC_CHECK_LIB(m, ext)
277
278 #
279 # Checks for typedefs, structures, and compiler characteristics.
280 #
281 AC_C_CONST
282 AC_TYPE_PID_T
283 AC_TYPE_SIZE_T
284 AC_TYPE_UID_T
285 AC_HEADER_TIME
286
287 #
288 # Checks for library functions.
289 #
290 AC_PROG_GCC_TRADITIONAL
291 AC_CHECK_FUNCS(gettimeofday select strdup strtol)
292 AC_CHECK_FUNCS(getaddrinfo getnameinfo)
293 AC_CHECK_FUNCS(strchr memcpy strstr strcmp strncmp strncpy strlen)
294 AC_CHECK_FUNCS(strncasecmp strcasecmp)
295 AC_CHECK_FUNCS(openlog syslog closelog)
296
297 socket_needs_socket="no"
298 AC_CHECK_FUNCS(socket, [], AC_CHECK_LIB(socket, socket, [socket_needs_socket="yes"], AC_MSG_ERROR(cannot find socket)))
299 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
300
301 nanosleep_needs_rt="no"
302 AC_CHECK_FUNCS(nanosleep, [], AC_CHECK_LIB(rt, nanosleep, [nanosleep_needs_rt="yes"], AC_MSG_ERROR(cannot find nanosleep)))
303 AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes")
304
305 # For cpu module
306 AC_CHECK_FUNCS(sysctlbyname, [have_sysctlbyname="yes"], [have_sysctlbyname="no"])
307
308 # For df module
309 AC_CHECK_FUNCS(statfs statvfs)
310
311 # For load module
312 AC_CHECK_FUNCS(getloadavg, [have_getloadavg="yes"], [have_getloadavg="no"])
313
314 # For the `processes' plugin
315 AC_CHECK_FUNCS(thread_info)
316
317 # For users module
318 AC_CHECK_FUNCS(getutent getutxent)
319
320 # For quota module
321 AC_CHECK_FUNCS(quotactl)
322 AC_CHECK_FUNCS(getgrgid getpwuid)
323
324 # For traffic module
325 AC_CHECK_FUNCS(getifaddrs)
326
327 # For mount interface
328 #AC_CHECK_FUNCS(getfsent getvfsent)
329
330 have_getfsstat="no"
331 AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"])
332 have_getvfsstat="no"
333 AC_CHECK_FUNCS(getvfsstat, [have_getvfsstat="yes"])
334 have_listmntent="no"
335 AC_CHECK_FUNCS(listmntent, [have_listmntent="yes"])
336
337 have_getmntent="no"
338 AC_CHECK_FUNCS(getmntent, [have_getmntent="c"])
339 if test "x$have_getmntent" = "xno"; then
340         AC_CHECK_LIB(sun, getmntent, [have_getmntent="sun"])
341 fi
342 if test "x$have_getmntent" = "xno"; then
343         AC_CHECK_LIB(seq, getmntent, [have_getmntent="seq"])
344 fi
345 if test "x$have_getmntent" = "xno"; then
346         AC_CHECK_LIB(gen, getmntent, [have_getmntent="gen"])
347 fi
348
349 if test "x$have_getmntent" = "xc"; then
350         AC_CACHE_CHECK([whether getmntent takes one argument],
351                 [have_one_getmntent],
352                 AC_COMPILE_IFELSE(
353                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
354 #include <mntent.h>
355 #include "$srcdir/src/utils_mount.h"]],
356                                 [[
357                                  FILE *fh;
358                                  struct mntent *me;
359                                  fh = setmntent ("/etc/mtab", "r");
360                                  me = getmntent (fh);
361                                 ]]
362                         ),
363                         [have_one_getmntent="yes"],
364                         [have_one_getmntent="no"]
365                 )
366         )
367         AC_CACHE_CHECK([whether getmntent takes two arguments],
368                 [have_two_getmntent],
369                 AC_COMPILE_IFELSE(
370                         AC_LANG_PROGRAM([[AC_INCLUDES_DEFAULT
371 #include <sys/mnttab.h>
372 #include "$srcdir/src/utils_mount.h"]],
373                                 [[
374                                  FILE *fh;
375                                  struct mnttab mt;
376                                  int status;
377                                  fh = fopen ("/etc/mnttab", "r");
378                                  status = getmntent (fh, &mt);
379                                 ]]
380                         ),
381                         [have_two_getmntent="yes"],
382                         [have_two_getmntent="no"]
383                 )
384         )
385 fi
386
387 # Check for different versions of `getmntent' here..
388
389 if test "x$have_getmntent" = "xc"; then
390         if test "x$have_one_getmntent" = "xyes"; then
391                 AC_DEFINE(HAVE_ONE_GETMNTENT, 1,
392                           [Define if the function getmntent exists and takes one argument.])
393         fi
394         if test "x$have_two_getmntent" = "xyes"; then
395                 AC_DEFINE(HAVE_TWO_GETMNTENT, 1,
396                           [Define if the function getmntent exists and takes two arguments.])
397         fi
398 fi
399 if test "x$have_getmntent" = "xsun"; then
400         AC_DEFINE(HAVE_SUN_GETMNTENT, 1,
401                   [Define if the function getmntent exists. It's the version from libsun.])
402 fi
403 if test "x$have_getmntent" = "xseq"; then
404         AC_DEFINE(HAVE_SEQ_GETMNTENT, 1,
405                   [Define if the function getmntent exists. It's the version from libseq.])
406 fi
407 if test "x$have_getmntent" = "xgen"; then
408         AC_DEFINE(HAVE_GEN_GETMNTENT, 1,
409                   [Define if the function getmntent exists. It's the version from libgen.])
410 fi
411
412 # Check for structures
413 AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors],
414         [AC_DEFINE(HAVE_STRUCT_IF_DATA, 1, [Define if struct if_data exists and is usable.])],
415         [],
416         [
417         #include <sys/types.h>
418         #include <sys/socket.h>
419         #include <net/if.h>
420         ])
421 AC_CHECK_MEMBERS([struct net_device_stats.rx_bytes, struct net_device_stats.tx_packets, struct net_device_stats.rx_errors],
422         [AC_DEFINE(HAVE_STRUCT_NET_DEVICE_STATS, 1, [Define if struct net_device_stats exists and is usable.])],
423         [],
424         [
425         #include <sys/types.h>
426         #include <sys/socket.h>
427         #include <linux/if.h>
428         #include <linux/netdevice.h>
429         ])
430
431 AC_MSG_CHECKING([for kernel type ($host_os)])
432 case $host_os in
433         *linux*)
434         AC_DEFINE([KERNEL_LINUX], 1, [True if program is to be compiled for a Linux kernel])
435         ac_system="Linux"
436         ;;
437         *solaris*)
438         AC_DEFINE([KERNEL_SOLARIS], 1, [True if program is to be compiled for a Solaris kernel])
439         ac_system="Solaris"
440         ;;
441         *)
442         ac_system="unknown"
443 esac
444 AC_MSG_RESULT([$ac_system])
445
446 with_libresolv="yes"
447 AC_CHECK_LIB(resolv, res_search,
448 [
449         AC_DEFINE(HAVE_LIBRESOLV, 1, [Define to 1 if you have the 'resolv' library (-lresolv).])
450 ],
451 [with_libresolv="no"])
452 AM_CONDITIONAL(BUILD_WITH_LIBRESOLV, test "x$with_libresolv" = "xyes")
453
454
455 m4_divert_once([HELP_WITH], [
456 collectd additional packages:])
457
458 # AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
459 AC_ARG_WITH(rrdtool, [AS_HELP_STRING([--with-rrdtool@<:@=PREFIX@:>@], [Path to rrdtool.])],
460 [       if test "x$withval" != "xno" && test "x$withval" != "xyes"
461         then
462                 LDFLAGS="$LDFLAGS -L$withval/lib"
463                 CPPFLAGS="$CPPFLAGS -I$withval/include"
464                 with_rrdtool="yes"
465         fi
466 ], [with_rrdtool="yes"])
467 if test "x$with_rrdtool" = "xyes"
468 then
469         AC_CHECK_LIB(rrd, rrd_update,
470         [
471                 AC_DEFINE(HAVE_LIBRRD, 1, [Define to 1 if you have the rrd library (-lrrd).])
472         ],
473         [with_rrdtool="no (librrd not found)"], [-lm])
474 fi
475 if test "x$with_rrdtool" = "xyes"
476 then
477         AC_CHECK_HEADERS(rrd.h,, [with_rrdtool="no (rrd.h not found)"])
478 fi
479 if test "x$with_rrdtool" = "xyes"
480 then
481         collect_rrdtool=1
482 else
483         collect_rrdtool=0
484 fi
485 AC_DEFINE_UNQUOTED(COLLECT_RRDTOOL, [$collect_rrdtool],
486         [Wether or not to use rrdtool library])
487 AM_CONDITIONAL(BUILD_WITH_RRDTOOL, test "x$with_rrdtool" = "xyes")
488
489 #AC_ARG_WITH(pth, [AS_HELP_STRING([--with-pth=@<:@=PREFIX@:>@], [Path to pth (experimental).]),
490 #[      if test "x$withval" != "xno" && test "x$withval" != "xyes"
491 #       then
492 #               LDFLAGS="$LDFLAGS -L$withval/lib"
493 #               CPPFLAGS="$CPPFLAGS -I$withval/include"
494 #               with_pth="yes"
495 #       fi
496 #], [with_pth="no"])
497 #if test "x$with_pth" = "xyes"
498 #then
499 #       AC_CHECK_LIB(pth, pth_init,, [with_pth="no (libpth not found)"], [])
500 #fi
501 #if test "x$with_pth" = "xyes"
502 #then
503 #       AC_CHECK_HEADERS(pth.h,, [with_pth="no (pth.h not found)"])
504 #fi
505 #if test "x$with_pth" = "xyes"
506 #then
507 #       collect_pth=1
508 #else
509 #       collect_pth=0
510 #fi
511 #AC_DEFINE_UNQUOTED(COLLECT_PTH, [$collect_pth],
512 #       [Wether or not to use pth (portable threads) library])
513 #AM_CONDITIONAL(BUILD_WITH_PTH, test "x$with_pth" = "xyes")
514
515 if test "$ac_system" = "Solaris"
516 then
517         with_kstat="yes"
518         with_devinfo="yes"
519 else
520         with_kstat="no (Solaris only)"
521         with_devinfo="no (Solaris only)"
522 fi
523
524 if test "x$with_kstat" = "xyes"
525 then
526         AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
527 fi
528 if test "x$with_kstat" = "xyes"
529 then
530         AC_CHECK_LIB(devinfo, di_init,, [with_devinfo="no (not found)"])
531         AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
532 fi
533 if test "x$with_kstat" = "xyes"
534 then
535         collect_kstat=1
536 else
537         collect_kstat=0
538 fi
539 AC_DEFINE_UNQUOTED(COLLECT_KSTAT, [$collect_kstat],
540         [Wether or not to use kstat library (Solaris)])
541 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
542 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
543
544 ### BEGIN of check for libcurl ###
545 with_curl_config="curl-config"
546 with_curl_prefix=0
547 with_curl_libs=""
548 AC_ARG_WITH(libcurl, [AS_HELP_STRING([--with-libcurl@<:@=PREFIX@:>@], [Path to libcurl.])],
549 [
550         if test "x$withval" != "xno" -a "x$withval" != "xyes"
551         then
552                 if test -x "$withval/bin/curl-config"
553                 then
554                         with_curl_config="$withval/bin/curl-config"
555                         with_curl_prefix=1
556                 fi
557         fi
558         if test "x$withval" = "xno"
559         then
560                 with_libcurl="no"
561         else
562                 with_libcurl="yes"
563         fi
564 ],
565 [
566         with_libcurl="yes"
567 ])
568 if test "x$with_libcurl" = "xyes"
569 then
570         with_curl_libs=`$with_curl_config --libs 2>/dev/null`
571         curl_config_status=$?
572
573         if test $curl_config_status -ne 0
574         then
575                 with_libcurl="no"
576         else
577                 AC_CHECK_LIB(curl, curl_easy_init,
578                 [
579                         BUILD_WITH_LIBCURL_LIBS="$with_curl_libs"
580                         AC_SUBST(BUILD_WITH_LIBCURL_LIBS)
581                 ],
582                 [
583                         with_libcurl="no"
584                 ],
585                 [$with_curl_libs])
586         fi
587 fi
588 if test "x$with_libcurl" = "xyes" -a $with_curl_prefix -ne 0
589 then
590         with_curl_prefix=`$with_curl_config --libs 2>/dev/null`
591         curl_config_status=$?
592
593         if test $curl_config_status -ne 0
594         then
595                 with_libcurl="no"
596         else
597                 if test -d "$with_curl_prefix/include"
598                 then
599                         CPPFLAGS="$CPPFLAGS -I$with_curl_prefix/include"
600                 fi
601         fi
602 fi
603
604 with_libcurl_numeric=0
605 if test "x$with_libcurl" = "xyes"
606 then
607         with_libcurl_numeric=1
608 fi
609 AC_DEFINE_UNQUOTED(HAVE_LIBCURL, [$with_libcurl_numeric], [Define to 1 if you have the 'curl' library (-lcurl).])
610 AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes")
611 ### END of check for libcurl ###
612
613 with_libiokit="no"
614 collectd_libiokit=0
615 AC_CHECK_LIB(IOKit, IOServiceGetMatchingServices,
616 [
617         with_libiokit="yes"
618         collectd_libiokit=1
619 ], 
620 [
621         with_libiokit="no"
622         collectd_libiokit=0
623 ])
624 AC_DEFINE_UNQUOTED(COLLECT_LIBIOKIT, [$collect_libiokit], [Wether or not to use the IOKit library])
625 AM_CONDITIONAL(BUILD_WITH_LIBIOKIT, test "x$with_libiokit" = "xyes")
626
627 with_libstatgrab="yes"
628 with_libdevstat="no"
629 AC_ARG_WITH(libstatgrab, [AS_HELP_STRING([--with-libstatgrab@<:@=PREFIX@:>@], [Path to libstatgrab.])],
630 [
631         if test "x$withval" != "xno" -a "x$withval" != "xyes"
632         then
633                 LDFLAGS="$LDFLAGS -L$withval/lib"
634                 CPPFLAGS="$CPPFLAGS -I$withval/include"
635                 with_libstatgrab="yes"
636         fi
637 ],
638 [
639         if test "x$ac_system" == "xunknown"
640         then
641                 with_libstatgrab="yes"
642         else
643                 with_libstatgrab="no"
644         fi
645 ])
646 if test "x$with_libstatgrab" = "xyes"
647 then
648         AC_CHECK_LIB(statgrab, sg_init, [with_libstatgrab="yes"], [with_libstatgrab="no (libstatgrab not found)"])
649 fi
650 if test "x$with_libstatgrab" = "xyes"
651 then
652         AC_CHECK_HEADERS(statgrab.h,,    [with_libstatgrab="no (statgrab.h not found)"])
653 fi
654 if test "x$with_libstatgrab" = "xyes"
655 then
656         AC_CHECK_LIB(devstat, getdevs, [with_libdevstat="yes"], [with_libdevstat="no"])
657 fi
658 if test "x$with_libstatgrab" = "xyes"
659 then
660         collect_libstatgrab=1
661 else
662         collect_libstatgrab=0
663 fi
664 AC_DEFINE_UNQUOTED(COLLECT_LIBSTATGRAB, [$collect_libstatgrab],
665         [Wether or not to use statgrab library])
666 AM_CONDITIONAL(BUILD_WITH_LIBSTATGRAB, test "x$with_libstatgrab" = "xyes")
667 AM_CONDITIONAL(BUILD_WITH_LIBDEVSTAT,  test "x$with_libdevstat"  = "xyes")
668
669 AC_CHECK_LIB(kvm, kvm_getswapinfo, [with_libkvm="yes"], [with_libkvm="no"])
670 if test "x$with_libkvm" = "xyes"
671 then
672         AC_DEFINE(HAVE_LIBKVM, 1, [Define to 1 if you have the 'kvm' library (-lkvm)])
673 fi
674 AM_CONDITIONAL(BUILD_WITH_LIBKVM, test "x$with_libkvm" = "xyes")
675
676 AC_ARG_WITH(lm-sensors, [AS_HELP_STRING([--with-lm-sensors@<:@=PREFIX@:>@], [Path to lm_sensors.])],
677 [
678         if test "x$withval" != "xno" && test "x$withval" != "xyes"
679         then
680                 LDFLAGS="$LDFLAGS -L$withval/lib"
681                 CPPFLAGS="$CPPFLAGS -I$withval/include"
682                 with_lm_sensors="yes"
683         fi
684 ],
685 [
686         if test "x$ac_system" = "xLinux"
687         then
688                 with_lm_sensors="yes"
689         else
690                 with_lm_sensors="no"
691         fi
692 ])
693 if test "x$with_lm_sensors" = "xyes"
694 then
695         AC_CHECK_LIB(sensors, sensors_init,
696         [
697                 AC_DEFINE(HAVE_LIBSENSORS, 1, [Define to 1 if you have the sensors library (-lsensors).])
698         ],
699         [with_lm_sensors="no (libsensors not found)"])
700 fi
701 if test "x$with_lm_sensors" = "xyes"
702 then
703         AC_CHECK_HEADERS(sensors/sensors.h,
704         [
705                 AC_DEFINE(HAVE_SENSORS_SENSORS_H, 1, [Define to 1 if you have the <sensors/sensors.h> header file.])
706         ],
707         [with_lm_sensors="no (sensors/sensors.h not found)"])
708 fi
709 if test "x$with_lm_sensors" = "xyes"
710 then
711         collect_lm_sensors=1
712 else
713         collect_lm_sensors=0
714 fi
715 AC_DEFINE_UNQUOTED(COLLECT_LM_SENSORS, [$collect_lm_sensors],
716         [Wether or not to use sensors library])
717 AM_CONDITIONAL(BUILD_WITH_LM_SENSORS, test "x$with_lm_sensors" = "xyes")
718
719 AC_ARG_WITH(libmysql, [AS_HELP_STRING([--with-libmysql@<:@=PREFIX@:>@], [Path to libmysql.])],
720 [
721         if test "x$withval" != "xno" && test "x$withval" != "xyes"
722         then
723                 LDFLAGS="$LDFLAGS -L$withval/lib"
724                 CPPFLAGS="$CPPFLAGS -I$withval/include"
725                 with_libmysql="yes"
726         fi
727 ],
728 [
729         with_libmysql="yes"
730 ])
731 if test "x$with_libmysql" = "xyes"
732 then
733         AC_CHECK_LIB(mysqlclient, mysql_init,
734         [
735                 AC_DEFINE(HAVE_LIBMYSQLCLIENT, 1, [Define to 1 if you have the mysqlclient library (-lmysqlclient).])
736         ], [with_libmysql="no (libmysql not found)"])
737 fi
738 if test "x$with_libmysql" = "xyes"
739 then
740         AC_CHECK_HEADERS(mysql/mysql.h,
741         [
742                 AC_DEFINE(HAVE_MYSQL_MYSQL_H, 1, [Define to 1 if you have the <mysql/mysql.h> header file.])
743         ], [with_libmysql="no (mysql/mysql.h not found)"])
744 fi
745 if test "x$with_libmysql" = "xyes"
746 then
747         collect_libmysql=1
748 else
749         collect_libmysql=0
750 fi
751 AC_DEFINE_UNQUOTED(COLLECT_LIBMYSQL, [$collect_libmysql],
752         [Wether or not to use mysql library])
753 AM_CONDITIONAL(BUILD_WITH_LIBMYSQL, test "x$with_libmysql" = "xyes")
754
755 #with_liboping="yes"
756 with_own_liboping="no"
757 liboping_LDFLAGS="$LDFLAGS"
758 liboping_CPPFLAGS="$CPPFLAGS"
759 AC_ARG_WITH(liboping, [AS_HELP_STRING([--with-liboping@<:@=PREFIX@:>@], [Path to liboping.])],
760 [
761         if test "x$withval" != "xno" && test "x$withval" != "xyes"
762         then
763                 if test -d "$withval/lib"
764                 then
765                         liboping_LDFLAGS="$LDFLAGS -L$withval/lib"
766                 fi
767                 if test -d "$withval/include"
768                 then
769                         liboping_CPPFLAGS="$CPPFLAGS -I$withval/include"
770                 fi
771         fi
772         if test "x$withval" = "xno"
773         then
774                 with_liboping="no"
775                 with_own_liboping="no"
776         fi
777 ],
778 [
779         #753
780         with_liboping="yes"
781 ])
782
783 if test "x$with_liboping" = "xyes"
784 then
785         save_LDFLAGS="$LDFLAGS"
786         save_CPPFLAGS="$CPPFLAGS"
787         LDFLAGS="$liboping_LDFLAGS"
788         CPPFLAGS="$liboping_CPPFLAGS"
789         AC_CHECK_LIB(oping, ping_construct,
790         [
791                 with_liboping="yes"
792                 with_own_liboping="no"
793         ],
794         [
795                 with_liboping="yes"
796                 with_own_liboping="yes"
797                 LDFLAGS="$save_LDFLAGS"
798                 CPPFLAGS="$save_CPPFLAGS"
799         ])
800 fi
801 AM_CONDITIONAL(BUILD_WITH_LIBOPING, test "x$with_liboping" = "xyes")
802 AM_CONDITIONAL(BUILD_WITH_OWN_LIBOPING, test "x$with_own_liboping" = "xyes")
803 if test "x$with_liboping" = "xyes" -a "x$with_own_liboping" = "xyes"
804 then
805         with_liboping="yes (shipped version)"
806 fi
807
808 # Define `step' and `hearbeat' values..
809 declare -i collectd_step=10
810 declare -i collectd_heartbeat=25
811 AC_ARG_WITH(step, [AS_HELP_STRING([--with-step=SECONDS], [Interval in which plugins are queried.])],
812 [
813         if test "x$withval" != "xno" -a "x$withval" != "xyes"
814         then
815                 declare -i tmp_collectd_step="$withval"
816                 if test $tmp_collectd_step -gt 0
817                 then
818                         collectd_step=$tmp_collectd_step
819                         let "collectd_heartbeat=$collectd_step*2"
820                 fi
821         fi
822 ], [])
823 AC_ARG_WITH(heartbeat, [AS_HELP_STRING([--with-heartbeat=SECONDS], [Heartbeat of the DS in generated RRD files.])],
824 [
825         if test "x$withval" != "xno" -a "x$withval" != "xyes"
826         then
827                 declare -i tmp_collectd_heartbeat="$withval"
828                 if test $tmp_collectd_heartbeat -gt 0
829                 then
830                         collectd_heartbeat=$tmp_collectd_heartbeat
831                 fi
832         fi
833 ], [])
834
835 if test $collectd_step -ne 10
836 then
837         AC_DEFINE_UNQUOTED(COLLECTD_STEP, "$collectd_step", [Interval in which plugins are queried.])
838 fi
839 if test $collectd_heartbeat -ne 25
840 then
841         AC_DEFINE_UNQUOTED(COLLECTD_HEARTBEAT, "$collectd_heartbeat", [Interval in which plugins are queried.])
842 fi
843
844 #
845 # Check for enabled/disabled features
846 #
847
848 # AC_COLLECTD(name, enable/disable, info-text, feature/module)
849 # ------------------------------------------------------------
850 dnl
851 m4_define([my_toupper], [m4_translit([$1], m4_defn([m4_cr_letters]), m4_defn([m4_cr_LETTERS]))])
852 dnl
853 AC_DEFUN(
854         [AC_COLLECTD],
855         [
856         m4_if([$1], [], [AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 1st argument must not be empty])])dnl
857         m4_if(
858                 [$2],
859                 [enable],
860                 [dnl
861                 m4_define([EnDis],[disabled])dnl
862                 m4_define([YesNo],[no])dnl
863                 ],dnl
864                 [m4_if(
865                         [$2],
866                         [disable],
867                         [dnl
868                         m4_define([EnDis],[enabled])dnl
869                         m4_define([YesNo],[yes])dnl
870                         ],
871                         [dnl
872                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 2nd argument must be either enable or disable])dnl
873                         ]dnl
874                 )]dnl
875         )dnl
876         m4_if([$3], [feature], [],
877                 [m4_if(
878                         [$3], [module], [],
879                         [dnl
880                         AC_FATAL([AC_COLLECTD([$1], [$2], [$3], [$4]): 3rd argument must be either feature or disable])dnl
881                         ]dnl
882                 )]dnl
883         )dnl
884         AC_ARG_ENABLE(
885                 [$1],
886                 AS_HELP_STRING([--$2-$1], [$2 $4 (EnDis by def)]),
887                 [],
888                 enable_$1='[YesNo]'dnl
889         )# AC_ARG_ENABLE
890 if test "x$enable_$1" = "xno"
891 then
892         collectd_$1=0
893 else
894         if test "x$enable_$1" = "xyes"
895         then
896                 collectd_$1=1
897         else
898                 AC_MSG_NOTICE([please specify either --enable-$1 or --disable-$1; enabling $1.])
899                 collectd_$1=1
900                 enable_$1='yes'
901         fi
902 fi
903         AC_DEFINE_UNQUOTED([COLLECT_]my_toupper([$1]), [$collectd_$1], [wether or not to enable $3 $4])
904         AM_CONDITIONAL([BUILD_]my_toupper([$3])[_]my_toupper([$1]), [test "x$enable_$1" = "xyes"])dnl
905         ]dnl
906 )# AC_COLLECTD(name, enable/disable, info-text, feature/module)
907
908 m4_divert_once([HELP_ENABLE], [
909 collectd features:])
910 AC_COLLECTD([debug],     [enable],  [feature], [debugging])
911 AC_COLLECTD([daemon],    [disable], [feature], [daemon mode])
912 AC_COLLECTD([getifaddrs],[enable],  [feature], [getifaddrs under Linux])
913
914 m4_divert_once([HELP_ENABLE], [
915 collectd modules:])
916 AC_COLLECTD([apache],    [disable], [module], [Apache httpd statistics])
917 AC_COLLECTD([apcups],    [disable], [module], [Statistics of UPSes by APC])
918 AC_COLLECTD([apple_sensors], [disable], [module], [Apple's hardware sensors])
919 AC_COLLECTD([battery],   [disable], [module], [battery statistics])
920 AC_COLLECTD([cpu],       [disable], [module], [cpu usage statistics])
921 AC_COLLECTD([cpufreq],   [disable], [module], [system cpu frequency statistics])
922 AC_COLLECTD([disk],      [disable], [module], [disk/partition statistics])
923 AC_COLLECTD([df],        [disable], [module], [df statistics])
924 AC_COLLECTD([quota],     [enable],  [module], [quota statistics (experimental)])
925 AC_COLLECTD([hddtemp],   [disable], [module], [hdd temperature statistics])
926 AC_COLLECTD([load],      [disable], [module], [system load statistics])
927 AC_COLLECTD([memory],    [disable], [module], [memory statistics])
928 AC_COLLECTD([multimeter],[disable], [module], [multimeter statistics])
929 AC_COLLECTD([mysql],     [disable], [module], [mysql statistics])
930 AC_COLLECTD([nfs],       [disable], [module], [nfs statistics])
931 AC_COLLECTD([ntpd],      [disable], [module], [nfs statistics])
932 AC_COLLECTD([ping],      [disable], [module], [ping statistics])
933 AC_COLLECTD([processes], [disable], [module], [processes statistics])
934 AC_COLLECTD([sensors],   [disable], [module], [lm_sensors statistics])
935 AC_COLLECTD([serial],    [disable], [module], [serial statistics])
936 AC_COLLECTD([swap],      [disable], [module], [swap statistics])
937 AC_COLLECTD([tape],      [disable], [module], [tape statistics])
938 AC_COLLECTD([traffic],   [disable], [module], [system traffic statistics])
939 AC_COLLECTD([users],     [disable], [module], [user count statistics])
940 AC_COLLECTD([vserver],   [disable], [module], [vserver statistics])
941 AC_COLLECTD([wireless],  [disable], [module], [wireless link statistics])
942
943 AC_OUTPUT(Makefile src/Makefile src/collectd.conf src/libconfig/Makefile src/liboping/Makefile)
944
945 cat <<EOF;
946
947 Configuration:
948   Libraries:
949     libcurl . . . . . . $with_libcurl
950     libiokit  . . . . . $with_libiokit
951     liboping  . . . . . $with_liboping
952     librrd  . . . . . . $with_rrdtool
953     lm_sensors  . . . . $with_lm_sensors
954     libstatgrab . . . . $with_libstatgrab
955     libkstat  . . . . . $with_kstat
956     libmysql  . . . . . $with_libmysql
957
958   Features:
959     debug . . . . . . . $enable_debug
960     daemon mode . . . . $enable_daemon
961     step  . . . . . . . $collectd_step seconds
962     heartbeat . . . . . $collectd_heartbeat seconds
963
964   Modules:
965     apache  . . . . . . $enable_apache
966     apcups  . . . . . . $enable_apcups
967     apple_sensors . . . $enable_apple_sensors
968     battery . . . . . . $enable_battery
969     cpu . . . . . . . . $enable_cpu
970     cpufreq . . . . . . $enable_cpufreq
971     df  . . . . . . . . $enable_df
972     disk  . . . . . . . $enable_disk
973     hddtemp . . . . . . $enable_hddtemp
974     load  . . . . . . . $enable_load
975     memory  . . . . . . $enable_memory
976     multimeter  . . . . $enable_multimeter
977     mysql . . . . . . . $enable_mysql
978     nfs . . . . . . . . $enable_nfs
979     ntpd  . . . . . . . $enable_ntpd
980     ping  . . . . . . . $enable_ping
981     processes . . . . . $enable_processes
982     sensors . . . . . . $enable_sensors
983     serial  . . . . . . $enable_serial
984     swap  . . . . . . . $enable_swap
985     tape  . . . . . . . $enable_tape
986     traffic . . . . . . $enable_traffic
987     users . . . . . . . $enable_users
988     vserver . . . . . . $enable_vserver
989     wireless  . . . . . $enable_wireless
990
991 EOF