Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Nov 2017 04:35:09 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r455019 - head/editors/vim
Message-ID:  <201711280435.vAS4Z9b3062511@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711280435.vAS4Z9b3062511>