1 |
tdb |
1.4 |
# -*- Autoconf -*- |
2 |
|
|
# Process this file with autoconf to produce a configure script. |
3 |
|
|
# |
4 |
|
|
# configure.in for libstatgrab |
5 |
tdb |
1.74 |
# $Id: configure.in,v 1.73 2004/07/27 20:25:11 tdb Exp $ |
6 |
tdb |
1.4 |
# |
7 |
tdb |
1.1 |
|
8 |
tdb |
1.4 |
# Change these to change the package name and version |
9 |
tdb |
1.74 |
AC_INIT(libstatgrab, 0.10.4, bugs@i-scream.org) |
10 |
|
|
AM_INIT_AUTOMAKE(libstatgrab, 0.10.4) |
11 |
tdb |
1.1 |
|
12 |
tdb |
1.4 |
# Revision number (automatically updated) |
13 |
tdb |
1.74 |
AC_REVISION($Revision: 1.73 $) |
14 |
tdb |
1.1 |
|
15 |
tdb |
1.4 |
# Might work with older autoconfs... but tested on 2.57 |
16 |
|
|
AC_PREREQ(2.57) |
17 |
|
|
|
18 |
|
|
# The file we use to pass #define's to the source |
19 |
|
|
AM_CONFIG_HEADER([config.h]) |
20 |
|
|
|
21 |
|
|
# Checks for programs |
22 |
tdb |
1.1 |
AC_PROG_CC |
23 |
|
|
AC_PROG_INSTALL |
24 |
tdb |
1.2 |
AC_PROG_LIBTOOL |
25 |
tdb |
1.1 |
|
26 |
tdb |
1.4 |
# Checks for header files |
27 |
tdb |
1.1 |
AC_HEADER_STDC |
28 |
|
|
|
29 |
tdb |
1.4 |
# Checks for typedefs, structures, and compiler characteristics |
30 |
|
|
AC_C_CONST |
31 |
tdb |
1.1 |
|
32 |
tdb |
1.4 |
# Checks for library functions |
33 |
|
|
AC_FUNC_MALLOC |
34 |
|
|
AC_FUNC_REALLOC |
35 |
tdb |
1.17 |
AC_CHECK_FUNCS(atoll) |
36 |
ats |
1.39 |
|
37 |
|
|
# Disk IO read and write statistics are only present on recent NetBSD. |
38 |
|
|
AC_CHECK_MEMBER(struct disk_sysctl.dk_rbytes, |
39 |
tdb |
1.69 |
[AC_DEFINE(HAVE_DK_RBYTES, , [New-style NetBSD disk stats])], |
40 |
|
|
[], |
41 |
|
|
[#include <sys/disk.h>]) |
42 |
|
|
|
43 |
|
|
# Disk IO read and write statistics are only present on recent OpenBSD. |
44 |
|
|
AC_CHECK_MEMBER(struct diskstats.ds_rbytes, |
45 |
|
|
[AC_DEFINE(HAVE_DS_RBYTES, , [New-style OpenBSD disk stats])], |
46 |
ats |
1.39 |
[], |
47 |
|
|
[#include <sys/disk.h>]) |
48 |
tdb |
1.70 |
|
49 |
|
|
# NetBSD 2.0 uses statvfs rather than statfs |
50 |
|
|
AC_CHECK_MEMBER(struct statvfs.f_fstypename, |
51 |
|
|
[AC_DEFINE(HAVE_STATVFS, , [NetBSD 2.0 statvfs])], |
52 |
|
|
[], |
53 |
|
|
[#include <sys/statvfs.h>]) |
54 |
tdb |
1.50 |
|
55 |
tdb |
1.51 |
# Check for sys/loadavg.h |
56 |
tdb |
1.50 |
AC_CHECK_HEADERS([sys/loadavg.h]) |
57 |
tdb |
1.51 |
|
58 |
|
|
# Check for libdevinfo.h |
59 |
|
|
AC_CHECK_HEADERS([libdevinfo.h]) |
60 |
tdb |
1.4 |
|
61 |
tdb |
1.46 |
# Default needing setgid/setuid to false |
62 |
tdb |
1.35 |
AM_CONDITIONAL(SETGIDBINS, false) |
63 |
tdb |
1.46 |
AM_CONDITIONAL(SETUIDBINS, false) |
64 |
tdb |
1.35 |
|
65 |
tdb |
1.4 |
# Set things up for different OS's |
66 |
|
|
# We define the name of the OS so the code can act accordingly |
67 |
|
|
# We also need to add the right LDFLAGS |
68 |
tdb |
1.1 |
case $host_os in |
69 |
tdb |
1.8 |
solaris2.[[6-7]]) |
70 |
|
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
71 |
|
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
72 |
tdb |
1.52 |
AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7]) |
73 |
tdb |
1.46 |
AM_CONDITIONAL(SETUIDBINS, true) |
74 |
tdb |
1.71 |
BIN_OWNER="root" |
75 |
|
|
BIN_PERM="4755" |
76 |
ats |
1.57 |
LINKFLAGS="-lkstat -lsocket -lnsl" |
77 |
tdb |
1.52 |
AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"]) |
78 |
tdb |
1.8 |
;; |
79 |
tdb |
1.1 |
solaris2.*) |
80 |
tdb |
1.4 |
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
81 |
tdb |
1.1 |
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
82 |
ats |
1.57 |
LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl" |
83 |
tdb |
1.1 |
;; |
84 |
|
|
freebsd4.*) |
85 |
ats |
1.38 |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
86 |
tdb |
1.34 |
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
87 |
tdb |
1.35 |
AM_CONDITIONAL(SETGIDBINS, true) |
88 |
tdb |
1.71 |
BIN_GROUP="kmem" |
89 |
|
|
BIN_PERM="2755" |
90 |
tdb |
1.34 |
LINKFLAGS="-lkvm -ldevstat" |
91 |
|
|
;; |
92 |
|
|
freebsd5.*) |
93 |
ats |
1.38 |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
94 |
tdb |
1.34 |
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
95 |
|
|
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x]) |
96 |
tdb |
1.65 |
LINKFLAGS="-ldevstat" |
97 |
ats |
1.38 |
;; |
98 |
tdb |
1.66 |
netbsdelf1*) |
99 |
ats |
1.38 |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
100 |
|
|
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
101 |
tdb |
1.66 |
;; |
102 |
|
|
netbsdelf2*) |
103 |
|
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
104 |
|
|
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
105 |
|
|
AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x]) |
106 |
tdb |
1.54 |
;; |
107 |
|
|
openbsd*) |
108 |
|
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
109 |
|
|
AC_DEFINE(OPENBSD, , [Building on OpenBSD]) |
110 |
tdb |
1.61 |
;; |
111 |
|
|
dragonfly*) |
112 |
|
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
113 |
|
|
AC_DEFINE(DFBSD, , [Building on DragonFlyBSD]) |
114 |
|
|
AM_CONDITIONAL(SETGIDBINS, true) |
115 |
tdb |
1.71 |
BIN_GROUP="kmem" |
116 |
|
|
BIN_PERM="2755" |
117 |
tdb |
1.61 |
LINKFLAGS="-lkvm -ldevstat" |
118 |
tdb |
1.1 |
;; |
119 |
|
|
linux-gnu) |
120 |
|
|
AC_DEFINE(LINUX, , [Building on GNU/Linux]) |
121 |
tdb |
1.60 |
AM_CONDITIONAL(SETUIDBINS, true) |
122 |
tdb |
1.71 |
BIN_OWNER="root" |
123 |
|
|
BIN_PERM="4755" |
124 |
tdb |
1.43 |
;; |
125 |
|
|
cygwin) |
126 |
|
|
AC_DEFINE(CYGWIN, , [Building on Cygwin]) |
127 |
tdb |
1.1 |
;; |
128 |
|
|
*) |
129 |
|
|
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
130 |
|
|
;; |
131 |
|
|
esac |
132 |
tdb |
1.29 |
|
133 |
tdb |
1.31 |
# User specified curses/ncurses prefix |
134 |
|
|
AC_ARG_WITH([curses-prefix], |
135 |
|
|
[ --with-curses-prefix=PATH curses (or ncurses) is in PATH], |
136 |
|
|
[ |
137 |
|
|
if test -d "$withval/lib"; then |
138 |
|
|
SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}" |
139 |
|
|
fi |
140 |
|
|
if test -d "$withval/include"; then |
141 |
tdb |
1.32 |
SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}" |
142 |
tdb |
1.31 |
fi |
143 |
|
|
] |
144 |
|
|
) |
145 |
|
|
|
146 |
|
|
# Check if user wants to disable statgrab |
147 |
|
|
AM_CONDITIONAL(STATGRAB, true) |
148 |
|
|
AC_ARG_ENABLE(statgrab, |
149 |
|
|
[ --disable-statgrab disable building of statgrab], |
150 |
|
|
[ |
151 |
|
|
if test "x$enableval" = "xno" ; then |
152 |
|
|
AM_CONDITIONAL(STATGRAB, false) |
153 |
|
|
fi |
154 |
|
|
] |
155 |
|
|
) |
156 |
|
|
|
157 |
|
|
# Check if user wants to disable saidar |
158 |
|
|
AM_CONDITIONAL(SAIDAR, true) |
159 |
|
|
AC_ARG_ENABLE(saidar, |
160 |
|
|
[ --disable-saidar disable building of saidar], |
161 |
|
|
[ |
162 |
|
|
if test "x$enableval" = "xno" ; then |
163 |
|
|
AM_CONDITIONAL(SAIDAR, false) |
164 |
|
|
fi |
165 |
|
|
], |
166 |
|
|
[ |
167 |
|
|
# saidar needs curses |
168 |
|
|
# (if we don't find curses we disable saidar) |
169 |
|
|
MP_WITH_CURSES |
170 |
|
|
] |
171 |
|
|
) |
172 |
|
|
|
173 |
|
|
# Check if the user would prefer not to build examples |
174 |
|
|
AM_CONDITIONAL(EXAMPLES, true) |
175 |
|
|
AC_ARG_ENABLE(examples, |
176 |
|
|
[ --disable-examples disable building of examples], |
177 |
|
|
[ |
178 |
|
|
if test "x$enableval" = "xno" ; then |
179 |
|
|
AM_CONDITIONAL(EXAMPLES, false) |
180 |
|
|
fi |
181 |
|
|
] |
182 |
|
|
) |
183 |
|
|
|
184 |
|
|
# Check if user wants to install manpages |
185 |
|
|
AM_CONDITIONAL(MANPAGES, true) |
186 |
|
|
AC_ARG_ENABLE(manpages, |
187 |
|
|
[ --disable-manpages disable installation of manpages], |
188 |
|
|
[ |
189 |
|
|
if test "x$enableval" = "xno" ; then |
190 |
|
|
AM_CONDITIONAL(MANPAGES, false) |
191 |
|
|
fi |
192 |
|
|
] |
193 |
tdb |
1.35 |
) |
194 |
|
|
|
195 |
|
|
# Check if the user wants to turn off setgid binaries |
196 |
|
|
AC_ARG_ENABLE(setgid-binaries, |
197 |
|
|
[ --disable-setgid-binaries disable binaries being setgid], |
198 |
|
|
[ |
199 |
|
|
if test "x$enableval" = "xno" ; then |
200 |
|
|
AM_CONDITIONAL(SETGIDBINS, false) |
201 |
tdb |
1.46 |
fi |
202 |
|
|
] |
203 |
|
|
) |
204 |
|
|
|
205 |
|
|
# Check if the user wants to turn off setuid binaries |
206 |
|
|
AC_ARG_ENABLE(setuid-binaries, |
207 |
|
|
[ --disable-setuid-binaries disable binaries being setuid], |
208 |
|
|
[ |
209 |
|
|
if test "x$enableval" = "xno" ; then |
210 |
|
|
AM_CONDITIONAL(SETUIDBINS, false) |
211 |
tdb |
1.35 |
fi |
212 |
|
|
] |
213 |
tdb |
1.67 |
) |
214 |
|
|
|
215 |
|
|
# Check if the user would prefer not to include compatibility code |
216 |
|
|
AM_CONDITIONAL(DEPRECATED, true) |
217 |
|
|
AC_ARG_ENABLE(deprecated, |
218 |
|
|
[ --disable-deprecated disable inclusion of pre-0.10 compatibility code], |
219 |
|
|
[ |
220 |
|
|
if test "x$enableval" = "xno" ; then |
221 |
|
|
AM_CONDITIONAL(DEPRECATED, false) |
222 |
|
|
fi |
223 |
|
|
] |
224 |
tdb |
1.31 |
) |
225 |
|
|
|
226 |
|
|
# The LIBS and CPPFLAGS that saidar needs |
227 |
|
|
AC_SUBST(SAIDARLIBS) |
228 |
|
|
AC_SUBST(SAIDARCPPFLAGS) |
229 |
|
|
|
230 |
|
|
# The flags needed to link to libstatgrab |
231 |
|
|
# (ie. our dependencies) |
232 |
tdb |
1.29 |
AC_SUBST(LINKFLAGS) |
233 |
tdb |
1.71 |
|
234 |
|
|
# Ownership and permissions possibly needed for binaries |
235 |
|
|
AC_SUBST(BIN_OWNER) |
236 |
|
|
AC_SUBST(BIN_GROUP) |
237 |
|
|
AC_SUBST(BIN_PERM) |
238 |
tdb |
1.1 |
|
239 |
tdb |
1.4 |
# And finish by changing these files |
240 |
tdb |
1.31 |
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]) |
241 |
tdb |
1.4 |
|
242 |
|
|
AC_OUTPUT |