w3m 0.2.3 rc3

From: Fumitoshi UKAI <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2001-12-20 04:03:24 +00:00
parent f3812c8142
commit f11a1f13d2
2 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
2001-12-20 Fumitoshi UKAI <ukai@debian.or.jp>
* w3m 0.2.3 release condidate 3
* configure (use_bundled_gclib): added
2001-12-20 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> 2001-12-20 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* w3m 0.2.3 release candidate 2 * w3m 0.2.3 release candidate 2
@@ -1326,4 +1331,4 @@
* release-0-2-1 * release-0-2-1
* import w3m-0.2.1 * import w3m-0.2.1
$Id: ChangeLog,v 1.143 2001/12/20 03:39:32 ukai Exp $ $Id: ChangeLog,v 1.144 2001/12/20 04:03:24 ukai Exp $

7
configure vendored
View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $Id: configure,v 1.39 2001/12/20 03:39:32 ukai Exp $ # $Id: configure,v 1.40 2001/12/20 04:03:24 ukai Exp $
# Configuration. # Configuration.
# #
@@ -1013,9 +1013,8 @@ EOF
echo "GC_version is $gcversion." echo "GC_version is $gcversion."
if [ $gcversion -lt $mygcversion ]; then if [ $gcversion -lt $mygcversion ]; then
echo "GC library on your system seems to be old." echo "GC library on your system seems to be old."
echo "Do you want to use GC library comes with w3m?" ask_param "Do you want to use GC library comes with w3m?" "use_bundled_gclib" y
yesno ans y y if [ "$use_bundled_gclib" = 'n' -o "$use_bundled_gclib" = 'N' ]; then
if [ "$ans" = 'n' -o "$ans" = 'N' ]; then
cflags="$cflags -I$gcinclude" cflags="$cflags -I$gcinclude"
else else
cflags="$cflags -I./gc/include" cflags="$cflags -I./gc/include"