From owner-svn-ports-head@freebsd.org Wed Nov 13 14:32:09 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E38971B2508; Wed, 13 Nov 2019 14:32:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47CnBK5gFLz45xh; Wed, 13 Nov 2019 14:32:09 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D4051983A; Wed, 13 Nov 2019 14:32:09 +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 xADEW9En011351; Wed, 13 Nov 2019 14:32:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xADEW7px010915; Wed, 13 Nov 2019 14:32:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201911131432.xADEW7px010915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 13 Nov 2019 14:32:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517376 - in head: databases/recutils devel/bison devel/libunistring devel/m4 editors/nano misc/gnuls sysutils/coreutils textproc/groff X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: databases/recutils devel/bison devel/libunistring devel/m4 editors/nano misc/gnuls sysutils/coreutils textproc/groff X-SVN-Commit-Revision: 517376 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Nov 2019 14:32:10 -0000 Author: jbeich Date: Wed Nov 13 14:32:07 2019 New Revision: 517376 URL: https://svnweb.freebsd.org/changeset/ports/517376 Log: Drop workaround for qemu-user-static hang after r517350 GSlice as used by qemu-user still aborts due to low RLIMIT_VMEM in an emulated application but no longer hangs. While the behavior differs from real hardware it matches the one from before r456518 that was hardcoded as gl_cv_func_printf_enomem=no workaround. PR: 224740 Modified: head/databases/recutils/Makefile (contents, props changed) head/devel/bison/Makefile (contents, props changed) head/devel/libunistring/Makefile (contents, props changed) head/devel/m4/Makefile (contents, props changed) head/editors/nano/Makefile (contents, props changed) head/misc/gnuls/Makefile (contents, props changed) head/sysutils/coreutils/Makefile (contents, props changed) head/textproc/groff/Makefile (contents, props changed) Modified: head/databases/recutils/Makefile ============================================================================== --- head/databases/recutils/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/databases/recutils/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -14,10 +14,6 @@ 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/devel/bison/Makefile ============================================================================== --- head/devel/bison/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/devel/bison/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -23,10 +23,6 @@ USES= charsetfix localbase makeinfo perl5 tar:xz USE_PERL5= build CONFIGURE_ARGS= --disable-yacc --enable-relocatable -.ifdef QEMU_EMULATING -# XXX bug 224740: configure hangs -CONFIGURE_ENV= gl_cv_func_printf_enomem=no -.endif GNU_CONFIGURE= yes LIBS+= -lm TEST_TARGET= check Modified: head/devel/libunistring/Makefile ============================================================================== --- head/devel/libunistring/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/devel/libunistring/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -24,9 +24,4 @@ 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 Modified: head/devel/m4/Makefile ============================================================================== --- head/devel/m4/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/devel/m4/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -19,10 +19,6 @@ LIBSIGSEGV_DESC=Use alternative page fault handler (GN CONFIGURE_ARGS= --program-prefix=g CONFIGURE_ENV= MAKEINFO="${MAKEINFO} --no-split" -.ifdef QEMU_EMULATING -# XXX bug 224740: configure hangs -CONFIGURE_ENV+= gl_cv_func_printf_enomem=no -.endif GNU_CONFIGURE= yes USES= makeinfo tar:xz Modified: head/editors/nano/Makefile ============================================================================== --- head/editors/nano/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/editors/nano/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -34,11 +34,6 @@ INFO= nano PORTSCOUT= limitw:1,even -.ifdef QEMU_EMULATING -# XXX bug 224740/231346: configure hangs -CONFIGURE_ENV+= gl_cv_func_printf_enomem=no -.endif - post-patch: ${REINPLACE_CMD} -e 's/^groff.*/false/' ${WRKSRC}/configure Modified: head/misc/gnuls/Makefile ============================================================================== --- head/misc/gnuls/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/misc/gnuls/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -16,10 +16,6 @@ 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 Modified: head/sysutils/coreutils/Makefile ============================================================================== --- head/sysutils/coreutils/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/sysutils/coreutils/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -25,10 +25,6 @@ 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 INFO= coreutils Modified: head/textproc/groff/Makefile ============================================================================== --- head/textproc/groff/Makefile Wed Nov 13 14:14:17 2019 (r517375) +++ head/textproc/groff/Makefile Wed Nov 13 14:32:07 2019 (r517376) @@ -33,11 +33,6 @@ CONFIGURE_ARGS+= --with-urw-fonts-dir=${LOCALBASE}/sha CPE_VENDOR= gnu -.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 - # Canonicalize to A4 if set. .if defined(A4) || (defined(PAPERSIZE) && ${PAPERSIZE:tu} == "A4") PAPERSIZE=A4