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.70 by tdb, Sun Jun 20 20:32:24 2004 UTC vs.
Revision 1.71 by tdb, Mon Jun 21 21:41:45 2004 UTC

# Line 71 | Line 71 | solaris2.[[6-7]])
71          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
72          AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7])
73          AM_CONDITIONAL(SETUIDBINS, true)
74 +        BIN_OWNER="root"
75 +        BIN_PERM="4755"
76          LINKFLAGS="-lkstat -lsocket -lnsl"
77          AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"])
78          ;;
# Line 83 | Line 85 | freebsd4.*)
85          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
86          AC_DEFINE(FREEBSD, , [Building on FreeBSD])
87          AM_CONDITIONAL(SETGIDBINS, true)
88 +        BIN_GROUP="kmem"
89 +        BIN_PERM="2755"
90          LINKFLAGS="-lkvm -ldevstat"
91          ;;
92   freebsd5.*)
# Line 108 | Line 112 | dragonfly*)
112          AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
113          AC_DEFINE(DFBSD, , [Building on DragonFlyBSD])
114          AM_CONDITIONAL(SETGIDBINS, true)
115 +        BIN_GROUP="kmem"
116 +        BIN_PERM="2755"
117          LINKFLAGS="-lkvm -ldevstat"
118          ;;
119   linux-gnu)
120          AC_DEFINE(LINUX, , [Building on GNU/Linux])
121          AM_CONDITIONAL(SETUIDBINS, true)
122 +        BIN_OWNER="root"
123 +        BIN_PERM="4755"
124          ;;
125   cygwin)
126          AC_DEFINE(CYGWIN, , [Building on Cygwin])
# Line 222 | Line 230 | AC_SUBST(SAIDARCPPFLAGS)
230   # The flags needed to link to libstatgrab
231   # (ie. our dependencies)
232   AC_SUBST(LINKFLAGS)
233 +
234 + # Ownership and permissions possibly needed for binaries
235 + AC_SUBST(BIN_OWNER)
236 + AC_SUBST(BIN_GROUP)
237 + AC_SUBST(BIN_PERM)
238  
239   # And finish by changing these files
240   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])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines