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.64 by tdb, Sun Apr 4 11:28:45 2004 UTC vs.
Revision 1.70 by tdb, Sun Jun 20 20:32:24 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 + # 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  
# Line 77 | Line 89 | freebsd5.*)
89          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
90          AC_DEFINE(FREEBSD, , [Building on FreeBSD])
91          AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
92 <        LINKFLAGS="-lkvm -ldevstat"
92 >        LINKFLAGS="-ldevstat"
93          ;;
94 < netbsdelf*)
94 > netbsdelf1*)
95          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
96          AC_DEFINE(NETBSD, , [Building on NetBSD])
85        LINKFLAGS="-lkvm"
97          ;;
98 + netbsdelf2*)
99 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
100 +        AC_DEFINE(NETBSD, , [Building on NetBSD])
101 +        AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x])
102 +        ;;
103   openbsd*)
104          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
105          AC_DEFINE(OPENBSD, , [Building on OpenBSD])
90        LINKFLAGS="-lkvm"
106          ;;
107   dragonfly*)
108          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
# Line 187 | Line 202 | AC_ARG_ENABLE(setuid-binaries,
202                          AM_CONDITIONAL(SETUIDBINS, false)
203                  fi
204          ]
205 + )
206 +
207 + # Check if the user would prefer not to include compatibility code
208 + AM_CONDITIONAL(DEPRECATED, true)
209 + AC_ARG_ENABLE(deprecated,
210 +        [  --disable-deprecated    disable inclusion of pre-0.10 compatibility code],
211 +        [
212 +                if test "x$enableval" = "xno" ; then
213 +                        AM_CONDITIONAL(DEPRECATED, false)
214 +                fi
215 +        ]
216   )
217  
218   # The LIBS and CPPFLAGS that saidar needs

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines