pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-02-03
2003-02-03 17:25:06 by Henrik Grubbström (Grubba) <grubba@grubba.org>
4598840049b13e9c515d6d73b695664cb0289b28 (
13
lines) (+
12
/-
1
)
[
Show
|
Annotate
]
Branch:
7.4
Disable threads by default on OpenBSD/alpha <= 3.x.
Rev: src/configure.in:1.655
1:
-
AC_REVISION("$Id: configure.in,v 1.
654
2003/
01
/
21
17:
10
:
39
grubba Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
655
2003/
02
/
03
17:
25
:
06
grubba Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
1197:
with_threads=no fi ;;
+
xOpenBSD*)
+
if test "`uname -r|sed -e 's/\([[0-9]]*\).*/\1/'`" -lt 4 \
+
-a "x`uname -m`" = "xalpha"; then
+
PIKE_MSG_WARN([
+
OpenBSD/alpha <= 3.x detected, disabling threads.
+
Use --with-threads to force threads support.
+
])
+
with_threads=no
+
fi
+
;;
esac if test "x${with_threads-}" = x; then