pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1999-05-27
1999-05-27 08:22:07 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
d0be1425663f04842531f614f7d11e9b869e38c7 (
21
lines) (+
18
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
turned off poll for AIX < 4.2
Rev: src/configure.in:1.288
1:
-
AC_REVISION("$Id: configure.in,v 1.
287
1999/05/
26
07
:
07
:
04
hubbe Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
288
1999/05/
27
08
:
22:
07 hubbe Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
268:
AC_ARG_WITH(poll, [ --with-poll use poll instead of select],[],[ # Neither --with-poll nor --without-poll was specified case "$pike_cv_sys_os" in
-
Solaris|
AIX|
HP-UX|OSF1|IRIX)
+
Solaris|HP-UX|OSF1|IRIX)
AC_MSG_WARN([Defaulting to --with-poll since the OS is $pike_cv_sys_os.]) with_poll=yes ;;
-
+
AIX)
+
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])
+
with_poll=yes
+
else
+
:
+
fi
+
fi
+
;;
esac ]) AC_ARG_WITH(max-fd, [ --with-max-fd=X set how many filedescriptors can be used at once],[pike_cv_max_open_fd=$withval],[])
3008:
AC_DEFINE(USE_WAIT_THREAD) ;;
-
Windows
_NT)
+
xWindows
_NT)
;; *)