chromium-browser-stable-test/chromium-119-revert-don_t-redefine-ATSPI-version-macros.patch
2023-11-02 14:24:08 +00:00

30 lines
1.1 KiB
Diff

--- a/build/config/linux/atspi2/BUILD.gn 2023-11-01 18:10:05.479540300 +0000
+++ b/build/config/linux/atspi2/BUILD.gn 2023-11-02 13:21:54.143345346 +0000
@@ -17,19 +17,13 @@
"--version-as-components",
],
"value")
- major = atspi_version[0]
- minor = atspi_version[1]
- micro = atspi_version[2]
-
- # ATSPI 2.49.90 now defines these for us and it's an error for us to
- # redefine them on the compiler command line.
- # See ATSPI 927344a34cd5bf81fc64da4968241735ecb4f03b
- if (minor < 49 || (minor == 49 && micro < 90)) {
- defines = [
- "ATSPI_MAJOR_VERSION=$major",
- "ATSPI_MINOR_VERSION=$minor",
- "ATSPI_MICRO_VERSION=$micro",
- ]
- }
+ atspi_major_version = atspi_version[0]
+ atspi_minor_version = atspi_version[1]
+ atspi_micro_version = atspi_version[2]
+ defines = [
+ "ATSPI_MAJOR_VERSION=$atspi_major_version",
+ "ATSPI_MINOR_VERSION=$atspi_minor_version",
+ "ATSPI_MICRO_VERSION=$atspi_micro_version",
+ ]
}
}