Skip to content

Commit

Permalink
www/nginx-devel: is able to build with OpenSSL compatibility layer now
Browse files Browse the repository at this point in the history
Here's the quote from README file.

A library that provides QUIC support is recommended to build nginx,
there are several of those available on the market:
 o) BoringSSL
 o) LibreSSL
 o) QuicTLS

Alternatively, nginx can be configured with OpenSSL compatibility
layer, which emulates BoringSSL QUIC API for OpenSSL.  This mode is
enabled by default if native QUIC support is not detected.
0-RTT is not supported in OpenSSL compatibility mode.

Bump PORTREVISION.
  • Loading branch information
osokin committed Mar 31, 2023
1 parent 9b3b685 commit 3135fc3
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions www/nginx-devel/Makefile
@@ -1,6 +1,6 @@
PORTNAME?= nginx
PORTVERSION= 1.23.4
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= https://nginx.org/download/ \
LOCAL/osa
Expand Down Expand Up @@ -230,14 +230,6 @@ CFLAGS+= -DNDEBUG
CFLAGS+= -Wno-compound-token-split-by-macro
.endif

.if ${PORT_OPTIONS:MHTTPV3} && \
(empty(PORT_OPTIONS:MHTTPV3_BORING) && \
empty(PORT_OPTIONS:MHTTPV3_LSSL) && \
empty(PORT_OPTIONS:MHTTPV3_QTLS))
IGNORE= required HTTPV3_BORING or HTTPV3_LSSL or HTTPV3_QTLS \
to be defined. Please do 'make config' again
.endif

.if empty(PORT_OPTIONS:MDYNAMIC_HC) && empty(PORT_OPTIONS:MLUA) && \
empty(PORT_OPTIONS:MMODSECURITY3) && empty(PORT_OPTIONS:MPASSENGER) && \
empty(PORT_OPTIONS:MSMALL_LIGHT)
Expand Down

0 comments on commit 3135fc3

Please sign in to comment.