| 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.9, bugs@i-scream.org) |
| 10 |
> |
AM_INIT_AUTOMAKE(libstatgrab, 0.9) |
| 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 stats])], |
| 40 |
+ |
[], |
| 41 |
+ |
[#include <sys/disk.h>]) |
| 42 |
+ |
|
| 43 |
+ |
# Check for sys/loadavg.h |
| 44 |
+ |
AC_CHECK_HEADERS([sys/loadavg.h]) |
| 45 |
+ |
|
| 46 |
+ |
# Check for libdevinfo.h |
| 47 |
+ |
AC_CHECK_HEADERS([libdevinfo.h]) |
| 48 |
+ |
|
| 49 |
+ |
# Default needing setgid/setuid to false |
| 50 |
+ |
AM_CONDITIONAL(SETGIDBINS, false) |
| 51 |
+ |
AM_CONDITIONAL(SETUIDBINS, false) |
| 52 |
+ |
|
| 53 |
|
# Set things up for different OS's |
| 54 |
|
# We define the name of the OS so the code can act accordingly |
| 55 |
|
# We also need to add the right LDFLAGS |
| 57 |
|
solaris2.[[6-7]]) |
| 58 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
| 59 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
| 60 |
< |
AC_DEFINE(SOL7, , [Building on Solaris 2.7]) |
| 61 |
< |
LINKFLAGS="-lkstat" |
| 60 |
> |
AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7]) |
| 61 |
> |
AM_CONDITIONAL(SETUIDBINS, true) |
| 62 |
> |
LINKFLAGS="-lkstat -lsocket -lnsl" |
| 63 |
> |
AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"]) |
| 64 |
|
;; |
| 65 |
|
solaris2.*) |
| 66 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
| 67 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
| 68 |
< |
LINKFLAGS="-lkstat" |
| 68 |
> |
AM_CONDITIONAL(SETUIDBINS, true) |
| 69 |
> |
LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl" |
| 70 |
|
;; |
| 71 |
|
freebsd4.*) |
| 72 |
< |
AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x]) |
| 72 |
> |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 73 |
> |
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
| 74 |
> |
AM_CONDITIONAL(SETGIDBINS, true) |
| 75 |
|
LINKFLAGS="-lkvm -ldevstat" |
| 76 |
|
;; |
| 77 |
+ |
freebsd5.*) |
| 78 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 79 |
+ |
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
| 80 |
+ |
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x]) |
| 81 |
+ |
LINKFLAGS="-ldevstat" |
| 82 |
+ |
;; |
| 83 |
+ |
netbsdelf*) |
| 84 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 85 |
+ |
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
| 86 |
+ |
;; |
| 87 |
+ |
openbsd*) |
| 88 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
| 89 |
+ |
AC_DEFINE(OPENBSD, , [Building on OpenBSD]) |
| 90 |
+ |
;; |
| 91 |
|
linux-gnu) |
| 92 |
|
AC_DEFINE(LINUX, , [Building on GNU/Linux]) |
| 93 |
|
;; |
| 94 |
+ |
cygwin) |
| 95 |
+ |
AC_DEFINE(CYGWIN, , [Building on Cygwin]) |
| 96 |
+ |
;; |
| 97 |
|
*) |
| 98 |
|
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
| 99 |
|
;; |
| 107 |
|
SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}" |
| 108 |
|
fi |
| 109 |
|
if test -d "$withval/include"; then |
| 110 |
< |
SAIDARCPPFLAGS="-I${withval}/include ${SAIRDARCPPFLAGS}" |
| 110 |
> |
SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}" |
| 111 |
|
fi |
| 112 |
|
] |
| 113 |
|
) |
| 159 |
|
AM_CONDITIONAL(MANPAGES, false) |
| 160 |
|
fi |
| 161 |
|
] |
| 162 |
+ |
) |
| 163 |
+ |
|
| 164 |
+ |
# Check if the user wants to turn off setgid binaries |
| 165 |
+ |
AC_ARG_ENABLE(setgid-binaries, |
| 166 |
+ |
[ --disable-setgid-binaries disable binaries being setgid], |
| 167 |
+ |
[ |
| 168 |
+ |
if test "x$enableval" = "xno" ; then |
| 169 |
+ |
AM_CONDITIONAL(SETGIDBINS, false) |
| 170 |
+ |
fi |
| 171 |
+ |
] |
| 172 |
+ |
) |
| 173 |
+ |
|
| 174 |
+ |
# Check if the user wants to turn off setuid binaries |
| 175 |
+ |
AC_ARG_ENABLE(setuid-binaries, |
| 176 |
+ |
[ --disable-setuid-binaries disable binaries being setuid], |
| 177 |
+ |
[ |
| 178 |
+ |
if test "x$enableval" = "xno" ; then |
| 179 |
+ |
AM_CONDITIONAL(SETUIDBINS, false) |
| 180 |
+ |
fi |
| 181 |
+ |
] |
| 182 |
|
) |
| 183 |
|
|
| 184 |
|
# The LIBS and CPPFLAGS that saidar needs |