6 |
|
# |
7 |
|
|
8 |
|
# Change these to change the package name and version |
9 |
< |
AC_INIT(libstatgrab, 0.5.2, bugs@i-scream.org) |
10 |
< |
AM_INIT_AUTOMAKE(libstatgrab, 0.5.2) |
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 |
+ |
|
46 |
|
# Set things up for different OS's |
47 |
|
# We define the name of the OS so the code can act accordingly |
48 |
|
# We also need to add the right LDFLAGS |
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 |
< |
LDFLAGS="$LDFLAGS -lkstat" |
54 |
> |
LINKFLAGS="-lkstat" |
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 |
< |
LDFLAGS="$LDFLAGS -lkstat" |
59 |
> |
LINKFLAGS="-lkstat" |
60 |
|
;; |
61 |
|
freebsd4.*) |
62 |
< |
AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x]) |
63 |
< |
LDFLAGS="$LDFLAGS -lkvm -ldevstat" |
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 |
+ |
netbsdelf1.*) |
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 |
|
;; |
85 |
|
;; |
86 |
|
esac |
87 |
|
|
88 |
+ |
# User specified curses/ncurses prefix |
89 |
+ |
AC_ARG_WITH([curses-prefix], |
90 |
+ |
[ --with-curses-prefix=PATH curses (or ncurses) is in PATH], |
91 |
+ |
[ |
92 |
+ |
if test -d "$withval/lib"; then |
93 |
+ |
SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}" |
94 |
+ |
fi |
95 |
+ |
if test -d "$withval/include"; then |
96 |
+ |
SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}" |
97 |
+ |
fi |
98 |
+ |
] |
99 |
+ |
) |
100 |
+ |
|
101 |
+ |
# Check if user wants to disable statgrab |
102 |
+ |
AM_CONDITIONAL(STATGRAB, true) |
103 |
+ |
AC_ARG_ENABLE(statgrab, |
104 |
+ |
[ --disable-statgrab disable building of statgrab], |
105 |
+ |
[ |
106 |
+ |
if test "x$enableval" = "xno" ; then |
107 |
+ |
AM_CONDITIONAL(STATGRAB, false) |
108 |
+ |
fi |
109 |
+ |
] |
110 |
+ |
) |
111 |
+ |
|
112 |
+ |
# Check if user wants to disable saidar |
113 |
+ |
AM_CONDITIONAL(SAIDAR, true) |
114 |
+ |
AC_ARG_ENABLE(saidar, |
115 |
+ |
[ --disable-saidar disable building of saidar], |
116 |
+ |
[ |
117 |
+ |
if test "x$enableval" = "xno" ; then |
118 |
+ |
AM_CONDITIONAL(SAIDAR, false) |
119 |
+ |
fi |
120 |
+ |
], |
121 |
+ |
[ |
122 |
+ |
# saidar needs curses |
123 |
+ |
# (if we don't find curses we disable saidar) |
124 |
+ |
MP_WITH_CURSES |
125 |
+ |
] |
126 |
+ |
) |
127 |
+ |
|
128 |
+ |
# Check if the user would prefer not to build examples |
129 |
+ |
AM_CONDITIONAL(EXAMPLES, true) |
130 |
+ |
AC_ARG_ENABLE(examples, |
131 |
+ |
[ --disable-examples disable building of examples], |
132 |
+ |
[ |
133 |
+ |
if test "x$enableval" = "xno" ; then |
134 |
+ |
AM_CONDITIONAL(EXAMPLES, false) |
135 |
+ |
fi |
136 |
+ |
] |
137 |
+ |
) |
138 |
+ |
|
139 |
+ |
# Check if user wants to install manpages |
140 |
+ |
AM_CONDITIONAL(MANPAGES, true) |
141 |
+ |
AC_ARG_ENABLE(manpages, |
142 |
+ |
[ --disable-manpages disable installation of manpages], |
143 |
+ |
[ |
144 |
+ |
if test "x$enableval" = "xno" ; then |
145 |
+ |
AM_CONDITIONAL(MANPAGES, false) |
146 |
+ |
fi |
147 |
+ |
] |
148 |
+ |
) |
149 |
+ |
|
150 |
+ |
# Check if the user wants to turn off setgid binaries |
151 |
+ |
# (only really relevant on FreeBSD) |
152 |
+ |
AC_ARG_ENABLE(setgid-binaries, |
153 |
+ |
[ --disable-setgid-binaries disable binaries being setgid], |
154 |
+ |
[ |
155 |
+ |
if test "x$enableval" = "xno" ; then |
156 |
+ |
AM_CONDITIONAL(SETGIDBINS, false) |
157 |
+ |
fi |
158 |
+ |
] |
159 |
+ |
) |
160 |
+ |
|
161 |
+ |
# The LIBS and CPPFLAGS that saidar needs |
162 |
+ |
AC_SUBST(SAIDARLIBS) |
163 |
+ |
AC_SUBST(SAIDARCPPFLAGS) |
164 |
+ |
|
165 |
+ |
# The flags needed to link to libstatgrab |
166 |
+ |
# (ie. our dependencies) |
167 |
+ |
AC_SUBST(LINKFLAGS) |
168 |
+ |
|
169 |
|
# And finish by changing these files |
170 |
< |
AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile examples/Makefile src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index]) |
170 |
> |
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]) |
171 |
|
|
172 |
|
AC_OUTPUT |