Date: Sat, 17 Mar 2018 09:14:09 +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: r464772 - in head: databases/recutils misc/gnuls Message-ID: <201803170914.w2H9E9HU014141@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803170914.w2H9E9HU014141>