svn commit: r459022 - branches/2018Q1/devel/bison

Antoine Brodin antoine at FreeBSD.org
Mon Jan 15 08:18:51 UTC 2018


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


More information about the svn-ports-branches mailing list