svn commit: r462408 - in head/editors: emacs emacs-devel

Joseph Mingrone jrm at FreeBSD.org
Tue Feb 20 16:17:17 UTC 2018


Author: jrm
Date: Tue Feb 20 16:17:16 2018
New Revision: 462408
URL: https://svnweb.freebsd.org/changeset/ports/462408

Log:
  editors/emacs at nox, editors/emacs-devel at nox: Fix configure error
  
  When liblockfile is installed, configure fails, but only for the @nox
  flavors.
  
  There is an emacs-devel at gnu.org mailing list thread discussing the issue.
  https://lists.gnu.org/archive/html/emacs-devel/2018-02/msg00515.html
  
  PR:		225902
  Submitted by:	Yasuhiro KIMURA <yasu at utahime.org>

Modified:
  head/editors/emacs-devel/Makefile   (contents, props changed)
  head/editors/emacs/Makefile   (contents, props changed)

Modified: head/editors/emacs-devel/Makefile
==============================================================================
--- head/editors/emacs-devel/Makefile	Tue Feb 20 16:14:32 2018	(r462407)
+++ head/editors/emacs-devel/Makefile	Tue Feb 20 16:17:16 2018	(r462408)
@@ -36,6 +36,7 @@ SUB_FILES=	sources.el
 SUB_LIST=	EMACS_VER=${EMACS_VER}
 
 CONFIGURE_ARGS=	--with-gameuser=games:games
+CONFIGURE_ENV=	ac_cv_prog_liblockfile=no
 
 PLIST_SUB=	EMACS_VER=${EMACS_VER} GNU_HOST=${CONFIGURE_TARGET}
 

Modified: head/editors/emacs/Makefile
==============================================================================
--- head/editors/emacs/Makefile	Tue Feb 20 16:14:32 2018	(r462407)
+++ head/editors/emacs/Makefile	Tue Feb 20 16:17:16 2018	(r462408)
@@ -39,6 +39,7 @@ SUB_LIST=	ARCHLIBDIR=${PREFIX}/libexec/emacs/${EMACS_V
 
 CONFIGURE_ARGS=	--localstatedir=/var \
 		--with-gameuser=games:games
+CONFIGURE_ENV=	ac_cv_prog_liblockfile=no
 
 PLIST_SUB=	EMACS_VER=${EMACS_VER} GNU_HOST=${CONFIGURE_TARGET}
 


More information about the svn-ports-head mailing list