ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.70
Committed: Sun Jun 20 20:32:24 2004 UTC (19 years, 9 months ago) by tdb
Branch: MAIN
Changes since 1.69: +8 -2 lines
Log Message:
On NetBSD 2.0 (in fact, all BSD's, but only know of NetBSD 2.0) use statvfs
instead of statfs when available.

No guarantees I've got this right - I need to upgrade our NetBSD 2 test
machine to a more recent build.

File Contents

# User Rev Content
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.70 # $Id: configure.in,v 1.69 2004/06/20 17:00:25 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.68 AC_INIT(libstatgrab, 0.10.1, bugs@i-scream.org)
10     AM_INIT_AUTOMAKE(libstatgrab, 0.10.1)
11 tdb 1.1
12 tdb 1.4 # Revision number (automatically updated)
13 tdb 1.70 AC_REVISION($Revision: 1.69 $)
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 ats 1.57 LINKFLAGS="-lkstat -lsocket -lnsl"
75 tdb 1.52 AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"])
76 tdb 1.8 ;;
77 tdb 1.1 solaris2.*)
78 tdb 1.4 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
79 tdb 1.1 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
80 ats 1.57 LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl"
81 tdb 1.1 ;;
82     freebsd4.*)
83 ats 1.38 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
84 tdb 1.34 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
85 tdb 1.35 AM_CONDITIONAL(SETGIDBINS, true)
86 tdb 1.34 LINKFLAGS="-lkvm -ldevstat"
87     ;;
88     freebsd5.*)
89 ats 1.38 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
90 tdb 1.34 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
91     AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
92 tdb 1.65 LINKFLAGS="-ldevstat"
93 ats 1.38 ;;
94 tdb 1.66 netbsdelf1*)
95 ats 1.38 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
96     AC_DEFINE(NETBSD, , [Building on NetBSD])
97 tdb 1.66 ;;
98     netbsdelf2*)
99     AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
100     AC_DEFINE(NETBSD, , [Building on NetBSD])
101     AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x])
102 tdb 1.54 ;;
103     openbsd*)
104     AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
105     AC_DEFINE(OPENBSD, , [Building on OpenBSD])
106 tdb 1.61 ;;
107     dragonfly*)
108     AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
109     AC_DEFINE(DFBSD, , [Building on DragonFlyBSD])
110     AM_CONDITIONAL(SETGIDBINS, true)
111     LINKFLAGS="-lkvm -ldevstat"
112 tdb 1.1 ;;
113     linux-gnu)
114     AC_DEFINE(LINUX, , [Building on GNU/Linux])
115 tdb 1.60 AM_CONDITIONAL(SETUIDBINS, true)
116 tdb 1.43 ;;
117     cygwin)
118     AC_DEFINE(CYGWIN, , [Building on Cygwin])
119 tdb 1.1 ;;
120     *)
121     AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
122     ;;
123     esac
124 tdb 1.29
125 tdb 1.31 # User specified curses/ncurses prefix
126     AC_ARG_WITH([curses-prefix],
127     [ --with-curses-prefix=PATH curses (or ncurses) is in PATH],
128     [
129     if test -d "$withval/lib"; then
130     SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
131     fi
132     if test -d "$withval/include"; then
133 tdb 1.32 SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}"
134 tdb 1.31 fi
135     ]
136     )
137    
138     # Check if user wants to disable statgrab
139     AM_CONDITIONAL(STATGRAB, true)
140     AC_ARG_ENABLE(statgrab,
141     [ --disable-statgrab disable building of statgrab],
142     [
143     if test "x$enableval" = "xno" ; then
144     AM_CONDITIONAL(STATGRAB, false)
145     fi
146     ]
147     )
148    
149     # Check if user wants to disable saidar
150     AM_CONDITIONAL(SAIDAR, true)
151     AC_ARG_ENABLE(saidar,
152     [ --disable-saidar disable building of saidar],
153     [
154     if test "x$enableval" = "xno" ; then
155     AM_CONDITIONAL(SAIDAR, false)
156     fi
157     ],
158     [
159     # saidar needs curses
160     # (if we don't find curses we disable saidar)
161     MP_WITH_CURSES
162     ]
163     )
164    
165     # Check if the user would prefer not to build examples
166     AM_CONDITIONAL(EXAMPLES, true)
167     AC_ARG_ENABLE(examples,
168     [ --disable-examples disable building of examples],
169     [
170     if test "x$enableval" = "xno" ; then
171     AM_CONDITIONAL(EXAMPLES, false)
172     fi
173     ]
174     )
175    
176     # Check if user wants to install manpages
177     AM_CONDITIONAL(MANPAGES, true)
178     AC_ARG_ENABLE(manpages,
179     [ --disable-manpages disable installation of manpages],
180     [
181     if test "x$enableval" = "xno" ; then
182     AM_CONDITIONAL(MANPAGES, false)
183     fi
184     ]
185 tdb 1.35 )
186    
187     # Check if the user wants to turn off setgid binaries
188     AC_ARG_ENABLE(setgid-binaries,
189     [ --disable-setgid-binaries disable binaries being setgid],
190     [
191     if test "x$enableval" = "xno" ; then
192     AM_CONDITIONAL(SETGIDBINS, false)
193 tdb 1.46 fi
194     ]
195     )
196    
197     # Check if the user wants to turn off setuid binaries
198     AC_ARG_ENABLE(setuid-binaries,
199     [ --disable-setuid-binaries disable binaries being setuid],
200     [
201     if test "x$enableval" = "xno" ; then
202     AM_CONDITIONAL(SETUIDBINS, false)
203 tdb 1.35 fi
204     ]
205 tdb 1.67 )
206    
207     # Check if the user would prefer not to include compatibility code
208     AM_CONDITIONAL(DEPRECATED, true)
209     AC_ARG_ENABLE(deprecated,
210     [ --disable-deprecated disable inclusion of pre-0.10 compatibility code],
211     [
212     if test "x$enableval" = "xno" ; then
213     AM_CONDITIONAL(DEPRECATED, false)
214     fi
215     ]
216 tdb 1.31 )
217    
218     # The LIBS and CPPFLAGS that saidar needs
219     AC_SUBST(SAIDARLIBS)
220     AC_SUBST(SAIDARCPPFLAGS)
221    
222     # The flags needed to link to libstatgrab
223     # (ie. our dependencies)
224 tdb 1.29 AC_SUBST(LINKFLAGS)
225 tdb 1.1
226 tdb 1.4 # And finish by changing these files
227 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])
228 tdb 1.4
229     AC_OUTPUT