diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2004-11-27 19:52:58 +0800 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2004-11-27 19:52:58 +0800 |
commit | 30d545a0a2b8d2b85d13007be2484a6ecf8d393a (patch) | |
tree | 61abff2e0401a3a822087125599ae7fca91acb0a /www/w3m | |
parent | 72d4ec492a2400fa65a946de04480fa3c890e3ea (diff) | |
download | freebsd-ports-gnome-30d545a0a2b8d2b85d13007be2484a6ecf8d393a.tar.gz freebsd-ports-gnome-30d545a0a2b8d2b85d13007be2484a6ecf8d393a.tar.zst freebsd-ports-gnome-30d545a0a2b8d2b85d13007be2484a6ecf8d393a.zip |
Fix compile error with JAPANESE option.
PR: ports/74439
Submitted by: SANETO Takanori <sanewo@ba2.so-net.ne.jp>
Diffstat (limited to 'www/w3m')
-rw-r--r-- | www/w3m/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/www/w3m/Makefile b/www/w3m/Makefile index 35138cf35139..8e9b70dab558 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -82,10 +82,6 @@ CONFIGURE_ARGS+= --enable-keymap=lynx .include <bsd.port.pre.mk> -.if defined(JAPANESE) -BROKEN= "Does not compile" -.endif - .if exists(${PORT_DBDIR}/boehm-gc/options) .include "${PORT_DBDIR}/boehm-gc/options" .endif @@ -102,6 +98,8 @@ CONFIGURE_ENV= DEFS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ CONFIGURE_ENV= DEFS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LIBS="${LIBS} -lpthread -lc" .endif +.else +CONFIGURE_ENV= DEFS="-I${LOCALBASE}/include" .endif pre-everything:: |