ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.69
Committed: Sun Jun 20 17:00:25 2004 UTC (19 years, 10 months ago) by tdb
Branch: MAIN
Changes since 1.68: +9 -3 lines
Log Message:
Since OpenBSD 3.5 disk io stats have been seperated into read and write,
just like NetBSD. This fixes libstatgrab to work on 3.5+.

Bug reported by Wijnand Wiersma and Christian Weisgerber.

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.68 2004/05/19 15:12:44 tdb Exp $
6 #
7
8 # Change these to change the package name and version
9 AC_INIT(libstatgrab, 0.10.1, bugs@i-scream.org)
10 AM_INIT_AUTOMAKE(libstatgrab, 0.10.1)
11
12 # Revision number (automatically updated)
13 AC_REVISION($Revision: 1.68 $)
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_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 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 [],
47 [#include <sys/disk.h>])
48
49 # Check for sys/loadavg.h
50 AC_CHECK_HEADERS([sys/loadavg.h])
51
52 # Check for libdevinfo.h
53 AC_CHECK_HEADERS([libdevinfo.h])
54
55 # Default needing setgid/setuid to false
56 AM_CONDITIONAL(SETGIDBINS, false)
57 AM_CONDITIONAL(SETUIDBINS, false)
58
59 # Set things up for different OS's
60 # We define the name of the OS so the code can act accordingly
61 # We also need to add the right LDFLAGS
62 case $host_os in
63 solaris2.[[6-7]])
64 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
65 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
66 AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7])
67 AM_CONDITIONAL(SETUIDBINS, true)
68 LINKFLAGS="-lkstat -lsocket -lnsl"
69 AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"])
70 ;;
71 solaris2.*)
72 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
73 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
74 LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl"
75 ;;
76 freebsd4.*)
77 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
78 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
79 AM_CONDITIONAL(SETGIDBINS, true)
80 LINKFLAGS="-lkvm -ldevstat"
81 ;;
82 freebsd5.*)
83 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
84 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
85 AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
86 LINKFLAGS="-ldevstat"
87 ;;
88 netbsdelf1*)
89 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
90 AC_DEFINE(NETBSD, , [Building on NetBSD])
91 ;;
92 netbsdelf2*)
93 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
94 AC_DEFINE(NETBSD, , [Building on NetBSD])
95 AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x])
96 ;;
97 openbsd*)
98 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
99 AC_DEFINE(OPENBSD, , [Building on OpenBSD])
100 ;;
101 dragonfly*)
102 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
103 AC_DEFINE(DFBSD, , [Building on DragonFlyBSD])
104 AM_CONDITIONAL(SETGIDBINS, true)
105 LINKFLAGS="-lkvm -ldevstat"
106 ;;
107 linux-gnu)
108 AC_DEFINE(LINUX, , [Building on GNU/Linux])
109 AM_CONDITIONAL(SETUIDBINS, true)
110 ;;
111 cygwin)
112 AC_DEFINE(CYGWIN, , [Building on Cygwin])
113 ;;
114 *)
115 AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
116 ;;
117 esac
118
119 # User specified curses/ncurses prefix
120 AC_ARG_WITH([curses-prefix],
121 [ --with-curses-prefix=PATH curses (or ncurses) is in PATH],
122 [
123 if test -d "$withval/lib"; then
124 SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
125 fi
126 if test -d "$withval/include"; then
127 SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}"
128 fi
129 ]
130 )
131
132 # Check if user wants to disable statgrab
133 AM_CONDITIONAL(STATGRAB, true)
134 AC_ARG_ENABLE(statgrab,
135 [ --disable-statgrab disable building of statgrab],
136 [
137 if test "x$enableval" = "xno" ; then
138 AM_CONDITIONAL(STATGRAB, false)
139 fi
140 ]
141 )
142
143 # Check if user wants to disable saidar
144 AM_CONDITIONAL(SAIDAR, true)
145 AC_ARG_ENABLE(saidar,
146 [ --disable-saidar disable building of saidar],
147 [
148 if test "x$enableval" = "xno" ; then
149 AM_CONDITIONAL(SAIDAR, false)
150 fi
151 ],
152 [
153 # saidar needs curses
154 # (if we don't find curses we disable saidar)
155 MP_WITH_CURSES
156 ]
157 )
158
159 # Check if the user would prefer not to build examples
160 AM_CONDITIONAL(EXAMPLES, true)
161 AC_ARG_ENABLE(examples,
162 [ --disable-examples disable building of examples],
163 [
164 if test "x$enableval" = "xno" ; then
165 AM_CONDITIONAL(EXAMPLES, false)
166 fi
167 ]
168 )
169
170 # Check if user wants to install manpages
171 AM_CONDITIONAL(MANPAGES, true)
172 AC_ARG_ENABLE(manpages,
173 [ --disable-manpages disable installation of manpages],
174 [
175 if test "x$enableval" = "xno" ; then
176 AM_CONDITIONAL(MANPAGES, false)
177 fi
178 ]
179 )
180
181 # Check if the user wants to turn off setgid binaries
182 AC_ARG_ENABLE(setgid-binaries,
183 [ --disable-setgid-binaries disable binaries being setgid],
184 [
185 if test "x$enableval" = "xno" ; then
186 AM_CONDITIONAL(SETGIDBINS, false)
187 fi
188 ]
189 )
190
191 # Check if the user wants to turn off setuid binaries
192 AC_ARG_ENABLE(setuid-binaries,
193 [ --disable-setuid-binaries disable binaries being setuid],
194 [
195 if test "x$enableval" = "xno" ; then
196 AM_CONDITIONAL(SETUIDBINS, false)
197 fi
198 ]
199 )
200
201 # Check if the user would prefer not to include compatibility code
202 AM_CONDITIONAL(DEPRECATED, true)
203 AC_ARG_ENABLE(deprecated,
204 [ --disable-deprecated disable inclusion of pre-0.10 compatibility code],
205 [
206 if test "x$enableval" = "xno" ; then
207 AM_CONDITIONAL(DEPRECATED, false)
208 fi
209 ]
210 )
211
212 # The LIBS and CPPFLAGS that saidar needs
213 AC_SUBST(SAIDARLIBS)
214 AC_SUBST(SAIDARCPPFLAGS)
215
216 # The flags needed to link to libstatgrab
217 # (ie. our dependencies)
218 AC_SUBST(LINKFLAGS)
219
220 # And finish by changing these files
221 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])
222
223 AC_OUTPUT