mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
15 lines
578 B
C++
15 lines
578 B
C++
--- net/base/features.cc.orig 2024-02-21 00:20:50 UTC
|
|
+++ net/base/features.cc
|
|
@@ -500,7 +500,12 @@ BASE_FEATURE(kSpdyHeadersToHttpResponseUseBuilder,
|
|
"SpdyHeadersToHttpResponseUseBuilder",
|
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
|
|
|
+#if BUILDFLAG(IS_OPENBSD)
|
|
+// No IP_RECVTOS support
|
|
BASE_FEATURE(kReceiveEcn, "ReceiveEcn", base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+#else
|
|
+BASE_FEATURE(kReceiveEcn, "ReceiveEcn", base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+#endif
|
|
|
|
// TODO(crbug.com/634470): Remove this feature flag in January 2024 if the new
|
|
// limit sticks.
|