svn commit: r459020 - head/devel/bison
Antoine Brodin
antoine at FreeBSD.org
Mon Jan 15 07:35:05 UTC 2018
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
More information about the svn-ports-head
mailing list