svn commit: r459006 - branches/2018Q1/devel/m4

Antoine Brodin antoine at FreeBSD.org
Sun Jan 14 22:06:21 UTC 2018


Author: antoine
Date: Sun Jan 14 22:06:20 2018
New Revision: 459006
URL: https://svnweb.freebsd.org/changeset/ports/459006

Log:
  MFH: r459001
  
  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/m4/Makefile
Directory Properties:
  branches/2018Q1/   (props changed)

Modified: branches/2018Q1/devel/m4/Makefile
==============================================================================
--- branches/2018Q1/devel/m4/Makefile	Sun Jan 14 21:53:59 2018	(r459005)
+++ branches/2018Q1/devel/m4/Makefile	Sun Jan 14 22:06:20 2018	(r459006)
@@ -18,6 +18,10 @@ LIBSIGSEGV_DESC=Use alternative page fault handler (GN
 
 CONFIGURE_ARGS=	--program-prefix=g
 CONFIGURE_ENV=	MAKEINFO="${MAKEINFO} --no-split"
+.ifdef QEMU_EMULATING
+# XXX bug 224740: configure hangs
+CONFIGURE_ENV+=	gl_cv_func_printf_enomem=no
+.endif
 GNU_CONFIGURE=	yes
 USES=		makeinfo tar:xz
 


More information about the svn-ports-branches mailing list