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.33 by tdb, Tue Oct 7 22:07:37 2003 UTC vs.
Revision 1.38 by ats, Sun Oct 19 02:03:02 2003 UTC

# Line 6 | Line 6
6   #
7  
8   # Change these to change the package name and version
9 < AC_INIT(libstatgrab, 0.6, bugs@i-scream.org)
10 < AM_INIT_AUTOMAKE(libstatgrab, 0.6)
9 > AC_INIT(libstatgrab, 0.6.1, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.6.1)
11  
12   # Revision number (automatically updated)
13   AC_REVISION($Revision$)
# Line 34 | Line 34 | AC_FUNC_MALLOC
34   AC_FUNC_REALLOC
35   AC_CHECK_FUNCS(atoll)
36  
37 + # Default needing setgid to false
38 + AM_CONDITIONAL(SETGIDBINS, false)
39 +
40   # Set things up for different OS's
41   # We define the name of the OS so the code can act accordingly
42   # We also need to add the right LDFLAGS
# Line 50 | Line 53 | solaris2.*)
53          LINKFLAGS="-lkstat"
54          ;;
55   freebsd4.*)
56 <        AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x])
56 >        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
57 >        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
58 >        AM_CONDITIONAL(SETGIDBINS, true)
59          LINKFLAGS="-lkvm -ldevstat"
60          ;;
61 + freebsd5.*)
62 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
63 +        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
64 +        AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
65 +        AM_CONDITIONAL(SETGIDBINS, true)
66 +        LINKFLAGS="-lkvm -ldevstat"
67 +        ;;
68 + netbsdelf1.*)
69 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
70 +        AC_DEFINE(NETBSD, , [Building on NetBSD])
71 +        AM_CONDITIONAL(SETGIDBINS, true)
72 +        LINKFLAGS="-lkvm"
73 +        ;;
74   linux-gnu)
75          AC_DEFINE(LINUX, , [Building on GNU/Linux])
76          ;;
# Line 123 | Line 141 | AC_ARG_ENABLE(manpages,
141          ]
142   )
143  
144 < # User specified pkgconfig dir
145 < AC_ARG_WITH([pkgconfig-dir],
146 <        [  --with-pkgconfig-dir=PATH     pkgconfig lib directory (PREFIX/lib/pkgconfig)],
147 <        [ PKGCONFIG_DIR=$withval ],
148 <        [ PKGCONFIG_DIR="\$(libdir)/pkgconfig" ]
144 > # Check if the user wants to turn off setgid binaries
145 > # (only really relevant on FreeBSD)
146 > AC_ARG_ENABLE(setgid-binaries,
147 >        [  --disable-setgid-binaries     disable binaries being setgid],
148 >        [
149 >                if test "x$enableval" = "xno" ; then
150 >                        AM_CONDITIONAL(SETGIDBINS, false)
151 >                fi
152 >        ]
153   )
132 AC_SUBST(PKGCONFIG_DIR)
154  
155   # The LIBS and CPPFLAGS that saidar needs
156   AC_SUBST(SAIDARLIBS)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines