pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1999-08-28
1999-08-28 04:05:45 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
362ba4d8518c8e964bafe23991a728742da5291d (
15
lines) (+
11
/-
4
)
[
Show
|
Annotate
]
Branch:
7.9
fix for HP-UX (I hope)
Rev: src/configure.in:1.316
1:
-
AC_REVISION("$Id: configure.in,v 1.
315
1999/08/28
02
:
47
:
01
hubbe Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
316
1999/08/28
04
:
05
:
45
hubbe Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
735:
[ OLD_CC="${CC-cc}" OLD_CFLAGS="$CFLAGS"
-
if
test
"$CC"
=
"$BINDIR
/
smartlink
cc
"
-a
-x /usr/bin/cc
; then
+
case
"
/
$CC"
in
+
*
/
smartlink\
cc
)
+
if test
-x /usr/bin/cc; then
CC="$SMARTLINK /usr/bin/cc"
-
+
else
+
: ;
fi
-
+
;;
+
esac
CFLAGS="-Ae +Olibcalls $CFLAGS" AC_TRY_COMPILE([int foo(int bar);],[],[],[ CC="$OLD_CC"