pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1996-11-17
1996-11-17 01:57:16 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
c67b69e49c3e8c2ca754178f1634647893836a74 (
31
lines) (+
30
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
more automagic added
Rev: src/configure.in:1.15
1:
-
# $Id: configure.in,v 1.
14
1996/11/
16
05
:
17
:
08
hubbe Exp $
+
# $Id: configure.in,v 1.
15
1996/11/
17
01
:
57
:
16
hubbe Exp $
AC_INIT(interpret.c)
8:
cflags_is_set=yes fi
+
if test "x${CPPFLAGS-}" = x ; then
+
cppflags_is_set=no
+
else
+
cppflags_is_set=yes
+
fi
+
+
if test "x${LDFLAGS-}" = x ; then
+
ldflags_is_set=no
+
else
+
ldflags_is_set=yes
+
fi
+
AC_PROG_CC AC_C_CROSS
125:
fi fi
+
#
+
# If no cppflags or ldflags where given we try to guess some..
+
#
+
if test $cppflags_is_set$ldflags_is_set = nono ; then
+
for d in /usr/gnu /opt/gnu /usr/local
+
do
+
if test -d $d/lib ; then
+
LDFLAGS="${LDFLAGS} -L$d/lib"
+
fi
+
+
if test -d $d/include ; then
+
CPPFLAGS="${CPPFLAGS} -I$d/include"
+
fi
+
done
+
fi
+
############################################################################# AC_MSG_CHECKING(ansi prototype capability)