ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
(Generate patch)

Comparing projects/libstatgrab/configure.in (file contents):
Revision 1.3 by tdb, Wed Feb 19 23:09:48 2003 UTC vs.
Revision 1.91 by tdb, Fri Dec 1 14:21:16 2006 UTC

# Line 1 | Line 1
1 < dnl configure.in for libstatgrab
2 < dnl $Id$
1 > #                                               -*- Autoconf -*-
2 > # Process this file with autoconf to produce a configure script.
3 > #
4 > # configure.in for libstatgrab
5 > # $Id$
6 > #
7  
8 < dnl Change these to change the package name and version
9 < AC_INIT(libstatgrab, 0.1, dev@i-scream.org.uk)
10 < AM_INIT_AUTOMAKE(libstatgrab, 0.1)
8 > # Change these to change the package name and version
9 > AC_INIT(libstatgrab, 0.14, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.14)
11 > AM_MAINTAINER_MODE
12  
13 < dnl The file we use to pass #define's to the source
14 < AC_CONFIG_HEADER(config.h)
13 > # Revision number (automatically updated)
14 > AC_REVISION($Revision$)
15  
16 < dnl We need a CC, install, and libtool
16 > # Might work with older autoconfs... but tested on 2.57
17 > AC_PREREQ(2.57)
18 >
19 > # The file we use to pass #define's to the source
20 > AM_CONFIG_HEADER([config.h])
21 >
22 > # Checks for programs
23   AC_PROG_CC
24   AC_PROG_INSTALL
25   AC_PROG_LIBTOOL
26  
27 < dnl And we probably need the standard C bits
27 > # Checks for header files
28   AC_HEADER_STDC
29  
30 < dnl The program needs to know whether it can use getloadavg
31 < AC_CHECK_FUNCS(getloadavg)
30 > # Checks for typedefs, structures, and compiler characteristics
31 > AC_C_CONST
32  
33 < dnl Set things up for different OS's
34 < dnl We define the name of the OS so the code can act accordingly
35 < dnl We also need to add the right LDFLAGS
33 > # Checks for library functions
34 > AC_FUNC_MALLOC
35 > AC_CHECK_FUNCS(atoll seteuid setegid setresuid setresgid)
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 > # 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 >
55 > # Check for sys/loadavg.h
56 > AC_CHECK_HEADERS([sys/loadavg.h])
57 >
58 > # Check for libdevinfo.h
59 > AC_CHECK_HEADERS([libdevinfo.h])
60 >
61 > # Default needing setgid/setuid to false
62 > AM_CONDITIONAL(SETGIDBINS, false)
63 > AM_CONDITIONAL(SETUIDBINS, false)
64 >
65 > # Default MINGW setting
66 > AM_CONDITIONAL(MINGW, false)
67 >
68 > # Set things up for different OS's
69 > # We define the name of the OS so the code can act accordingly
70 > # We also need to add the right LDFLAGS
71   case $host_os in
72 + solaris2.[[6-7]])
73 +        AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
74 +        AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
75 +        AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7])
76 +        AM_CONDITIONAL(SETUIDBINS, true)
77 +        BIN_OWNER="root"
78 +        BIN_PERM="4755"
79 +        LINKFLAGS="-lkstat -lsocket -lnsl"
80 +        AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"])
81 +        ;;
82   solaris2.*)
83 +        AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
84          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
85 <        LDFLAGS="$LDFLAGS -lkstat"
85 >        LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl"
86          ;;
87 + hpux11.11*)
88 +        AC_DEFINE(HPUX, , [Building on HP-UX 11.11])
89 +        ;;
90   freebsd4.*)
91 <        AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x])
92 <        LDFLAGS="$LDFLAGS -lkvm"
91 >        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
92 >        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
93 >        AM_CONDITIONAL(SETGIDBINS, true)
94 >        BIN_GROUP="kmem"
95 >        BIN_PERM="2755"
96 >        LINKFLAGS="-lkvm -ldevstat"
97          ;;
98 + freebsd[[5-7]].*)
99 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
100 +        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
101 +        AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x - 7.x])
102 +        LINKFLAGS="-ldevstat"
103 +        ;;
104 + netbsdelf1*)
105 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
106 +        AC_DEFINE(NETBSD, , [Building on NetBSD])
107 +        ;;
108 + netbsdelf[[2-3]]*)
109 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
110 +        AC_DEFINE(NETBSD, , [Building on NetBSD])
111 +        AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x])
112 +        ;;
113 + openbsd*)
114 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
115 +        AC_DEFINE(OPENBSD, , [Building on OpenBSD])
116 +        ;;
117 + dragonfly*)
118 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
119 +        AC_DEFINE(DFBSD, , [Building on DragonFlyBSD])
120 +        AM_CONDITIONAL(SETGIDBINS, true)
121 +        BIN_GROUP="kmem"
122 +        BIN_PERM="2755"
123 +        LINKFLAGS="-lkvm -ldevstat"
124 +        ;;
125   linux-gnu)
126          AC_DEFINE(LINUX, , [Building on GNU/Linux])
127 +        AM_CONDITIONAL(SETUIDBINS, true)
128 +        BIN_OWNER="root"
129 +        BIN_PERM="4755"
130          ;;
131 + cygwin)
132 +        AC_DEFINE(CYGWIN, , [Building on Cygwin])
133 +        ;;
134 + mingw32)
135 +        AC_DEFINE(MINGW, , [Building on MinGW])
136 +        AC_DEFINE(WINVER, 0x0500, [Building for Windows 2000])
137 +        AM_CONDITIONAL(MINGW, true)
138 +        LINKFLAGS="-lpdh -lIphlpapi -lpsapi -lnetapi32"
139 +        ;;
140   *)
141          AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
142          ;;
143   esac
144  
145 < dnl And finish by changing these files
146 < AC_OUTPUT([Makefile src/Makefile])
145 > # User specified curses/ncurses prefix
146 > AC_ARG_WITH([curses-prefix],
147 >        [  --with-curses-prefix=PATH     curses (or ncurses) is in PATH],
148 >        [
149 >                if test -d "$withval/lib"; then
150 >                        SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
151 >                fi
152 >                if test -d "$withval/include"; then
153 >                        SAIDARCPPFLAGS="-I${withval}/include ${SAIRDARCPPFLAGS}"
154 >                fi
155 >        ]
156 > )
157 >
158 > # Check if user wants to disable statgrab
159 > AM_CONDITIONAL(STATGRAB, true)
160 > AC_ARG_ENABLE(statgrab,
161 >        [  --disable-statgrab      disable building of statgrab],
162 >        [
163 >                if test "x$enableval" = "xno" ; then
164 >                        AM_CONDITIONAL(STATGRAB, false)
165 >                fi
166 >        ]
167 > )
168 >
169 > # Check if user wants to disable saidar
170 > AM_CONDITIONAL(SAIDAR, true)
171 > AC_ARG_ENABLE(saidar,
172 >        [  --disable-saidar        disable building of saidar],
173 >        [
174 >                if test "x$enableval" = "xno" ; then
175 >                        AM_CONDITIONAL(SAIDAR, false)
176 >                fi
177 >        ],
178 >        [
179 >                # saidar needs curses
180 >                # (if we don't find curses we disable saidar)
181 >                MP_WITH_CURSES
182 >        ]
183 > )
184 >
185 > # Check if the user would prefer not to build examples
186 > AM_CONDITIONAL(EXAMPLES, true)
187 > AC_ARG_ENABLE(examples,
188 >        [  --disable-examples      disable building of examples],
189 >        [
190 >                if test "x$enableval" = "xno" ; then
191 >                        AM_CONDITIONAL(EXAMPLES, false)
192 >                fi
193 >        ]
194 > )
195 >
196 > # Check if user wants to install manpages
197 > AM_CONDITIONAL(MANPAGES, true)
198 > AC_ARG_ENABLE(manpages,
199 >        [  --disable-manpages      disable installation of manpages],
200 >        [
201 >                if test "x$enableval" = "xno" ; then
202 >                        AM_CONDITIONAL(MANPAGES, false)
203 >                fi
204 >        ]
205 > )
206 >
207 > # Check if the user wants to turn off setgid binaries
208 > AC_ARG_ENABLE(setgid-binaries,
209 >        [  --disable-setgid-binaries     disable binaries being setgid],
210 >        [
211 >                if test "x$enableval" = "xno" ; then
212 >                        AM_CONDITIONAL(SETGIDBINS, false)
213 >                fi
214 >        ]
215 > )
216 >
217 > # Check if the user wants to turn off setuid binaries
218 > AC_ARG_ENABLE(setuid-binaries,
219 >        [  --disable-setuid-binaries     disable binaries being setuid],
220 >        [
221 >                if test "x$enableval" = "xno" ; then
222 >                        AM_CONDITIONAL(SETUIDBINS, false)
223 >                fi
224 >        ]
225 > )
226 >
227 > # Check if the user would prefer not to include compatibility code
228 > AM_CONDITIONAL(DEPRECATED, true)
229 > AC_ARG_ENABLE(deprecated,
230 >        [  --disable-deprecated    disable inclusion of pre-0.10 compatibility code],
231 >        [
232 >                if test "x$enableval" = "xno" ; then
233 >                        AM_CONDITIONAL(DEPRECATED, false)
234 >                fi
235 >        ]
236 > )
237 >
238 > # The LIBS and CPPFLAGS that saidar needs
239 > AC_SUBST(SAIDARLIBS)
240 > AC_SUBST(SAIDARCPPFLAGS)
241 >
242 > # The flags needed to link to libstatgrab
243 > # (ie. our dependencies)
244 > AC_SUBST(LINKFLAGS)
245 >
246 > # Ownership and permissions possibly needed for binaries
247 > AC_SUBST(BIN_OWNER)
248 > AC_SUBST(BIN_GROUP)
249 > AC_SUBST(BIN_PERM)
250 >
251 > # And finish by changing these files
252 > AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile docs/libstatgrab/Makefile docs/statgrab/Makefile docs/saidar/Makefile examples/Makefile libstatgrab.pc src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index src/saidar/Makefile])
253 >
254 > AC_OUTPUT

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines