[w3m-dev 02579] Use environment variables CC, CFLAGS, LDFLAGS

From: Use environment variables CC, CFLAGS, LDFLAGS for default
This commit is contained in:
Fumitoshi UKAI
2001-11-28 12:23:40 +00:00
parent 600a6bbd4b
commit aa7ba2dc6a
2 changed files with 16 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
2001-11-28 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02579]
* configure: Use environment variables CC, CFLAGS, LDFLAGS
2001-11-28 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02574] sysconfdir

16
configure vendored
View File

@@ -1,5 +1,5 @@
#!/bin/sh
# $Id: configure,v 1.23 2001/11/27 18:29:24 ukai Exp $
# $Id: configure,v 1.24 2001/11/28 12:23:40 ukai Exp $
# Configuration.
#
@@ -769,9 +769,10 @@ readdir "$dbrowser"
brz=$_dir
echo "dbrowser='$brz'" >> config.param
if [ -z "$dcc" ] ; then
if ./which gcc >/dev/null
then
if [ -z "$dcc" ]; then
if [ -n "$CC" ]; then
dcc="$CC"
elif ./which gcc >/dev/null ; then
dcc=gcc
else
dcc=cc
@@ -782,7 +783,9 @@ Echo "(Default: $dcc) "
readanswer cc "$dcc"
echo "dcc='$cc'" >> config.param
if [ -z "$dcflags" ] ; then dcflags="-O" ; fi
if [ -z "$dcflags" ]; then
dcflags=${CFLAGS-"-O"}
fi
echo "Input your favorite C flags."
Echo "(Default: $dcflags) "
readanswer cflags "$dcflags"
@@ -1042,6 +1045,9 @@ fi
echo "Input additional LD flags other than listed above, if any:"
if [ -z "$dldflags" ]; then
dldflags=${LDFLAGS-""}
fi
if [ -n "$dldflags" ]; then
Echo "(default: $dldflags) : "
else