pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-02-03
2003-02-03 17:25:53 by Henrik Grubbström (Grubba) <grubba@grubba.org>
e1afda849c683989801147f61278a71eb3a1c1b5 (
13
lines) (+
12
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Disable threads by default on OpenBSD/alpha <= 3.x.
Rev: src/configure.in:1.680
1:
-
AC_REVISION("$Id: configure.in,v 1.
679
2003/
01
/
27
15
:
57
:
17
mast
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
680
2003/
02
/
03
17
:
25
:
53
grubba
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
1254:
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