svn commit: r455019 - head/editors/vim

Adam Weinberger adamw at FreeBSD.org
Tue Nov 28 04:35:11 UTC 2017


Author: adamw
Date: Tue Nov 28 04:35:09 2017
New Revision: 455019
URL: https://svnweb.freebsd.org/changeset/ports/455019

Log:
  Fix WITHOUT_NLS
  
  Due to vim's configure not behaving like it says it does, the --disable-nls
  option doesn't actually disable NLS. It linked against libintl anyway.
  It turns out that to ACTUALLY disable NLS, you need to set --enable-nls to
  a nonsense value.
  
  PR:		223901
  Reported by:	Marian Cerny (whose name I'm butchering in 7-bit ASCII)

Modified:
  head/editors/vim/Makefile

Modified: head/editors/vim/Makefile
==============================================================================
--- head/editors/vim/Makefile	Tue Nov 28 03:49:19 2017	(r455018)
+++ head/editors/vim/Makefile	Tue Nov 28 04:35:09 2017	(r455019)
@@ -3,6 +3,7 @@
 
 PORTNAME=	vim
 PORTVERSION=	8.0.1342
+PORTREVISION=	1
 DISTVERSIONPREFIX=	v
 CATEGORIES=	editors
 
@@ -75,7 +76,7 @@ CSCOPE_RUN_DEPENDS=	cscope:devel/cscope
 
 EXUBERANT_CTAGS_RUN_DEPENDS=	exctags:devel/ctags
 
-NLS_ENABLE=		nls
+NLS_CONFIGURE_OFF=	--enable-nls=no
 NLS_USES=		gettext
 
 # UI


More information about the svn-ports-all mailing list