Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jan 2018 08:18:50 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r459022 - branches/2018Q1/devel/bison
Message-ID:  <201801150818.w0F8IoWh030014@repo.freebsd.org>

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



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