Page MenuHomeFreeBSD

Mk/bsd.options.desc.mk: Use proper name for HTTP/2
ClosedPublic

Authored by michaelo on Feb 23 2025, 5:56 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Jun 20, 12:16 AM
Unknown Object (File)
Thu, Jun 11, 3:50 PM
Unknown Object (File)
Wed, Jun 3, 1:13 AM
Unknown Object (File)
Sun, May 31, 1:37 PM
Unknown Object (File)
May 19 2026, 2:46 PM
Unknown Object (File)
May 9 2026, 5:23 PM
Unknown Object (File)
May 9 2026, 4:53 PM
Unknown Object (File)
May 9 2026, 2:23 PM
Subscribers
None

Details

Summary

The protocol is officially called HTTP/2 in RFC 9113, old drafts used 2.0 which
were obsoleted.

Approved by: jrm (mentor), otis (mentor), ...

Diff Detail

Repository
R11 FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

michaelo created this revision.

There are a few other instances of HTTP/2.0 in the tree.

% rg -F 'HTTP/2.0'
Mk/bsd.options.desc.mk
165:HPACK_DESC?=                Header Compression for HTTP/2.0 support

www/wget2/Makefile
68:NGHTTP2_DESC=                Support HTTP/2.0 through libnghttp2

www/libnghttp2/Makefile
8:COMMENT=      HTTP/2.0 C Library

www/nghttp2/Makefile
7:COMMENT=      HTTP/2.0 C Library

www/linux-rl9-libnghttp2/Makefile
8:COMMENT=      HTTP/2.0 C Library (Rocky Linux ${LINUX_DIST_VER})
In D49114#1119986, @jrm wrote:

There are a few other instances of HTTP/2.0 in the tree.

% rg -F 'HTTP/2.0'
Mk/bsd.options.desc.mk
165:HPACK_DESC?=                Header Compression for HTTP/2.0 support

www/wget2/Makefile
68:NGHTTP2_DESC=                Support HTTP/2.0 through libnghttp2

www/libnghttp2/Makefile
8:COMMENT=      HTTP/2.0 C Library

www/nghttp2/Makefile
7:COMMENT=      HTTP/2.0 C Library

www/linux-rl9-libnghttp2/Makefile
8:COMMENT=      HTTP/2.0 C Library (Rocky Linux ${LINUX_DIST_VER})

Good catch, but I will handle nghttp2 and its consumers separately because it requires some analysis. Apparently both curl and wget us libnghttp2, but the descriptions do not consistently crom the Mk/.

This revision is now accepted and ready to land.Mar 4 2025, 7:07 PM