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, Sep 27, 12:28 AM
Unknown Object (File)
Fri, Sep 26, 8:06 PM
Unknown Object (File)
Fri, Sep 26, 2:24 AM
Unknown Object (File)
Thu, Sep 25, 2:31 AM
Unknown Object (File)
Thu, Sep 25, 2:31 AM
Unknown Object (File)
Thu, Sep 25, 2:30 AM
Unknown Object (File)
Thu, Sep 25, 2:30 AM
Unknown Object (File)
Thu, Sep 25, 2:29 AM
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