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.48 by tdb, Tue Jan 6 17:02:48 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.1, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.8.1)
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 > # Default needing setgid/setuid to false
44   AM_CONDITIONAL(SETGIDBINS, false)
45 + AM_CONDITIONAL(SETUIDBINS, false)
46  
47   # Set things up for different OS's
48   # We define the name of the OS so the code can act accordingly
# Line 51 | Line 52 | solaris2.[[6-7]])
52          AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
53          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
54          AC_DEFINE(SOL7, , [Building on Solaris 2.7])
55 <        LINKFLAGS="-lkstat"
55 >        AM_CONDITIONAL(SETUIDBINS, true)
56 >        LINKFLAGS="-lkstat -ldevinfo"
57          ;;
58   solaris2.*)
59          AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
60          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
61 <        LINKFLAGS="-lkstat"
61 >        AM_CONDITIONAL(SETUIDBINS, true)
62 >        LINKFLAGS="-lkstat -ldevinfo"
63          ;;
64   freebsd4.*)
65          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
# Line 81 | Line 84 | linux-gnu)
84          AC_DEFINE(LINUX, , [Building on GNU/Linux])
85          ;;
86   cygwin)
84        AC_DEFINE(LINUX, , [Building on GNU/Linux])
87          AC_DEFINE(CYGWIN, , [Building on Cygwin])
88          ;;
89   *)
# Line 152 | Line 154 | AC_ARG_ENABLE(manpages,
154   )
155  
156   # Check if the user wants to turn off setgid binaries
155 # (only really relevant on FreeBSD)
157   AC_ARG_ENABLE(setgid-binaries,
158          [  --disable-setgid-binaries     disable binaries being setgid],
159          [
160                  if test "x$enableval" = "xno" ; then
161                          AM_CONDITIONAL(SETGIDBINS, false)
162 +                fi
163 +        ]
164 + )
165 +
166 + # Check if the user wants to turn off setuid binaries
167 + AC_ARG_ENABLE(setuid-binaries,
168 +        [  --disable-setuid-binaries     disable binaries being setuid],
169 +        [
170 +                if test "x$enableval" = "xno" ; then
171 +                        AM_CONDITIONAL(SETUIDBINS, false)
172                  fi
173          ]
174   )

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines