Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jan 2018 21:10:59 +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: r459001 - head/devel/m4
Message-ID:  <201801142110.w0ELAxUm051467@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801142110.w0ELAxUm051467>