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$) |
77 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
78 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
79 |
|
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x]) |
80 |
< |
LINKFLAGS="-lkvm -ldevstat" |
80 |
> |
LINKFLAGS="-ldevstat" |
81 |
|
;; |
82 |
< |
netbsdelf*) |
82 |
> |
netbsdelf1*) |
83 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
84 |
|
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
85 |
– |
LINKFLAGS="-lkvm" |
85 |
|
;; |
86 |
+ |
netbsdelf2*) |
87 |
+ |
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
88 |
+ |
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
89 |
+ |
AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x]) |
90 |
+ |
;; |
91 |
|
openbsd*) |
92 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
93 |
|
AC_DEFINE(OPENBSD, , [Building on OpenBSD]) |
90 |
– |
LINKFLAGS="-lkvm" |
94 |
|
;; |
95 |
|
dragonfly*) |
96 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
190 |
|
AM_CONDITIONAL(SETUIDBINS, false) |
191 |
|
fi |
192 |
|
] |
193 |
+ |
) |
194 |
+ |
|
195 |
+ |
# Check if the user would prefer not to include compatibility code |
196 |
+ |
AM_CONDITIONAL(DEPRECATED, true) |
197 |
+ |
AC_ARG_ENABLE(deprecated, |
198 |
+ |
[ --disable-deprecated disable inclusion of pre-0.10 compatibility code], |
199 |
+ |
[ |
200 |
+ |
if test "x$enableval" = "xno" ; then |
201 |
+ |
AM_CONDITIONAL(DEPRECATED, false) |
202 |
+ |
fi |
203 |
+ |
] |
204 |
|
) |
205 |
|
|
206 |
|
# The LIBS and CPPFLAGS that saidar needs |