6 |
|
# |
7 |
|
|
8 |
|
# Change these to change the package name and version |
9 |
< |
AC_INIT(libstatgrab, 0.12, bugs@i-scream.org) |
10 |
< |
AM_INIT_AUTOMAKE(libstatgrab, 0.12) |
9 |
> |
AC_INIT(libstatgrab, 0.17, bugs@i-scream.org) |
10 |
> |
AM_INIT_AUTOMAKE(libstatgrab, 0.17) |
11 |
|
|
12 |
|
# Revision number (automatically updated) |
13 |
|
AC_REVISION($Revision$) |
61 |
|
AM_CONDITIONAL(SETGIDBINS, false) |
62 |
|
AM_CONDITIONAL(SETUIDBINS, false) |
63 |
|
|
64 |
+ |
# Default MINGW setting |
65 |
+ |
AM_CONDITIONAL(MINGW, false) |
66 |
+ |
|
67 |
|
# Set things up for different OS's |
68 |
|
# We define the name of the OS so the code can act accordingly |
69 |
|
# We also need to add the right LDFLAGS |
77 |
|
BIN_PERM="4755" |
78 |
|
LINKFLAGS="-lkstat -lsocket -lnsl" |
79 |
|
AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"]) |
80 |
+ |
AC_CHECK_LIB(m, fabs, [SAIDARLIBS="$SAIDARLIBS -lm"]) |
81 |
|
;; |
82 |
|
solaris2.*) |
83 |
|
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
84 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
85 |
|
LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl" |
86 |
+ |
AC_CHECK_LIB(m, fabs, [SAIDARLIBS="$SAIDARLIBS -lm"]) |
87 |
|
;; |
88 |
|
hpux11.11*) |
89 |
|
AC_DEFINE(HPUX, , [Building on HP-UX 11.11]) |
96 |
|
BIN_PERM="2755" |
97 |
|
LINKFLAGS="-lkvm -ldevstat" |
98 |
|
;; |
99 |
< |
freebsd[[5-6]].*) |
99 |
> |
freebsd[[5-8]].*) |
100 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
101 |
|
AC_DEFINE(FREEBSD, , [Building on FreeBSD]) |
102 |
< |
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x or 6.x]) |
102 |
> |
AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x - 8.x]) |
103 |
|
LINKFLAGS="-ldevstat" |
104 |
|
;; |
105 |
|
netbsdelf1*) |
106 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
107 |
|
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
108 |
|
;; |
109 |
< |
netbsdelf2*) |
109 |
> |
netbsdelf[[2-3]]*) |
110 |
|
AC_DEFINE(ALLBSD, , [Building on a BSD-derived system]) |
111 |
|
AC_DEFINE(NETBSD, , [Building on NetBSD]) |
112 |
|
AC_DEFINE(NETBSD2, , [Building on NetBSD 2.x]) |
123 |
|
BIN_PERM="2755" |
124 |
|
LINKFLAGS="-lkvm -ldevstat" |
125 |
|
;; |
126 |
< |
linux-gnu) |
126 |
> |
linux-gnu*) |
127 |
|
AC_DEFINE(LINUX, , [Building on GNU/Linux]) |
128 |
|
AM_CONDITIONAL(SETUIDBINS, true) |
129 |
|
BIN_OWNER="root" |
132 |
|
cygwin) |
133 |
|
AC_DEFINE(CYGWIN, , [Building on Cygwin]) |
134 |
|
;; |
135 |
+ |
mingw32) |
136 |
+ |
AC_DEFINE(MINGW, , [Building on MinGW]) |
137 |
+ |
AC_DEFINE(WINVER, 0x0500, [Building for Windows 2000]) |
138 |
+ |
AM_CONDITIONAL(MINGW, true) |
139 |
+ |
LINKFLAGS="-lpdh -lIphlpapi -lpsapi -lnetapi32" |
140 |
+ |
;; |
141 |
|
*) |
142 |
|
AC_MSG_ERROR([Cannot build on unknown OS: $host_os]) |
143 |
|
;; |
151 |
|
SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}" |
152 |
|
fi |
153 |
|
if test -d "$withval/include"; then |
154 |
< |
SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}" |
154 |
> |
SAIDARCPPFLAGS="-I${withval}/include ${SAIRDARCPPFLAGS}" |
155 |
|
fi |
156 |
|
] |
157 |
|
) |
183 |
|
] |
184 |
|
) |
185 |
|
|
175 |
– |
# Check if user wants to disable sgps |
176 |
– |
AM_CONDITIONAL(SGPS, true) |
177 |
– |
AC_ARG_ENABLE(sgps, |
178 |
– |
[ --disable-sgps disable building of sgps], |
179 |
– |
[ |
180 |
– |
if test "x$enableval" = "xno" ; then |
181 |
– |
AM_CONDITIONAL(SGPS, false) |
182 |
– |
fi |
183 |
– |
] |
184 |
– |
) |
185 |
– |
|
186 |
|
# Check if the user would prefer not to build examples |
187 |
|
AM_CONDITIONAL(EXAMPLES, true) |
188 |
|
AC_ARG_ENABLE(examples, |
250 |
|
AC_SUBST(BIN_PERM) |
251 |
|
|
252 |
|
# And finish by changing these files |
253 |
< |
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 src/sgps/Makefile]) |
253 |
> |
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]) |
254 |
|
|
255 |
|
AC_OUTPUT |