From owner-svn-ports-all@freebsd.org Mon Nov 26 06:45:00 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 81294114F2D7; Mon, 26 Nov 2018 06:45:00 +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.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 2698C89804; Mon, 26 Nov 2018 06:45:00 +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 070DA229; Mon, 26 Nov 2018 06:45:00 +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 wAQ6ixnv080181; Mon, 26 Nov 2018 06:44:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAQ6iwWB080176; Mon, 26 Nov 2018 06:44:58 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201811260644.wAQ6iwWB080176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 26 Nov 2018 06:44:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485923 - in head: mail/thunderbird/files www/firefox-esr/files www/firefox/files www/palemoon/files www/seamonkey/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: mail/thunderbird/files www/firefox-esr/files www/firefox/files www/palemoon/files www/seamonkey/files X-SVN-Commit-Revision: 485923 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2698C89804 X-Spamd-Result: default: False [1.81 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_SHORT(0.49)[0.489,0]; NEURAL_SPAM_MEDIUM(0.66)[0.657,0]; NEURAL_SPAM_LONG(0.66)[0.661,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 26 Nov 2018 06:45:00 -0000 Author: jbeich Date: Mon Nov 26 06:44:58 2018 New Revision: 485923 URL: https://svnweb.freebsd.org/changeset/ports/485923 Log: gecko: unbreak with more strict regex(3) on FreeBSD 13 In file included from ../.build/dom/workers/Unified_cpp_dom_workers0.cpp:11: dom/workers/ChromeWorkerScope.cpp:56:10: error: use of undeclared identifier 'JS_InitCTypesClass' if (!JS_InitCTypesClass(aCx, aGlobal) || ^ dom/workers/ChromeWorkerScope.cpp:61:18: error: unknown type name 'JSCTypesCallbacks' static const JSCTypesCallbacks callbacks = { ^ PR: 233453 Reported by: kevans Added: head/mail/thunderbird/files/patch-bug1509757 (contents, props changed) head/www/firefox-esr/files/patch-bug1509757 (contents, props changed) head/www/firefox/files/patch-bug1509757 (contents, props changed) head/www/palemoon/files/patch-bug1509757 (contents, props changed) head/www/seamonkey/files/patch-bug1509757 (contents, props changed) Added: head/mail/thunderbird/files/patch-bug1509757 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug1509757 Mon Nov 26 06:44:58 2018 (r485923) @@ -0,0 +1,20 @@ +Don't rely on GNU regex extension for character classes. + +$ echo --with-system-nspr --with-system-nss | gsed -e 's/--with-system-nspr\S* *//' +--with-system-nss +$ echo --with-system-nspr --with-system-nss | sed -e 's/--with-system-nspr\S* *//' +sed: 1: "s/--with-system-nspr\S* ...": RE error: trailing backslash (\) + +diff --git old-configure.in old-configure.in +index 7722587fadac..acf5d8d67a60 100644 +--- old-configure.in ++++ old-configure.in +@@ -4405,7 +4405,7 @@ ac_configure_args="$_SUBDIR_CONFIG_ARGS" + + # --with-system-nspr will have been converted into the relevant $NSPR_CFLAGS + # and $NSPR_LIBS. +-ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr\S* *//'`" ++ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr[[^[:space:]]]* *//'`" + + if test "$_INTL_API" = no; then + ac_configure_args="$ac_configure_args --without-intl-api" Added: head/www/firefox-esr/files/patch-bug1509757 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox-esr/files/patch-bug1509757 Mon Nov 26 06:44:58 2018 (r485923) @@ -0,0 +1,20 @@ +Don't rely on GNU regex extension for character classes. + +$ echo --with-system-nspr --with-system-nss | gsed -e 's/--with-system-nspr\S* *//' +--with-system-nss +$ echo --with-system-nspr --with-system-nss | sed -e 's/--with-system-nspr\S* *//' +sed: 1: "s/--with-system-nspr\S* ...": RE error: trailing backslash (\) + +diff --git old-configure.in old-configure.in +index 7722587fadac..acf5d8d67a60 100644 +--- old-configure.in ++++ old-configure.in +@@ -4405,7 +4405,7 @@ ac_configure_args="$_SUBDIR_CONFIG_ARGS" + + # --with-system-nspr will have been converted into the relevant $NSPR_CFLAGS + # and $NSPR_LIBS. +-ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr\S* *//'`" ++ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr[[^[:space:]]]* *//'`" + + if test "$_INTL_API" = no; then + ac_configure_args="$ac_configure_args --without-intl-api" Added: head/www/firefox/files/patch-bug1509757 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-bug1509757 Mon Nov 26 06:44:58 2018 (r485923) @@ -0,0 +1,20 @@ +Don't rely on GNU regex extension for character classes. + +$ echo --with-system-nspr --with-system-nss | gsed -e 's/--with-system-nspr\S* *//' +--with-system-nss +$ echo --with-system-nspr --with-system-nss | sed -e 's/--with-system-nspr\S* *//' +sed: 1: "s/--with-system-nspr\S* ...": RE error: trailing backslash (\) + +diff --git old-configure.in old-configure.in +index 7722587fadac..acf5d8d67a60 100644 +--- old-configure.in ++++ old-configure.in +@@ -4405,7 +4405,7 @@ ac_configure_args="$_SUBDIR_CONFIG_ARGS" + + # --with-system-nspr will have been converted into the relevant $NSPR_CFLAGS + # and $NSPR_LIBS. +-ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr\S* *//'`" ++ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr[[^[:space:]]]* *//'`" + + if test "$_INTL_API" = no; then + ac_configure_args="$ac_configure_args --without-intl-api" Added: head/www/palemoon/files/patch-bug1509757 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/palemoon/files/patch-bug1509757 Mon Nov 26 06:44:58 2018 (r485923) @@ -0,0 +1,20 @@ +Don't rely on GNU regex extension for character classes. + +$ echo --with-system-nspr --with-system-nss | gsed -e 's/--with-system-nspr\S* *//' +--with-system-nss +$ echo --with-system-nspr --with-system-nss | sed -e 's/--with-system-nspr\S* *//' +sed: 1: "s/--with-system-nspr\S* ...": RE error: trailing backslash (\) + +diff --git old-configure.in old-configure.in +index 7722587fadac..acf5d8d67a60 100644 +--- configure.in ++++ configure.in +@@ -4405,7 +4405,7 @@ ac_configure_args="$_SUBDIR_CONFIG_ARGS" + + # --with-system-nspr will have been converted into the relevant $NSPR_CFLAGS + # and $NSPR_LIBS. +-ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr\S* *//'`" ++ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr[[^[:space:]]]* *//'`" + + if test "$_INTL_API" = no; then + ac_configure_args="$ac_configure_args --without-intl-api" Added: head/www/seamonkey/files/patch-bug1509757 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/seamonkey/files/patch-bug1509757 Mon Nov 26 06:44:58 2018 (r485923) @@ -0,0 +1,20 @@ +Don't rely on GNU regex extension for character classes. + +$ echo --with-system-nspr --with-system-nss | gsed -e 's/--with-system-nspr\S* *//' +--with-system-nss +$ echo --with-system-nspr --with-system-nss | sed -e 's/--with-system-nspr\S* *//' +sed: 1: "s/--with-system-nspr\S* ...": RE error: trailing backslash (\) + +diff --git old-configure.in old-configure.in +index 7722587fadac..acf5d8d67a60 100644 +--- mozilla/old-configure.in ++++ mozilla/old-configure.in +@@ -4405,7 +4405,7 @@ ac_configure_args="$_SUBDIR_CONFIG_ARGS" + + # --with-system-nspr will have been converted into the relevant $NSPR_CFLAGS + # and $NSPR_LIBS. +-ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr\S* *//'`" ++ac_configure_args="`echo $ac_configure_args | sed -e 's/--with-system-nspr[[^[:space:]]]* *//'`" + + if test "$_INTL_API" = no; then + ac_configure_args="$ac_configure_args --without-intl-api"