Date: Sat, 17 Mar 2018 09:25:04 +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: r464774 - head/sysutils/coreutils Message-ID: <201803170925.w2H9P4jr019358@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Sat Mar 17 09:25:03 2018 New Revision: 464774 URL: https://svnweb.freebsd.org/changeset/ports/464774 Log: Skip ENOMEM check for printf when building with qemu, this makes configure hang PR: 224740 Reported by: pkg-fallou MFH: 2018Q1 Modified: head/sysutils/coreutils/Makefile Modified: head/sysutils/coreutils/Makefile ============================================================================== --- head/sysutils/coreutils/Makefile Sat Mar 17 09:15:45 2018 (r464773) +++ head/sysutils/coreutils/Makefile Sat Mar 17 09:25:03 2018 (r464774) @@ -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?201803170925.w2H9P4jr019358>