svn commit: r459001 - head/devel/m4

Antoine Brodin antoine at FreeBSD.org
Sun Jan 14 21:11:00 UTC 2018


Author: antoine
Date: Sun Jan 14 21:10:59 2018
New Revision: 459001
URL: https://svnweb.freebsd.org/changeset/ports/459001

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/m4/Makefile

Modified: head/devel/m4/Makefile
==============================================================================
--- head/devel/m4/Makefile	Sun Jan 14 21:04:36 2018	(r459000)
+++ head/devel/m4/Makefile	Sun Jan 14 21:10:59 2018	(r459001)
@@ -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-all mailing list