Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jan 2018 22:06:20 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r459006 - branches/2018Q1/devel/m4
Message-ID:  <201801142206.w0EM6Kpf075482@repo.freebsd.org>

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



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