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.51 |
# $Id: configure.in,v 1.50 2004/02/10 12:14:38 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.49 |
AC_INIT(libstatgrab, 0.8.2, bugs@i-scream.org) |
10 |
|
|
AM_INIT_AUTOMAKE(libstatgrab, 0.8.2) |
11 |
tdb |
1.1 |
|
12 |
tdb |
1.4 |
# Revision number (automatically updated) |
13 |
tdb |
1.51 |
AC_REVISION($Revision: 1.50 $) |
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 |
|
|
[AC_DEFINE(HAVE_DK_RBYTES, , [New-style NetBSD stats])], |
40 |
|
|
[], |
41 |
|
|
[#include <sys/disk.h>]) |
42 |
tdb |
1.50 |
|
43 |
tdb |
1.51 |
# Check for sys/loadavg.h |
44 |
tdb |
1.50 |
AC_CHECK_HEADERS([sys/loadavg.h]) |
45 |
tdb |
1.51 |
|
46 |
|
|
# Check for libdevinfo.h |
47 |
|
|
AC_CHECK_HEADERS([libdevinfo.h]) |
48 |
tdb |
1.4 |
|
49 |
tdb |
1.46 |
# Default needing setgid/setuid to false |
50 |
tdb |
1.35 |
AM_CONDITIONAL(SETGIDBINS, false) |
51 |
tdb |
1.46 |
AM_CONDITIONAL(SETUIDBINS, false) |
52 |
tdb |
1.35 |
|
53 |
tdb |
1.4 |
# Set things up for different OS's |
54 |
|
|
# We define the name of the OS so the code can act accordingly |
55 |
|
|
# We also need to add the right LDFLAGS |
56 |
tdb |
1.1 |
case $host_os in |
57 |
tdb |
1.8 |
solaris2.[[6-7]]) |
58 |
|
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
59 |
|
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
60 |
|
|
AC_DEFINE(SOL7, , [Building on Solaris 2.7]) |
61 |
tdb |
1.46 |
AM_CONDITIONAL(SETUIDBINS, true) |
62 |
tdb |
1.45 |
LINKFLAGS="-lkstat -ldevinfo" |
63 |
tdb |
1.8 |
;; |
64 |
tdb |
1.1 |
solaris2.*) |
65 |
tdb |
1.4 |
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
66 |
tdb |
1.1 |
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
67 |
tdb |
1.46 |
AM_CONDITIONAL(SETUIDBINS, true) |
68 |
tdb |
1.45 |
LINKFLAGS="-lkstat -ldevinfo" |
69 |
tdb |
1.1 |
;; |
70 |
|
|
freebsd4.*) |
71 |
ats |
1.38 |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
72 |
tdb |
1.34 |
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
73 |
tdb |
1.35 |
AM_CONDITIONAL(SETGIDBINS, true) |
74 |
tdb |
1.34 |
LINKFLAGS="-lkvm -ldevstat" |
75 |
|
|
;; |
76 |
|
|
freebsd5.*) |
77 |
ats |
1.38 |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
78 |
tdb |
1.34 |
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
79 |
|
|
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x]) |
80 |
tdb |
1.35 |
AM_CONDITIONAL(SETGIDBINS, true) |
81 |
tdb |
1.29 |
LINKFLAGS="-lkvm -ldevstat" |
82 |
ats |
1.38 |
;; |
83 |
tdb |
1.42 |
netbsdelf*) |
84 |
ats |
1.38 |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
85 |
|
|
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
86 |
|
|
AM_CONDITIONAL(SETGIDBINS, true) |
87 |
|
|
LINKFLAGS="-lkvm" |
88 |
tdb |
1.1 |
;; |
89 |
|
|
linux-gnu) |
90 |
|
|
AC_DEFINE(LINUX, , [Building on GNU/Linux]) |
91 |
tdb |
1.43 |
;; |
92 |
|
|
cygwin) |
93 |
|
|
AC_DEFINE(CYGWIN, , [Building on Cygwin]) |
94 |
tdb |
1.1 |
;; |
95 |
|
|
*) |
96 |
|
|
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
97 |
|
|
;; |
98 |
|
|
esac |
99 |
tdb |
1.29 |
|
100 |
tdb |
1.31 |
# User specified curses/ncurses prefix |
101 |
|
|
AC_ARG_WITH([curses-prefix], |
102 |
|
|
[ --with-curses-prefix=PATH curses (or ncurses) is in PATH], |
103 |
|
|
[ |
104 |
|
|
if test -d "$withval/lib"; then |
105 |
|
|
SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}" |
106 |
|
|
fi |
107 |
|
|
if test -d "$withval/include"; then |
108 |
tdb |
1.32 |
SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}" |
109 |
tdb |
1.31 |
fi |
110 |
|
|
] |
111 |
|
|
) |
112 |
|
|
|
113 |
|
|
# Check if user wants to disable statgrab |
114 |
|
|
AM_CONDITIONAL(STATGRAB, true) |
115 |
|
|
AC_ARG_ENABLE(statgrab, |
116 |
|
|
[ --disable-statgrab disable building of statgrab], |
117 |
|
|
[ |
118 |
|
|
if test "x$enableval" = "xno" ; then |
119 |
|
|
AM_CONDITIONAL(STATGRAB, false) |
120 |
|
|
fi |
121 |
|
|
] |
122 |
|
|
) |
123 |
|
|
|
124 |
|
|
# Check if user wants to disable saidar |
125 |
|
|
AM_CONDITIONAL(SAIDAR, true) |
126 |
|
|
AC_ARG_ENABLE(saidar, |
127 |
|
|
[ --disable-saidar disable building of saidar], |
128 |
|
|
[ |
129 |
|
|
if test "x$enableval" = "xno" ; then |
130 |
|
|
AM_CONDITIONAL(SAIDAR, false) |
131 |
|
|
fi |
132 |
|
|
], |
133 |
|
|
[ |
134 |
|
|
# saidar needs curses |
135 |
|
|
# (if we don't find curses we disable saidar) |
136 |
|
|
MP_WITH_CURSES |
137 |
|
|
] |
138 |
|
|
) |
139 |
|
|
|
140 |
|
|
# Check if the user would prefer not to build examples |
141 |
|
|
AM_CONDITIONAL(EXAMPLES, true) |
142 |
|
|
AC_ARG_ENABLE(examples, |
143 |
|
|
[ --disable-examples disable building of examples], |
144 |
|
|
[ |
145 |
|
|
if test "x$enableval" = "xno" ; then |
146 |
|
|
AM_CONDITIONAL(EXAMPLES, false) |
147 |
|
|
fi |
148 |
|
|
] |
149 |
|
|
) |
150 |
|
|
|
151 |
|
|
# Check if user wants to install manpages |
152 |
|
|
AM_CONDITIONAL(MANPAGES, true) |
153 |
|
|
AC_ARG_ENABLE(manpages, |
154 |
|
|
[ --disable-manpages disable installation of manpages], |
155 |
|
|
[ |
156 |
|
|
if test "x$enableval" = "xno" ; then |
157 |
|
|
AM_CONDITIONAL(MANPAGES, false) |
158 |
|
|
fi |
159 |
|
|
] |
160 |
tdb |
1.35 |
) |
161 |
|
|
|
162 |
|
|
# Check if the user wants to turn off setgid binaries |
163 |
|
|
AC_ARG_ENABLE(setgid-binaries, |
164 |
|
|
[ --disable-setgid-binaries disable binaries being setgid], |
165 |
|
|
[ |
166 |
|
|
if test "x$enableval" = "xno" ; then |
167 |
|
|
AM_CONDITIONAL(SETGIDBINS, false) |
168 |
tdb |
1.46 |
fi |
169 |
|
|
] |
170 |
|
|
) |
171 |
|
|
|
172 |
|
|
# Check if the user wants to turn off setuid binaries |
173 |
|
|
AC_ARG_ENABLE(setuid-binaries, |
174 |
|
|
[ --disable-setuid-binaries disable binaries being setuid], |
175 |
|
|
[ |
176 |
|
|
if test "x$enableval" = "xno" ; then |
177 |
|
|
AM_CONDITIONAL(SETUIDBINS, false) |
178 |
tdb |
1.35 |
fi |
179 |
|
|
] |
180 |
tdb |
1.31 |
) |
181 |
|
|
|
182 |
|
|
# The LIBS and CPPFLAGS that saidar needs |
183 |
|
|
AC_SUBST(SAIDARLIBS) |
184 |
|
|
AC_SUBST(SAIDARCPPFLAGS) |
185 |
|
|
|
186 |
|
|
# The flags needed to link to libstatgrab |
187 |
|
|
# (ie. our dependencies) |
188 |
tdb |
1.29 |
AC_SUBST(LINKFLAGS) |
189 |
tdb |
1.1 |
|
190 |
tdb |
1.4 |
# And finish by changing these files |
191 |
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]) |
192 |
tdb |
1.4 |
|
193 |
|
|
AC_OUTPUT |