From owner-svn-ports-branches@freebsd.org Mon Jan 15 08:18:51 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56A67EB8081; Mon, 15 Jan 2018 08:18:51 +0000 (UTC) (envelope-from antoine@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 315372289; Mon, 15 Jan 2018 08:18:51 +0000 (UTC) (envelope-from antoine@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 6034D645F; Mon, 15 Jan 2018 08:18:50 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0F8IoRc030015; Mon, 15 Jan 2018 08:18:50 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0F8IoWh030014; Mon, 15 Jan 2018 08:18:50 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201801150818.w0F8IoWh030014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 15 Jan 2018 08:18:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r459022 - branches/2018Q1/devel/bison X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2018Q1/devel/bison X-SVN-Commit-Revision: 459022 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jan 2018 08:18:51 -0000 Author: antoine Date: Mon Jan 15 08:18:49 2018 New Revision: 459022 URL: https://svnweb.freebsd.org/changeset/ports/459022 Log: MFH: r459020 Skip ENOMEM check for printf when building with qemu, this makes configure hang PR: 224740 Reported by: pkg-fallout With hat: portmgr Modified: branches/2018Q1/devel/bison/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/devel/bison/Makefile ============================================================================== --- branches/2018Q1/devel/bison/Makefile Mon Jan 15 07:40:42 2018 (r459021) +++ branches/2018Q1/devel/bison/Makefile Mon Jan 15 08:18:49 2018 (r459022) @@ -20,6 +20,10 @@ OPTIONS_DEFINE= DOCS EXAMPLES NLS OPTIONS_SUB= yes CONFIGURE_ARGS= --disable-yacc +.ifdef QEMU_EMULATING +# XXX bug 224740: configure hangs +CONFIGURE_ENV= gl_cv_func_printf_enomem=no +.endif GNU_CONFIGURE= yes TEST_TARGET= check USE_PERL5= build