From owner-svn-ports-head@freebsd.org Tue Feb 20 16:17:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0ACC2F10D08; Tue, 20 Feb 2018 16:17:17 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC1E07E3E3; Tue, 20 Feb 2018 16:17:16 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C6EBF3ED1; Tue, 20 Feb 2018 16:17:16 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1KGHGkW018600; Tue, 20 Feb 2018 16:17:16 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1KGHGFc018598; Tue, 20 Feb 2018 16:17:16 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201802201617.w1KGHGFc018598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 20 Feb 2018 16:17:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462408 - in head/editors: emacs emacs-devel X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: in head/editors: emacs emacs-devel X-SVN-Commit-Revision: 462408 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Feb 2018 16:17:17 -0000 Author: jrm Date: Tue Feb 20 16:17:16 2018 New Revision: 462408 URL: https://svnweb.freebsd.org/changeset/ports/462408 Log: editors/emacs@nox, editors/emacs-devel@nox: Fix configure error When liblockfile is installed, configure fails, but only for the @nox flavors. There is an emacs-devel@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 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}