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.2 by tdb, Wed Feb 19 18:49:18 2003 UTC vs.
Revision 1.53 by tdb, Tue Feb 10 20:03:31 2004 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.8.3, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.8.3)
11  
12 < dnl The file we use to pass #define's to the source
13 < AM_CONFIG_HEADER(config.h)
12 > # Revision number (automatically updated)
13 > AC_REVISION($Revision$)
14  
15 < dnl We need a CC, install, and libtool
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 < dnl And we probably need the standard C bits
26 > # Checks for header files
27   AC_HEADER_STDC
28  
29 < dnl The program needs to know whether it can use getloadavg
30 < AC_CHECK_FUNCS(getloadavg)
29 > # Checks for typedefs, structures, and compiler characteristics
30 > AC_C_CONST
31  
32 < dnl Set things up for different OS's
33 < dnl We define the name of the OS so the code can act accordingly
34 < dnl We also need to add the right LDFLAGS
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 stats])],
40 >                [],
41 >                [#include <sys/disk.h>])
42 >
43 > # Check for sys/loadavg.h
44 > AC_CHECK_HEADERS([sys/loadavg.h])
45 >
46 > # Check for libdevinfo.h
47 > AC_CHECK_HEADERS([libdevinfo.h])
48 >
49 > # Default needing setgid/setuid to false
50 > AM_CONDITIONAL(SETGIDBINS, false)
51 > AM_CONDITIONAL(SETUIDBINS, false)
52 >
53 > # 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   case $host_os in
57 + 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 +        AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7])
61 +        AM_CONDITIONAL(SETUIDBINS, true)
62 +        LINKFLAGS="-lkstat"
63 +        AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"])
64 +        ;;
65   solaris2.*)
66 +        AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
67          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
68 <        LDFLAGS="$LDFLAGS -lkstat"
68 >        AM_CONDITIONAL(SETUIDBINS, true)
69 >        LINKFLAGS="-lkstat -ldevinfo"
70          ;;
71   freebsd4.*)
72 <        AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x])
73 <        LDFLAGS="$LDFLAGS -lkvm"
72 >        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
73 >        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
74 >        AM_CONDITIONAL(SETGIDBINS, true)
75 >        LINKFLAGS="-lkvm -ldevstat"
76          ;;
77 + freebsd5.*)
78 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
79 +        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
80 +        AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
81 +        AM_CONDITIONAL(SETGIDBINS, true)
82 +        LINKFLAGS="-lkvm -ldevstat"
83 +        ;;
84 + netbsdelf*)
85 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
86 +        AC_DEFINE(NETBSD, , [Building on NetBSD])
87 +        AM_CONDITIONAL(SETGIDBINS, true)
88 +        LINKFLAGS="-lkvm"
89 +        ;;
90   linux-gnu)
91          AC_DEFINE(LINUX, , [Building on GNU/Linux])
92          ;;
93 + cygwin)
94 +        AC_DEFINE(CYGWIN, , [Building on Cygwin])
95 +        ;;
96   *)
97          AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
98          ;;
99   esac
100  
101 < dnl And finish by changing these files
102 < AC_OUTPUT([Makefile])
101 > # User specified curses/ncurses prefix
102 > AC_ARG_WITH([curses-prefix],
103 >        [  --with-curses-prefix=PATH     curses (or ncurses) is in PATH],
104 >        [
105 >                if test -d "$withval/lib"; then
106 >                        SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
107 >                fi
108 >                if test -d "$withval/include"; then
109 >                        SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}"
110 >                fi
111 >        ]
112 > )
113 >
114 > # Check if user wants to disable statgrab
115 > AM_CONDITIONAL(STATGRAB, true)
116 > AC_ARG_ENABLE(statgrab,
117 >        [  --disable-statgrab      disable building of statgrab],
118 >        [
119 >                if test "x$enableval" = "xno" ; then
120 >                        AM_CONDITIONAL(STATGRAB, false)
121 >                fi
122 >        ]
123 > )
124 >
125 > # Check if user wants to disable saidar
126 > AM_CONDITIONAL(SAIDAR, true)
127 > AC_ARG_ENABLE(saidar,
128 >        [  --disable-saidar        disable building of saidar],
129 >        [
130 >                if test "x$enableval" = "xno" ; then
131 >                        AM_CONDITIONAL(SAIDAR, false)
132 >                fi
133 >        ],
134 >        [
135 >                # saidar needs curses
136 >                # (if we don't find curses we disable saidar)
137 >                MP_WITH_CURSES
138 >        ]
139 > )
140 >
141 > # Check if the user would prefer not to build examples
142 > AM_CONDITIONAL(EXAMPLES, true)
143 > AC_ARG_ENABLE(examples,
144 >        [  --disable-examples      disable building of examples],
145 >        [
146 >                if test "x$enableval" = "xno" ; then
147 >                        AM_CONDITIONAL(EXAMPLES, false)
148 >                fi
149 >        ]
150 > )
151 >
152 > # Check if user wants to install manpages
153 > AM_CONDITIONAL(MANPAGES, true)
154 > AC_ARG_ENABLE(manpages,
155 >        [  --disable-manpages      disable installation of manpages],
156 >        [
157 >                if test "x$enableval" = "xno" ; then
158 >                        AM_CONDITIONAL(MANPAGES, false)
159 >                fi
160 >        ]
161 > )
162 >
163 > # Check if the user wants to turn off setgid binaries
164 > AC_ARG_ENABLE(setgid-binaries,
165 >        [  --disable-setgid-binaries     disable binaries being setgid],
166 >        [
167 >                if test "x$enableval" = "xno" ; then
168 >                        AM_CONDITIONAL(SETGIDBINS, false)
169 >                fi
170 >        ]
171 > )
172 >
173 > # Check if the user wants to turn off setuid binaries
174 > AC_ARG_ENABLE(setuid-binaries,
175 >        [  --disable-setuid-binaries     disable binaries being setuid],
176 >        [
177 >                if test "x$enableval" = "xno" ; then
178 >                        AM_CONDITIONAL(SETUIDBINS, false)
179 >                fi
180 >        ]
181 > )
182 >
183 > # The LIBS and CPPFLAGS that saidar needs
184 > AC_SUBST(SAIDARLIBS)
185 > AC_SUBST(SAIDARCPPFLAGS)
186 >
187 > # The flags needed to link to libstatgrab
188 > # (ie. our dependencies)
189 > AC_SUBST(LINKFLAGS)
190 >
191 > # And finish by changing these files
192 > 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])
193 >
194 > AC_OUTPUT

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines