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.66 by tdb, Tue Apr 6 13:40:41 2004 UTC vs.
Revision 1.69 by tdb, Sun Jun 20 17:00:25 2004 UTC

# Line 6 | Line 6
6   #
7  
8   # Change these to change the package name and version
9 < AC_INIT(libstatgrab, 0.9.1, bugs@i-scream.org)
10 < AM_INIT_AUTOMAKE(libstatgrab, 0.9.1)
9 > AC_INIT(libstatgrab, 0.10.1, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.10.1)
11  
12   # Revision number (automatically updated)
13   AC_REVISION($Revision$)
# Line 36 | Line 36 | 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])],
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   # Check for sys/loadavg.h
50   AC_CHECK_HEADERS([sys/loadavg.h])
51  
# Line 190 | Line 196 | AC_ARG_ENABLE(setuid-binaries,
196                          AM_CONDITIONAL(SETUIDBINS, false)
197                  fi
198          ]
199 + )
200 +
201 + # Check if the user would prefer not to include compatibility code
202 + AM_CONDITIONAL(DEPRECATED, true)
203 + AC_ARG_ENABLE(deprecated,
204 +        [  --disable-deprecated    disable inclusion of pre-0.10 compatibility code],
205 +        [
206 +                if test "x$enableval" = "xno" ; then
207 +                        AM_CONDITIONAL(DEPRECATED, false)
208 +                fi
209 +        ]
210   )
211  
212   # The LIBS and CPPFLAGS that saidar needs

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines