svn commit: r464772 - in head: databases/recutils misc/gnuls
Antoine Brodin
antoine at FreeBSD.org
Sat Mar 17 09:14:10 UTC 2018
Author: antoine
Date: Sat Mar 17 09:14:09 2018
New Revision: 464772
URL: https://svnweb.freebsd.org/changeset/ports/464772
Log:
Skip ENOMEM check for printf when building with qemu, this makes
configure hang
PR: 224740
Reported by: pkg-fallout
MFH: 2018Q1
Modified:
head/databases/recutils/Makefile
head/misc/gnuls/Makefile
Modified: head/databases/recutils/Makefile
==============================================================================
--- head/databases/recutils/Makefile Sat Mar 17 09:12:32 2018 (r464771)
+++ head/databases/recutils/Makefile Sat Mar 17 09:14:09 2018 (r464772)
@@ -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: head/misc/gnuls/Makefile
==============================================================================
--- head/misc/gnuls/Makefile Sat Mar 17 09:12:32 2018 (r464771)
+++ head/misc/gnuls/Makefile Sat Mar 17 09:14:09 2018 (r464772)
@@ -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-all
mailing list