6 |
|
# |
7 |
|
|
8 |
|
# Change these to change the package name and version |
9 |
< |
AC_INIT(libstatgrab, 0.3, dev@i-scream.org.uk) |
10 |
< |
AM_INIT_AUTOMAKE(libstatgrab, 0.3) |
9 |
> |
AC_INIT(libstatgrab, 0.6, bugs@i-scream.org) |
10 |
> |
AM_INIT_AUTOMAKE(libstatgrab, 0.6) |
11 |
|
|
12 |
|
# Revision number (automatically updated) |
13 |
|
AC_REVISION($Revision$) |
32 |
|
# Checks for library functions |
33 |
|
AC_FUNC_MALLOC |
34 |
|
AC_FUNC_REALLOC |
35 |
+ |
AC_CHECK_FUNCS(atoll) |
36 |
|
|
37 |
|
# Set things up for different OS's |
38 |
|
# We define the name of the OS so the code can act accordingly |
39 |
|
# We also need to add the right LDFLAGS |
40 |
|
case $host_os in |
41 |
+ |
solaris2.[[6-7]]) |
42 |
+ |
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
43 |
+ |
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
44 |
+ |
AC_DEFINE(SOL7, , [Building on Solaris 2.7]) |
45 |
+ |
LINKFLAGS="-lkstat" |
46 |
+ |
;; |
47 |
|
solaris2.*) |
48 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
49 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
50 |
< |
LDFLAGS="$LDFLAGS -lkstat" |
50 |
> |
LINKFLAGS="-lkstat" |
51 |
|
;; |
52 |
|
freebsd4.*) |
53 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x]) |
54 |
< |
LDFLAGS="$LDFLAGS -lkvm" |
54 |
> |
LINKFLAGS="-lkvm -ldevstat" |
55 |
|
;; |
56 |
|
linux-gnu) |
57 |
|
AC_DEFINE(LINUX, , [Building on GNU/Linux]) |
61 |
|
;; |
62 |
|
esac |
63 |
|
|
64 |
+ |
AC_SUBST(LINKFLAGS) |
65 |
+ |
|
66 |
|
# And finish by changing these files |
67 |
< |
AC_CONFIG_FILES([Makefile src/Makefile]) |
67 |
> |
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]) |
68 |
|
|
69 |
|
AC_OUTPUT |