pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2001-09-23
2001-09-23 00:39:59 by Marcus Comstedt <marcus@mc.pp.se>
7cfebe80db3405967a1b1ff1fbd93a960e23ef64 (
10
lines) (+
8
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Recognize UNICOS, which has a strange uname -s.
Rev: src/configure.in:1.553
1:
-
AC_REVISION("$Id: configure.in,v 1.
552
2001/09/
22
12
:
14
:
13
grubba
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
553
2001/09/
23
00
:
39
:
59
marcus
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
440:
AC_CACHE_VAL(pike_cv_sys_os, [ if test "$uname_prog" != "no"; then
+
# uname on UNICOS doesn't work like other people's uname...
+
if getconf CRAY_RELEASE >/dev/null 2>&1; then
+
pike_cv_sys_os="UNICOS"
+
else
pike_cv_sys_os="`uname`"
-
+
fi
case "$pike_cv_sys_os" in SunOS)