pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1997-10-03
1997-10-03 23:39:21 by Henrik Grubbström (Grubba) <grubba@grubba.org>
77b282339f7f9da360dd02e2666907ceffee1a13 (
15
lines) (+
12
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed propagation-bug for SCO.
Rev: src/configure.in:1.127
1:
-
AC_REVISION("$Id: configure.in,v 1.
126
1997/10/03
10
:
55
:
41
grubba Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
127
1997/10/03
23
:
39
:
21
grubba Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
118:
case "$pike_cv_sys_os" in SCO*)
-
case "
$CC
" in
+
case "
$CFLAGS
" in
*-belf*) ;; *)
-
CC
="
$CC
-belf"
+
echo "Adding -belf option."
+
CFLAGS
="
$CFLAGS
-belf"
;; esac
-
+
case "$LDFLAGS" in
+
*-belf*) ;;
+
*)
+
echo "Adding -belf option."
+
LDFLAGS="$LDFLAGS -belf"
;; esac
-
+
;;
+
esac
#############################################################################