Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Mar 2018 09:26: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: r464776 - branches/2018Q1/sysutils/coreutils
Message-ID:  <201803170926.w2H9QKvA019638@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Sat Mar 17 09:26:20 2018
New Revision: 464776
URL: https://svnweb.freebsd.org/changeset/ports/464776

Log:
  MFH: r464774
  
  Skip ENOMEM check for printf when building with qemu, this makes
  configure hang
  
  PR:		224740
  Reported by:	pkg-fallout

Modified:
  branches/2018Q1/sysutils/coreutils/Makefile
Directory Properties:
  branches/2018Q1/   (props changed)

Modified: branches/2018Q1/sysutils/coreutils/Makefile
==============================================================================
--- branches/2018Q1/sysutils/coreutils/Makefile	Sat Mar 17 09:26:10 2018	(r464775)
+++ branches/2018Q1/sysutils/coreutils/Makefile	Sat Mar 17 09:26:20 2018	(r464776)
@@ -21,6 +21,10 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--program-prefix=g	\
 		--program-transform-name=s/stat/nustat/
 CONFIGURE_ENV=	FORCE_UNSAFE_CONFIGURE=1
+.ifdef QEMU_EMULATING
+# XXX bug 224740: configure hangs
+CONFIGURE_ENV+=	gl_cv_func_printf_enomem=no
+.endif
 CPPFLAGS+=	-I${LOCALBASE}/include
 LIBS+=		-L${LOCALBASE}/lib
 



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