| 6 |
|
# |
| 7 |
|
|
| 8 |
|
# Change these to change the package name and version |
| 9 |
< |
AC_INIT(libstatgrab, 0.6, bugs@i-scream.org) |
| 10 |
< |
AM_INIT_AUTOMAKE(libstatgrab, 0.6) |
| 9 |
> |
AC_INIT(libstatgrab, 0.10.1, bugs@i-scream.org) |
| 10 |
> |
AM_INIT_AUTOMAKE(libstatgrab, 0.10.1) |
| 11 |
|
|
| 12 |
|
# Revision number (automatically updated) |
| 13 |
|
AC_REVISION($Revision$) |
| 34 |
|
AC_FUNC_REALLOC |
| 35 |
|
AC_CHECK_FUNCS(atoll) |
| 36 |
|
|
| 37 |
+ |
# Disk IO read and write statistics are only present on recent NetBSD. |
| 38 |
+ |
AC_CHECK_MEMBER(struct disk_sysctl.dk_rbytes, |
| 39 |
+ |
[AC_DEFINE(HAVE_DK_RBYTES, , [New-style NetBSD disk stats])], |
| 40 |
+ |
[], |
| 41 |
+ |
[#include <sys/disk.h>]) |
| 42 |
+ |
|
| 43 |
+ |
# Disk IO read and write statistics are only present on recent OpenBSD. |
| 44 |
+ |
AC_CHECK_MEMBER(struct diskstats.ds_rbytes, |
| 45 |
+ |
[AC_DEFINE(HAVE_DS_RBYTES, , [New-style OpenBSD disk stats])], |
| 46 |
+ |
[], |
| 47 |
+ |
[#include <sys/disk.h>]) |
| 48 |
+ |
|
| 49 |
+ |
# NetBSD 2.0 uses statvfs rather than statfs |
| 50 |
+ |
AC_CHECK_MEMBER(struct statvfs.f_fstypename, |
| 51 |
+ |
[AC_DEFINE(HAVE_STATVFS, , [NetBSD 2.0 statvfs])], |
| 52 |
+ |
[], |
| 53 |
+ |
[#include <sys/statvfs.h>]) |
| 54 |
+ |
|
| 55 |
+ |
# Check for sys/loadavg.h |
| 56 |
+ |
AC_CHECK_HEADERS([sys/loadavg.h]) |
| 57 |
+ |
|
| 58 |
+ |
# Check for libdevinfo.h |
| 59 |
+ |
AC_CHECK_HEADERS([libdevinfo.h]) |
| 60 |
+ |
|
| 61 |
+ |
# Default needing setgid/setuid to false |
| 62 |
+ |
AM_CONDITIONAL(SETGIDBINS, false) |
| 63 |
+ |
AM_CONDITIONAL(SETUIDBINS, false) |
| 64 |
+ |
|
| 65 |
|
# Set things up for different OS's |
| 66 |
|
# We define the name of the OS so the code can act accordingly |
| 67 |
|
# We also need to add the right LDFLAGS |
| 69 |
|
solaris2.[[6-7]]) |
| 70 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
| 71 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
| 72 |
< |
AC_DEFINE(SOL7, , [Building on Solaris 2.7]) |
| 73 |
< |
LINKFLAGS="-lkstat" |
| 72 |
> |
AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7]) |
| 73 |
> |
AM_CONDITIONAL(SETUIDBINS, true) |
| 74 |
> |
LINKFLAGS="-lkstat -lsocket -lnsl" |
| 75 |
> |
AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"]) |
| 76 |
|
;; |
| 77 |
|
solaris2.*) |
| 78 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
| 79 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
| 80 |
< |
LINKFLAGS="-lkstat" |
| 80 |
> |
LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl" |
| 81 |
|
;; |
| 82 |
|
freebsd4.*) |
| 83 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 84 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
| 85 |
+ |
AM_CONDITIONAL(SETGIDBINS, true) |
| 86 |
|
LINKFLAGS="-lkvm -ldevstat" |
| 87 |
|
;; |
| 88 |
|
freebsd5.*) |
| 89 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 90 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
| 91 |
|
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x]) |
| 92 |
+ |
LINKFLAGS="-ldevstat" |
| 93 |
+ |
;; |
| 94 |
+ |
netbsdelf1*) |
| 95 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 96 |
+ |
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
| 97 |
+ |
;; |
| 98 |
+ |
netbsdelf2*) |
| 99 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 100 |
+ |
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
| 101 |
+ |
AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x]) |
| 102 |
+ |
;; |
| 103 |
+ |
openbsd*) |
| 104 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 105 |
+ |
AC_DEFINE(OPENBSD, , [Building on OpenBSD]) |
| 106 |
+ |
;; |
| 107 |
+ |
dragonfly*) |
| 108 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 109 |
+ |
AC_DEFINE(DFBSD, , [Building on DragonFlyBSD]) |
| 110 |
+ |
AM_CONDITIONAL(SETGIDBINS, true) |
| 111 |
|
LINKFLAGS="-lkvm -ldevstat" |
| 112 |
|
;; |
| 113 |
|
linux-gnu) |
| 114 |
|
AC_DEFINE(LINUX, , [Building on GNU/Linux]) |
| 115 |
+ |
AM_CONDITIONAL(SETUIDBINS, true) |
| 116 |
|
;; |
| 117 |
+ |
cygwin) |
| 118 |
+ |
AC_DEFINE(CYGWIN, , [Building on Cygwin]) |
| 119 |
+ |
;; |
| 120 |
|
*) |
| 121 |
|
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
| 122 |
|
;; |
| 184 |
|
] |
| 185 |
|
) |
| 186 |
|
|
| 187 |
< |
# User specified pkgconfig dir |
| 188 |
< |
AC_ARG_WITH([pkgconfig-dir], |
| 189 |
< |
[ --with-pkgconfig-dir=PATH pkgconfig lib directory (PREFIX/lib/pkgconfig)], |
| 190 |
< |
[ PKGCONFIG_DIR=$withval ], |
| 191 |
< |
[ PKGCONFIG_DIR="\$(libdir)/pkgconfig" ] |
| 187 |
> |
# Check if the user wants to turn off setgid binaries |
| 188 |
> |
AC_ARG_ENABLE(setgid-binaries, |
| 189 |
> |
[ --disable-setgid-binaries disable binaries being setgid], |
| 190 |
> |
[ |
| 191 |
> |
if test "x$enableval" = "xno" ; then |
| 192 |
> |
AM_CONDITIONAL(SETGIDBINS, false) |
| 193 |
> |
fi |
| 194 |
> |
] |
| 195 |
|
) |
| 196 |
< |
AC_SUBST(PKGCONFIG_DIR) |
| 196 |
> |
|
| 197 |
> |
# Check if the user wants to turn off setuid binaries |
| 198 |
> |
AC_ARG_ENABLE(setuid-binaries, |
| 199 |
> |
[ --disable-setuid-binaries disable binaries being setuid], |
| 200 |
> |
[ |
| 201 |
> |
if test "x$enableval" = "xno" ; then |
| 202 |
> |
AM_CONDITIONAL(SETUIDBINS, false) |
| 203 |
> |
fi |
| 204 |
> |
] |
| 205 |
> |
) |
| 206 |
> |
|
| 207 |
> |
# Check if the user would prefer not to include compatibility code |
| 208 |
> |
AM_CONDITIONAL(DEPRECATED, true) |
| 209 |
> |
AC_ARG_ENABLE(deprecated, |
| 210 |
> |
[ --disable-deprecated disable inclusion of pre-0.10 compatibility code], |
| 211 |
> |
[ |
| 212 |
> |
if test "x$enableval" = "xno" ; then |
| 213 |
> |
AM_CONDITIONAL(DEPRECATED, false) |
| 214 |
> |
fi |
| 215 |
> |
] |
| 216 |
> |
) |
| 217 |
|
|
| 218 |
|
# The LIBS and CPPFLAGS that saidar needs |
| 219 |
|
AC_SUBST(SAIDARLIBS) |