summaryrefslogtreecommitdiff
path: root/devel/subversion
diff options
context:
space:
mode:
authorAlberto Villa <avilla@FreeBSD.org>2012-08-31 08:03:59 +0000
committerAlberto Villa <avilla@FreeBSD.org>2012-08-31 08:03:59 +0000
commitaeec0862ac7dcb3389f08af0620fe66fa3a72b23 (patch)
tree4c0611bbc9d06decf00896ffd15e5d9f38e7bdf7 /devel/subversion
parent- Update to 21.0.1180.89 (diff)
- Fix build when WITHOUT_NLS and WITH_KDE_KWALLET are defined together.
PR: 170669 Submitted by: avilla (me) Approved by: lev (maintainer timeout: 2 weeks)
Notes
Notes: svn path=/head/; revision=303399
Diffstat (limited to 'devel/subversion')
-rw-r--r--devel/subversion/Makefile.common3
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/subversion/Makefile.common b/devel/subversion/Makefile.common
index 0faf813932bf..4e67b49a9606 100644
--- a/devel/subversion/Makefile.common
+++ b/devel/subversion/Makefile.common
@@ -130,7 +130,8 @@ PLIST_SUB+= SERF="@comment "
LIB_DEPENDS+= svn_client-1:${PORTSDIR}/devel/subversion
.endif
-.if !defined(WITHOUT_NLS)
+# KWallet requires NLS to be enabled.
+.if !defined(WITHOUT_NLS) || defined(WITH_KDE_KWALLET)
USE_GETTEXT= yes
PLIST_SUB+= WITHOUT_GETTEXT=""
.else