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.43 by tdb, Mon Nov 10 21:07:04 2003 UTC vs.
Revision 1.53 by tdb, Tue Feb 10 20:03:31 2004 UTC

# Line 6 | Line 6
6   #
7  
8   # Change these to change the package name and version
9 < AC_INIT(libstatgrab, 0.7.1, bugs@i-scream.org)
10 < AM_INIT_AUTOMAKE(libstatgrab, 0.7.1)
9 > AC_INIT(libstatgrab, 0.8.3, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.8.3)
11  
12   # Revision number (automatically updated)
13   AC_REVISION($Revision$)
# Line 40 | Line 40 | AC_CHECK_MEMBER(struct disk_sysctl.dk_rbytes,
40                  [],
41                  [#include <sys/disk.h>])
42  
43 < # Default needing setgid to false
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
# Line 50 | Line 57 | 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.7])
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 <        LINKFLAGS="-lkstat"
68 >        AM_CONDITIONAL(SETUIDBINS, true)
69 >        LINKFLAGS="-lkstat -ldevinfo"
70          ;;
71   freebsd4.*)
72          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
# Line 81 | Line 91 | linux-gnu)
91          AC_DEFINE(LINUX, , [Building on GNU/Linux])
92          ;;
93   cygwin)
84        AC_DEFINE(LINUX, , [Building on GNU/Linux])
94          AC_DEFINE(CYGWIN, , [Building on Cygwin])
95          ;;
96   *)
# Line 152 | Line 161 | AC_ARG_ENABLE(manpages,
161   )
162  
163   # Check if the user wants to turn off setgid binaries
155 # (only really relevant on FreeBSD)
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   )

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines