svn commit: r464773 - in branches/2018Q1: databases/recutils misc/gnuls

Antoine Brodin antoine at FreeBSD.org
Sat Mar 17 09:15:46 UTC 2018


Author: antoine
Date: Sat Mar 17 09:15:45 2018
New Revision: 464773
URL: https://svnweb.freebsd.org/changeset/ports/464773

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

Modified:
  branches/2018Q1/databases/recutils/Makefile
  branches/2018Q1/misc/gnuls/Makefile
Directory Properties:
  branches/2018Q1/   (props changed)

Modified: branches/2018Q1/databases/recutils/Makefile
==============================================================================
--- branches/2018Q1/databases/recutils/Makefile	Sat Mar 17 09:14:09 2018	(r464772)
+++ branches/2018Q1/databases/recutils/Makefile	Sat Mar 17 09:15:45 2018	(r464773)
@@ -14,6 +14,10 @@ LICENSE=	GPLv3
 
 USES=		charsetfix libtool makeinfo
 GNU_CONFIGURE=	yes
+.ifdef QEMU_EMULATING
+# XXX bug 224740: configure hangs
+CONFIGURE_ENV=	gl_cv_func_printf_enomem=no
+.endif
 USE_LDCONFIG=	yes
 
 INFO=		rec-mode recutils

Modified: branches/2018Q1/misc/gnuls/Makefile
==============================================================================
--- branches/2018Q1/misc/gnuls/Makefile	Sat Mar 17 09:14:09 2018	(r464772)
+++ branches/2018Q1/misc/gnuls/Makefile	Sat Mar 17 09:15:45 2018	(r464773)
@@ -17,6 +17,10 @@ NLS_USES=		gettext
 
 GNU_CONFIGURE=	yes
 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
 


More information about the svn-ports-branches mailing list