ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.83
Committed: Mon Apr 25 11:01:18 2005 UTC (18 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.82: +3 -14 lines
Log Message:
Nuke sgps - Pete's decided it's actually rather pointless as it doesn't
offer anything that other ps programs don't.

File Contents

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