Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Jan 2026 20:26:53 +0000
From:      Dmitry Sivachenko <demon@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d358eeae7cf5 - main - net/haproxy: support QUIC with base OpenSSL on FreeBSD 15+.
Message-ID:  <696bf08d.e931.44837fe8@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by demon:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d358eeae7cf5161dbe17a17394e8a7aff01cdd75

commit d358eeae7cf5161dbe17a17394e8a7aff01cdd75
Author:     Dmitry Sivachenko <demon@FreeBSD.org>
AuthorDate: 2026-01-17 20:15:49 +0000
Commit:     Dmitry Sivachenko <demon@FreeBSD.org>
CommitDate: 2026-01-17 20:26:44 +0000

    net/haproxy: support QUIC with base OpenSSL on FreeBSD 15+.
    
    PR:     292367
    Submitted by:   Kamigishi Rei <spambox@haruhiism.net>
---
 net/haproxy/Makefile   | 3 ++-
 net/haproxy33/Makefile | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile
index 8f629ecc112f..97ee8594c1f2 100644
--- a/net/haproxy/Makefile
+++ b/net/haproxy/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	haproxy
 DISTVERSION=	3.2.10
+PORTREVISION=	1
 CATEGORIES=	net www
 MASTER_SITES=	http://www.haproxy.org/download/3.2/src/
 
@@ -77,7 +78,7 @@ OPTIONS_DEFAULT+=	OPENSSL
 
 .include <bsd.port.pre.mk>
 
-.if ${SSL_DEFAULT:Mlibressl*} || ${SSL_DEFAULT:M*quictls}
+.if ${SSL_DEFAULT:Mlibressl*} || ${SSL_DEFAULT:M*quictls} || (${SSL_DEFAULT:Mbase} && ${OSVERSION} >= 1500000)
 OPENSSL_MAKE_ARGS+=	USE_QUIC=1
 .else
 OPENSSL_MAKE_ARGS+=	USE_QUIC=1 USE_QUIC_OPENSSL_COMPAT=1
diff --git a/net/haproxy33/Makefile b/net/haproxy33/Makefile
index 4aed39996f12..89ef202d2566 100644
--- a/net/haproxy33/Makefile
+++ b/net/haproxy33/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	haproxy
 DISTVERSION=	3.3.1
+PORTREVISION=	1
 CATEGORIES=	net www
 MASTER_SITES=	http://www.haproxy.org/download/3.3/src/
 PKGNAMESUFFIX=	33
@@ -78,7 +79,7 @@ OPTIONS_DEFAULT+=	OPENSSL
 
 .include <bsd.port.pre.mk>
 
-.if ${SSL_DEFAULT:Mlibressl*} || ${SSL_DEFAULT:M*quictls}
+.if ${SSL_DEFAULT:Mlibressl*} || ${SSL_DEFAULT:M*quictls} || (${SSL_DEFAULT:Mbase} && ${OSVERSION} >= 1500000)
 OPENSSL_MAKE_ARGS+=	USE_QUIC=1
 .else
 OPENSSL_MAKE_ARGS+=	USE_QUIC=1 USE_QUIC_OPENSSL_COMPAT=1


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?696bf08d.e931.44837fe8>