<pre style='margin:0'>
Clemens Lang (neverpanic) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/b43fd96d1c1f09ae3c11c39e77218d38eba8296e">https://github.com/macports/macports-ports/commit/b43fd96d1c1f09ae3c11c39e77218d38eba8296e</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit b43fd96d1c1f09ae3c11c39e77218d38eba8296e
</span>Author: Clemens Lang <cal@macports.org>
AuthorDate: Tue May 10 12:13:30 2022 +0200

<span style='display:block; white-space:pre;color:#404040;'>    nginx: Fix build failure with the +lua variant
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The lua module doesn't support PCRE2, but nginx does. Attempting to link
</span><span style='display:block; white-space:pre;color:#404040;'>    them both doesn't seem to work very well. Use PCRE1 for both instead.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/65150
</span>---
 www/nginx/Portfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/www/nginx/Portfile b/www/nginx/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 8631ae59ecf..97a00929027 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/www/nginx/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/www/nginx/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -77,7 +77,8 @@ configure.args-append \
</span>                     --http-client-body-temp-path=${nginx_rundir}/client_body_temp \
                     --http-proxy-temp-path=${nginx_rundir}/proxy_temp \
                     --http-fastcgi-temp-path=${nginx_rundir}/fastcgi_temp \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    --http-uwsgi-temp-path=${nginx_rundir}/uwsgi_temp
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --http-uwsgi-temp-path=${nginx_rundir}/uwsgi_temp \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    --without-pcre2  # pcre2 breaks the lua module (#65150)
</span> 
 # remove --disable-dependency-tracking
 configure.universal_args-delete   --disable-dependency-tracking
</pre><pre style='margin:0'>

</pre>