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.67 by tdb, Tue Apr 6 16:37:33 2004 UTC vs.
Revision 1.85 by tdb, Wed Jul 13 20:52:49 2005 UTC

# Line 6 | Line 6
6   #
7  
8   # Change these to change the package name and version
9 < AC_INIT(libstatgrab, 0.10, bugs@i-scream.org)
10 < AM_INIT_AUTOMAKE(libstatgrab, 0.10)
9 > AC_INIT(libstatgrab, 0.12, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.12)
11  
12   # Revision number (automatically updated)
13   AC_REVISION($Revision$)
# Line 31 | Line 31 | AC_C_CONST
31  
32   # Checks for library functions
33   AC_FUNC_MALLOC
34 < AC_FUNC_REALLOC
35 < AC_CHECK_FUNCS(atoll)
34 > AC_CHECK_FUNCS(atoll seteuid setegid setresuid setresgid)
35  
36   # Disk IO read and write statistics are only present on recent NetBSD.
37   AC_CHECK_MEMBER(struct disk_sysctl.dk_rbytes,
38 <                [AC_DEFINE(HAVE_DK_RBYTES, , [New-style NetBSD stats])],
38 >                [AC_DEFINE(HAVE_DK_RBYTES, , [New-style NetBSD disk stats])],
39                  [],
40                  [#include <sys/disk.h>])
41  
42 + # Disk IO read and write statistics are only present on recent OpenBSD.
43 + AC_CHECK_MEMBER(struct diskstats.ds_rbytes,
44 +                [AC_DEFINE(HAVE_DS_RBYTES, , [New-style OpenBSD disk stats])],
45 +                [],
46 +                [#include <sys/disk.h>])
47 +
48 + # NetBSD 2.0 uses statvfs rather than statfs
49 + AC_CHECK_MEMBER(struct statvfs.f_fstypename,
50 +                [AC_DEFINE(HAVE_STATVFS, , [NetBSD 2.0 statvfs])],
51 +                [],
52 +                [#include <sys/statvfs.h>])
53 +
54   # Check for sys/loadavg.h
55   AC_CHECK_HEADERS([sys/loadavg.h])
56  
# Line 59 | Line 70 | solaris2.[[6-7]])
70          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
71          AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7])
72          AM_CONDITIONAL(SETUIDBINS, true)
73 +        BIN_OWNER="root"
74 +        BIN_PERM="4755"
75          LINKFLAGS="-lkstat -lsocket -lnsl"
76          AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"])
77          ;;
# Line 67 | Line 80 | solaris2.*)
80          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
81          LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl"
82          ;;
83 + hpux11.11*)
84 +        AC_DEFINE(HPUX, , [Building on HP-UX 11.11])
85 +        ;;
86   freebsd4.*)
87          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
88          AC_DEFINE(FREEBSD, , [Building on FreeBSD])
89          AM_CONDITIONAL(SETGIDBINS, true)
90 +        BIN_GROUP="kmem"
91 +        BIN_PERM="2755"
92          LINKFLAGS="-lkvm -ldevstat"
93          ;;
94 < freebsd5.*)
94 > freebsd[[5-7]].*)
95          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
96          AC_DEFINE(FREEBSD, , [Building on FreeBSD])
97 <        AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
97 >        AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x - 7.x])
98          LINKFLAGS="-ldevstat"
99          ;;
100   netbsdelf1*)
# Line 96 | Line 114 | dragonfly*)
114          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
115          AC_DEFINE(DFBSD, , [Building on DragonFlyBSD])
116          AM_CONDITIONAL(SETGIDBINS, true)
117 +        BIN_GROUP="kmem"
118 +        BIN_PERM="2755"
119          LINKFLAGS="-lkvm -ldevstat"
120          ;;
121   linux-gnu)
122          AC_DEFINE(LINUX, , [Building on GNU/Linux])
123          AM_CONDITIONAL(SETUIDBINS, true)
124 +        BIN_OWNER="root"
125 +        BIN_PERM="4755"
126          ;;
127   cygwin)
128          AC_DEFINE(CYGWIN, , [Building on Cygwin])
# Line 211 | Line 233 | AC_SUBST(SAIDARCPPFLAGS)
233   # (ie. our dependencies)
234   AC_SUBST(LINKFLAGS)
235  
236 + # Ownership and permissions possibly needed for binaries
237 + AC_SUBST(BIN_OWNER)
238 + AC_SUBST(BIN_GROUP)
239 + AC_SUBST(BIN_PERM)
240 +
241   # And finish by changing these files
242 < 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])
242 > AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile docs/libstatgrab/Makefile docs/statgrab/Makefile docs/saidar/Makefile examples/Makefile libstatgrab.pc src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index src/saidar/Makefile])
243  
244   AC_OUTPUT

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines