Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 86BB11A921F for ; Thu, 17 Mar 2022 02:37:51 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CFD7F84E99; Thu, 17 Mar 2022 02:37:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 148FD84D43 for ; Thu, 17 Mar 2022 02:37:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id KY0gW533lhxq for ; Thu, 17 Mar 2022 02:37:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4459584E8C for ; Thu, 17 Mar 2022 02:37:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3DD36FB24; Thu, 17 Mar 2022 02:37:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1647484669214200" MIME-Version: 1.0 Date: Thu, 17 Mar 2022 02:37:49 +0000 From: "Sergey A. Osokin" Subject: CVS commit: pkgsrc/www/nginx To: pkgsrc-changes@NetBSD.org Reply-To: osa@netbsd.org X-Mailer: log_accum Message-Id: <20220317023749.3DD36FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1647484669214200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: osa Date: Thu Mar 17 02:37:49 UTC 2022 Modified Files: pkgsrc/www/nginx: Makefile options.mk Log Message: www/nginx: remove needless --with-pcre-jit The --with-pcre-jit configure option helps to build PCRE library with JIT feature only, and it doesn't help when PCRE library is already built without JIT support. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.109 -r1.110 pkgsrc/www/nginx/Makefile cvs rdiff -u -r1.74 -r1.75 pkgsrc/www/nginx/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1647484669214200 Content-Disposition: inline Content-Length: 1272 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/nginx/Makefile diff -u pkgsrc/www/nginx/Makefile:1.109 pkgsrc/www/nginx/Makefile:1.110 --- pkgsrc/www/nginx/Makefile:1.109 Mon Mar 14 02:49:09 2022 +++ pkgsrc/www/nginx/Makefile Thu Mar 17 02:37:49 2022 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.109 2022/03/14 02:49:09 osa Exp $ +# $NetBSD: Makefile,v 1.110 2022/03/17 02:37:49 osa Exp $ DISTNAME= nginx-1.20.2 MAINTAINER= osa@NetBSD.org -PKGREVISION= 5 +PKGREVISION= 6 .include "../../www/nginx/Makefile.common" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/nginx/options.mk diff -u pkgsrc/www/nginx/options.mk:1.74 pkgsrc/www/nginx/options.mk:1.75 --- pkgsrc/www/nginx/options.mk:1.74 Thu Mar 10 18:40:44 2022 +++ pkgsrc/www/nginx/options.mk Thu Mar 17 02:37:49 2022 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.74 2022/03/10 18:40:44 osa Exp $ +# $NetBSD: options.mk,v 1.75 2022/03/17 02:37:49 osa Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.nginx PKG_SUPPORTED_OPTIONS= array-var auth-request cache-purge dav debug @@ -56,7 +56,6 @@ SUBST_NOOP_OK.fix-ssl= yes .if !empty(PKG_OPTIONS:Mpcre) .include "../../devel/pcre/buildlink3.mk" -CONFIGURE_ARGS+= --with-pcre-jit SUBST_CLASSES+= fix-pcre SUBST_STAGE.fix-pcre= pre-configure SUBST_FILES.fix-pcre= auto/lib/pcre/conf --_----------=_1647484669214200--