[w3m-dev 02494]

From: Fumitoshi UKAI <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2001-11-22 03:22:12 +00:00
parent 114805e847
commit 2807a2d5e0
2 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,10 @@
2001-11-22 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 02494]
* configure (MIME_TYPES): check if mimetypes is empty
* configure (label_topline): add missing =
* configure (nextpage_topline): ditto
2001-11-22 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> 2001-11-22 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02493] * [w3m-dev 02493]

8
configure vendored
View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $Id: configure,v 1.12 2001/11/21 19:24:35 ukai Exp $ # $Id: configure,v 1.13 2001/11/22 03:22:12 ukai Exp $
# Configuration. # Configuration.
# #
@@ -470,7 +470,7 @@ fi
echo "Do you want to move cursor to top line when going to label?" echo "Do you want to move cursor to top line when going to label?"
yesno label_topline "$label_topline" n yesno label_topline "$label_topline" n
echo "label_topline $label_topline" >> config.param echo "label_topline=$label_topline" >> config.param
if [ "$label_topline" = y ]; then if [ "$label_topline" = y ]; then
def_label_topline='#define LABEL_TOPLINE' def_label_topline='#define LABEL_TOPLINE'
else else
@@ -479,7 +479,7 @@ fi
echo "Do you want to move cursor to top line when moving to next page?" echo "Do you want to move cursor to top line when moving to next page?"
yesno nextpage_topline "$nextpage_topline" n yesno nextpage_topline "$nextpage_topline" n
echo "nextpage_topline $nextpage_topline" >> config.param echo "nextpage_topline=$nextpage_topline" >> config.param
if [ "$nextpage_topline" = y ]; then if [ "$nextpage_topline" = y ]; then
def_nextpage_topline='#define NEXTPAGE_TOPLINE' def_nextpage_topline='#define NEXTPAGE_TOPLINE'
else else
@@ -1071,7 +1071,7 @@ echo "Checking machine dependency."
###### mime.types ###### mime.types
MIME_TYPES="" MIME_TYPES=""
if [ -f $mimetypes ]; then if [ -n "$mimetypes" ] && [ -f "$mimetypes" ]; then
MIME_TYPES=$mimetypes MIME_TYPES=$mimetypes
else else
for d in /etc /usr/lib /usr/local/lib /usr/local/etc $prefix/lib /usr/local/etc/apache /usr/local/lib/mosaic /usr/local/mosaic /usr/local/netscape /usr/local/lib/netscape for d in /etc /usr/lib /usr/local/lib /usr/local/etc $prefix/lib /usr/local/etc/apache /usr/local/lib/mosaic /usr/local/mosaic /usr/local/netscape /usr/local/lib/netscape