6 |
|
# |
7 |
|
|
8 |
|
# Change these to change the package name and version |
9 |
< |
AC_INIT(libstatgrab, 0.6.1, bugs@i-scream.org) |
10 |
< |
AM_INIT_AUTOMAKE(libstatgrab, 0.6.1) |
9 |
> |
AC_INIT(libstatgrab, 0.7.1, bugs@i-scream.org) |
10 |
> |
AM_INIT_AUTOMAKE(libstatgrab, 0.7.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 stats])], |
40 |
+ |
[], |
41 |
+ |
[#include <sys/disk.h>]) |
42 |
+ |
|
43 |
|
# Default needing setgid to false |
44 |
|
AM_CONDITIONAL(SETGIDBINS, false) |
45 |
|
|
51 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
52 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
53 |
|
AC_DEFINE(SOL7, , [Building on Solaris 2.7]) |
54 |
< |
LINKFLAGS="-lkstat" |
54 |
> |
LINKFLAGS="-lkstat -ldevinfo" |
55 |
|
;; |
56 |
|
solaris2.*) |
57 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
58 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
59 |
< |
LINKFLAGS="-lkstat" |
59 |
> |
LINKFLAGS="-lkstat -ldevinfo" |
60 |
|
;; |
61 |
|
freebsd4.*) |
62 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
63 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
64 |
|
AM_CONDITIONAL(SETGIDBINS, true) |
65 |
|
LINKFLAGS="-lkvm -ldevstat" |
66 |
|
;; |
67 |
|
freebsd5.*) |
68 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
69 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
70 |
|
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x]) |
71 |
|
AM_CONDITIONAL(SETGIDBINS, true) |
72 |
|
LINKFLAGS="-lkvm -ldevstat" |
73 |
|
;; |
74 |
+ |
netbsdelf*) |
75 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
76 |
+ |
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
77 |
+ |
AM_CONDITIONAL(SETGIDBINS, true) |
78 |
+ |
LINKFLAGS="-lkvm" |
79 |
+ |
;; |
80 |
|
linux-gnu) |
81 |
|
AC_DEFINE(LINUX, , [Building on GNU/Linux]) |
82 |
|
;; |
83 |
+ |
cygwin) |
84 |
+ |
AC_DEFINE(CYGWIN, , [Building on Cygwin]) |
85 |
+ |
;; |
86 |
|
*) |
87 |
|
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
88 |
|
;; |
160 |
|
fi |
161 |
|
] |
162 |
|
) |
146 |
– |
|
147 |
– |
# User specified pkgconfig dir |
148 |
– |
AC_ARG_WITH([pkgconfig-dir], |
149 |
– |
[ --with-pkgconfig-dir=PATH pkgconfig lib directory (PREFIX/lib/pkgconfig)], |
150 |
– |
[ PKGCONFIG_DIR=$withval ], |
151 |
– |
[ PKGCONFIG_DIR="\$(libdir)/pkgconfig" ] |
152 |
– |
) |
153 |
– |
AC_SUBST(PKGCONFIG_DIR) |
163 |
|
|
164 |
|
# The LIBS and CPPFLAGS that saidar needs |
165 |
|
AC_SUBST(SAIDARLIBS) |