From owner-svn-ports-all@freebsd.org Sat Mar 17 09:14:10 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 484E1F5525F; Sat, 17 Mar 2018 09:14:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EB0CE7063B; Sat, 17 Mar 2018 09:14:09 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E5E5B1079A; Sat, 17 Mar 2018 09:14:09 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2H9E9dL014143; Sat, 17 Mar 2018 09:14:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2H9E9HU014141; Sat, 17 Mar 2018 09:14:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201803170914.w2H9E9HU014141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Mar 2018 09:14:09 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: databases/recutils misc/gnuls X-SVN-Commit-Revision: 464772 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Mar 2018 09:14:10 -0000 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