Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jan 2018 07:35:04 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r459020 - head/devel/bison
Message-ID:  <201801150735.w0F7Z4aM013262@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Mon Jan 15 07:35:04 2018
New Revision: 459020
URL: https://svnweb.freebsd.org/changeset/ports/459020

Log:
  Skip ENOMEM check for printf when building with qemu, this makes
  configure hang
  
  PR:		224740
  Reported by:	pkg-fallout
  MFH:		2018Q1
  With hat:	portmgr

Modified:
  head/devel/bison/Makefile

Modified: head/devel/bison/Makefile
==============================================================================
--- head/devel/bison/Makefile	Mon Jan 15 07:05:53 2018	(r459019)
+++ head/devel/bison/Makefile	Mon Jan 15 07:35:04 2018	(r459020)
@@ -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?201801150735.w0F7Z4aM013262>