diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2004-04-20 14:21:19 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2004-04-20 14:21:19 +0000 |
commit | 07f145666164f7340adaa39294f9dfc9440e6dae (patch) | |
tree | 3d20c2065eb7e3f317409e067312e4271d32d706 /www/w3m/Makefile.common | |
parent | 540c1939dd0b07813407b3b3a291f3d7dd387406 (diff) | |
download | pkgsrc-07f145666164f7340adaa39294f9dfc9440e6dae.tar.gz |
Fix "M17N without Unicode".
Diffstat (limited to 'www/w3m/Makefile.common')
-rw-r--r-- | www/w3m/Makefile.common | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/www/w3m/Makefile.common b/www/w3m/Makefile.common index 5d95555f4a2..ce04664b626 100644 --- a/www/w3m/Makefile.common +++ b/www/w3m/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.24 2004/04/18 12:08:42 uebayasi Exp $ +# $NetBSD: Makefile.common,v 1.25 2004/04/20 14:21:19 uebayasi Exp $ # DISTNAME= w3m-${W3M_VERS} @@ -40,7 +40,7 @@ DOCDIR= share/doc/w3m # BUILD_DEFS+= W3M_USE_M17N -#BUILD_DEFS+= W3M_USE_UNICODE +BUILD_DEFS+= W3M_USE_UNICODE BUILD_DEFS+= W3M_USE_LYNX_KEY .if ${W3M_USE_M17N} == YES @@ -49,12 +49,11 @@ CONFIGURE_ARGS+= --enable-m17n CONFIGURE_ARGS+= --disable-m17n .endif -# XXX "M17N without Unicode" is broken now. Need to be fixed. -#.if ${W3M_USE_UNICODE} == YES -#CONFIGURE_ARGS+= --enable-unicode -#.else -#CONFIGURE_ARGS+= --disable-unicode -#.endif +.if ${W3M_USE_UNICODE} == YES +CONFIGURE_ARGS+= --enable-unicode +.else +CONFIGURE_ARGS+= --disable-unicode +.endif .if ${W3M_USE_LYNX_KEY} == YES CONFIGURE_ARGS+= --enable-keymap=lynx |