ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.67
Committed: Tue Apr 6 16:37:33 2004 UTC (19 years, 11 months ago) by tdb
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_10
Changes since 1.66: +15 -4 lines
Log Message:
Add compatibility code. This provides a working pre-0.10 API for old
applications. To use simply change the #include line to:

#define SG_ENABLE_DEPRECATED
#include <statgrab.h>

This can be disabled at build time completely using --disable-deprecated.

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