mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 03:23:10 -04:00
This update also removes the --audio-backend command line switch in favor of an actual setting in the browser that can be changed at chrome://flags/#audio-backend Security: https://vuxml.freebsd.org/freebsd/15d398ea-4f73-11ef-8a0f-a8a1599412c6.html
17 lines
724 B
C++
17 lines
724 B
C++
--- printing/printing_features.cc.orig 2024-07-30 11:12:21 UTC
|
|
+++ printing/printing_features.cc
|
|
@@ -21,12 +21,12 @@ BASE_FEATURE(kAddPrinterViaPrintscanmgr,
|
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
|
#endif // BUILDFLAG(IS_CHROMEOS)
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD)
|
|
// Use the CUPS IPP printing backend instead of the original CUPS backend that
|
|
// calls the deprecated PPD API.
|
|
BASE_FEATURE(kCupsIppPrintingBackend,
|
|
"CupsIppPrintingBackend",
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
base::FEATURE_DISABLED_BY_DEFAULT
|
|
#else
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|