From owner-svn-ports-all@freebsd.org Sun Dec 31 02:18:16 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDB6AE81529; Sun, 31 Dec 2017 02:18:16 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id 8A3A97AF29; Sun, 31 Dec 2017 02:18:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBV2IF6m065060; Sun, 31 Dec 2017 02:18:15 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBV2IFRD065059; Sun, 31 Dec 2017 02:18:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201712310218.vBV2IFRD065059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 31 Dec 2017 02:18:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457665 - head/devel/libunistring X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/devel/libunistring X-SVN-Commit-Revision: 457665 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: Sun, 31 Dec 2017 02:18:16 -0000 Author: jbeich Date: Sun Dec 31 02:18:15 2017 New Revision: 457665 URL: https://svnweb.freebsd.org/changeset/ports/457665 Log: devel/libunistring: temporarily skip ENOMEM check for printf configure:25883: checking whether printf survives out-of-memory conditions configure:26055: /nxb-bin/usr/bin/cc -o conftest -O2 -pipe -DLIBICONV_PLUG -fno-strict-aliasing -DLIBICONV_PLUG -D_THREAD_SAFE conftest.c >&5 configure:26058: $? = 0 ***MEMORY-ERROR***: [67280]: GSlice: failed to allocate 496 bytes (alignment: 512): Cannot allocate memory PR: 224740 Reported by: Mark Millard (via ports@ list, for armv7) Approved by: portmgr blanket Modified: head/devel/libunistring/Makefile (contents, props changed) Modified: head/devel/libunistring/Makefile ============================================================================== --- head/devel/libunistring/Makefile Sun Dec 31 01:55:24 2017 (r457664) +++ head/devel/libunistring/Makefile Sun Dec 31 02:18:15 2017 (r457665) @@ -23,4 +23,9 @@ INFO= ${PORTNAME} OPTIONS_DEFINE= DOCS CONFIGURE_ARGS= --disable-static +.ifdef QEMU_EMULATING +# XXX bug 224740: configure hangs: GSlice: failed to allocate 496 bytes (alignment: 512) +CONFIGURE_ENV+= gl_cv_func_printf_enomem=no +.endif + .include