| Summary: | [patch] devel/subversion: fix build when WITHOUT_NLS and WITH_KDE_KWALLET are defined | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Alberto Villa <avilla> | ||||
| Component: | Individual Port(s) | Assignee: | Alberto Villa <avilla> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Alberto Villa
2012-08-16 15:20:06 UTC
Responsible Changed From-To: freebsd-ports-bugs->lev Over to maintainer (via the GNATS Auto Assign Tool) Responsible Changed From-To: lev->avilla I'll take it (maintainer timeout: 2 weeks). Author: avilla Date: Fri Aug 31 08:03:59 2012 New Revision: 303399 URL: http://svn.freebsd.org/changeset/ports/303399 Log: - 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) Modified: head/devel/subversion/Makefile.common (contents, props changed) Modified: head/devel/subversion/Makefile.common ============================================================================== --- head/devel/subversion/Makefile.common Fri Aug 31 06:09:26 2012 (r303398) +++ head/devel/subversion/Makefile.common Fri Aug 31 08:03:59 2012 (r303399) @@ -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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Fix committed. |