aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2006-03-08 17:16:52 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2006-03-08 17:16:52 +0000
commit47e4ef5a06c2cc2ca0285129a71a69fc8e8c97aa (patch)
tree2d387f394b5e46f6e45aa63e2c61567ac6cefa5c
parentb6247c61964f6beb543fcf71f961bdd07e7ba87a (diff)
downloadports-47e4ef5a06c2cc2ca0285129a71a69fc8e8c97aa.tar.gz
ports-47e4ef5a06c2cc2ca0285129a71a69fc8e8c97aa.zip
Fix build with utf8 support disabled.
Reported by: ml@sd2i.com on freebsd-ports@ Approved by: portmgr (marcus)
Notes
Notes: svn path=/head/; revision=157045
-rw-r--r--ftp/wzdftpd/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/ftp/wzdftpd/Makefile b/ftp/wzdftpd/Makefile
index f5a24b42023b..712bc57c03e9 100644
--- a/ftp/wzdftpd/Makefile
+++ b/ftp/wzdftpd/Makefile
@@ -47,7 +47,8 @@ MAN8= wzdftpd.8
.if defined(WITH_UTF8)
USE_ICONV= yes
-CONFIGURE_ARGS+= --enable-utf8
+.else
+CONFIGURE_ARGS+= --disable-utf8
.endif
.if defined(WITH_TCL)