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.25 by tdb, Tue Aug 26 12:14:43 2003 UTC vs.
Revision 1.50 by tdb, Tue Feb 10 12:14:38 2004 UTC

# Line 6 | Line 6
6   #
7  
8   # Change these to change the package name and version
9 < AC_INIT(libstatgrab, 0.5.1, bugs@i-scream.org)
10 < AM_INIT_AUTOMAKE(libstatgrab, 0.5.1)
9 > AC_INIT(libstatgrab, 0.8.2, bugs@i-scream.org)
10 > AM_INIT_AUTOMAKE(libstatgrab, 0.8.2)
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 + # 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])],
40 +                [],
41 +                [#include <sys/disk.h>])
42 +
43 + # Check for loadavg.h
44 + AC_CHECK_HEADERS([sys/loadavg.h])
45 +
46 + # Default needing setgid/setuid to false
47 + AM_CONDITIONAL(SETGIDBINS, false)
48 + AM_CONDITIONAL(SETUIDBINS, false)
49 +
50   # Set things up for different OS's
51   # We define the name of the OS so the code can act accordingly
52   # We also need to add the right LDFLAGS
# Line 42 | Line 55 | solaris2.[[6-7]])
55          AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
56          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
57          AC_DEFINE(SOL7, , [Building on Solaris 2.7])
58 <        LDFLAGS="$LDFLAGS -lkstat"
58 >        AM_CONDITIONAL(SETUIDBINS, true)
59 >        LINKFLAGS="-lkstat -ldevinfo"
60          ;;
61   solaris2.*)
62          AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
63          AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
64 <        LDFLAGS="$LDFLAGS -lkstat"
64 >        AM_CONDITIONAL(SETUIDBINS, true)
65 >        LINKFLAGS="-lkstat -ldevinfo"
66          ;;
67   freebsd4.*)
68 <        AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x])
69 <        LDFLAGS="$LDFLAGS -lkvm -ldevstat"
68 >        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
69 >        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
70 >        AM_CONDITIONAL(SETGIDBINS, true)
71 >        LINKFLAGS="-lkvm -ldevstat"
72          ;;
73 + freebsd5.*)
74 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
75 +        AC_DEFINE(FREEBSD, , [Building on FreeBSD])
76 +        AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
77 +        AM_CONDITIONAL(SETGIDBINS, true)
78 +        LINKFLAGS="-lkvm -ldevstat"
79 +        ;;
80 + netbsdelf*)
81 +        AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
82 +        AC_DEFINE(NETBSD, , [Building on NetBSD])
83 +        AM_CONDITIONAL(SETGIDBINS, true)
84 +        LINKFLAGS="-lkvm"
85 +        ;;
86   linux-gnu)
87          AC_DEFINE(LINUX, , [Building on GNU/Linux])
88          ;;
89 + cygwin)
90 +        AC_DEFINE(CYGWIN, , [Building on Cygwin])
91 +        ;;
92   *)
93          AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
94          ;;
95   esac
96  
97 + # User specified curses/ncurses prefix
98 + AC_ARG_WITH([curses-prefix],
99 +        [  --with-curses-prefix=PATH     curses (or ncurses) is in PATH],
100 +        [
101 +                if test -d "$withval/lib"; then
102 +                        SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
103 +                fi
104 +                if test -d "$withval/include"; then
105 +                        SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}"
106 +                fi
107 +        ]
108 + )
109 +
110 + # Check if user wants to disable statgrab
111 + AM_CONDITIONAL(STATGRAB, true)
112 + AC_ARG_ENABLE(statgrab,
113 +        [  --disable-statgrab      disable building of statgrab],
114 +        [
115 +                if test "x$enableval" = "xno" ; then
116 +                        AM_CONDITIONAL(STATGRAB, false)
117 +                fi
118 +        ]
119 + )
120 +
121 + # Check if user wants to disable saidar
122 + AM_CONDITIONAL(SAIDAR, true)
123 + AC_ARG_ENABLE(saidar,
124 +        [  --disable-saidar        disable building of saidar],
125 +        [
126 +                if test "x$enableval" = "xno" ; then
127 +                        AM_CONDITIONAL(SAIDAR, false)
128 +                fi
129 +        ],
130 +        [
131 +                # saidar needs curses
132 +                # (if we don't find curses we disable saidar)
133 +                MP_WITH_CURSES
134 +        ]
135 + )
136 +
137 + # Check if the user would prefer not to build examples
138 + AM_CONDITIONAL(EXAMPLES, true)
139 + AC_ARG_ENABLE(examples,
140 +        [  --disable-examples      disable building of examples],
141 +        [
142 +                if test "x$enableval" = "xno" ; then
143 +                        AM_CONDITIONAL(EXAMPLES, false)
144 +                fi
145 +        ]
146 + )
147 +
148 + # Check if user wants to install manpages
149 + AM_CONDITIONAL(MANPAGES, true)
150 + AC_ARG_ENABLE(manpages,
151 +        [  --disable-manpages      disable installation of manpages],
152 +        [
153 +                if test "x$enableval" = "xno" ; then
154 +                        AM_CONDITIONAL(MANPAGES, false)
155 +                fi
156 +        ]
157 + )
158 +
159 + # Check if the user wants to turn off setgid binaries
160 + AC_ARG_ENABLE(setgid-binaries,
161 +        [  --disable-setgid-binaries     disable binaries being setgid],
162 +        [
163 +                if test "x$enableval" = "xno" ; then
164 +                        AM_CONDITIONAL(SETGIDBINS, false)
165 +                fi
166 +        ]
167 + )
168 +
169 + # Check if the user wants to turn off setuid binaries
170 + AC_ARG_ENABLE(setuid-binaries,
171 +        [  --disable-setuid-binaries     disable binaries being setuid],
172 +        [
173 +                if test "x$enableval" = "xno" ; then
174 +                        AM_CONDITIONAL(SETUIDBINS, false)
175 +                fi
176 +        ]
177 + )
178 +
179 + # The LIBS and CPPFLAGS that saidar needs
180 + AC_SUBST(SAIDARLIBS)
181 + AC_SUBST(SAIDARCPPFLAGS)
182 +
183 + # The flags needed to link to libstatgrab
184 + # (ie. our dependencies)
185 + AC_SUBST(LINKFLAGS)
186 +
187   # And finish by changing these files
188 < AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile examples/Makefile])
188 > 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])
189  
190   AC_OUTPUT

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines