6 |
|
# |
7 |
|
|
8 |
|
# Change these to change the package name and version |
9 |
< |
AC_INIT(libstatgrab, 0.10.2, bugs@i-scream.org) |
10 |
< |
AM_INIT_AUTOMAKE(libstatgrab, 0.10.2) |
9 |
> |
AC_INIT(libstatgrab, 0.12, bugs@i-scream.org) |
10 |
> |
AM_INIT_AUTOMAKE(libstatgrab, 0.12) |
11 |
|
|
12 |
|
# Revision number (automatically updated) |
13 |
|
AC_REVISION($Revision$) |
31 |
|
|
32 |
|
# Checks for library functions |
33 |
|
AC_FUNC_MALLOC |
34 |
< |
AC_FUNC_REALLOC |
35 |
< |
AC_CHECK_FUNCS(atoll) |
34 |
> |
AC_CHECK_FUNCS(atoll seteuid setegid setresuid setresgid) |
35 |
|
|
36 |
|
# Disk IO read and write statistics are only present on recent NetBSD. |
37 |
|
AC_CHECK_MEMBER(struct disk_sysctl.dk_rbytes, |
80 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
81 |
|
LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl" |
82 |
|
;; |
83 |
+ |
hpux11.11*) |
84 |
+ |
AC_DEFINE(HPUX, , [Building on HP-UX 11.11]) |
85 |
+ |
;; |
86 |
|
freebsd4.*) |
87 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
88 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
91 |
|
BIN_PERM="2755" |
92 |
|
LINKFLAGS="-lkvm -ldevstat" |
93 |
|
;; |
94 |
< |
freebsd5.*) |
94 |
> |
freebsd[[5-6]].*) |
95 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
96 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
97 |
< |
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x]) |
97 |
> |
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x or 6.x]) |
98 |
|
LINKFLAGS="-ldevstat" |
99 |
|
;; |
100 |
|
netbsdelf1*) |
172 |
|
] |
173 |
|
) |
174 |
|
|
175 |
+ |
# Check if user wants to disable sgps |
176 |
+ |
AM_CONDITIONAL(SGPS, true) |
177 |
+ |
AC_ARG_ENABLE(sgps, |
178 |
+ |
[ --disable-sgps disable building of sgps], |
179 |
+ |
[ |
180 |
+ |
if test "x$enableval" = "xno" ; then |
181 |
+ |
AM_CONDITIONAL(SGPS, false) |
182 |
+ |
fi |
183 |
+ |
] |
184 |
+ |
) |
185 |
+ |
|
186 |
|
# Check if the user would prefer not to build examples |
187 |
|
AM_CONDITIONAL(EXAMPLES, true) |
188 |
|
AC_ARG_ENABLE(examples, |
250 |
|
AC_SUBST(BIN_PERM) |
251 |
|
|
252 |
|
# And finish by changing these files |
253 |
< |
AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile examples/Makefile libstatgrab.pc src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index src/saidar/Makefile]) |
253 |
> |
AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile examples/Makefile libstatgrab.pc src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index src/saidar/Makefile src/sgps/Makefile]) |
254 |
|
|
255 |
|
AC_OUTPUT |