pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1999-05-27
1999-05-27 11:49:18 by Henrik Grubbström (Grubba) <grubba@grubba.org>
085ac6fe449c57fc1d0001c6d624d51bc0b390d9 (
20
lines) (+
9
/-
11
)
[
Show
|
Annotate
]
Branch:
7.9
Minor change in the poll(2) defaulting code.
Rev: src/configure.in:1.289
1:
-
AC_REVISION("$Id: configure.in,v 1.
288
1999/05/27
08
:
22
:
07
hubbe
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
289
1999/05/27
11
:
49
:
18
grubba
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
273:
with_poll=yes ;; AIX)
+
# poll(2) is broken on AIX 4.1 and earlier.
if test "`uname -r`" -ge 2 -a "`uname -v`" -ge 4 ; then
-
AC_MSG_WARN([Defaulting to --with-poll since the OS is AIX >= 4.2])
+
with_poll=yes
-
-
else
-
if test "`uname -v`" -gt 4 ; then
-
AC_MSG_WARN([Defaulting to --with-poll since the OS is AIX >= 4.2])
+
else if test "`uname -v`" -gt 4 ; then
with_poll=yes
-
else
-
:
-
fi
-
fi
+
else
:;
fi
+
if
test
"$with_poll"
=
"yes" ; then
+
AC_MSG_WARN([Defaulting to --with-poll since the OS AIX 4.2 or later.])
+
else :;
fi
;; esac ])