external/pdfium/UnpackedTarball_pdfium.mk |    1 +
 external/pdfium/msvc2017.patch.1          |   15 +++++++++++++++
 2 files changed, 16 insertions(+)

New commits:
commit 39028f9550dea6b48b1871a19d482bd66b8ad6e0
Author:     Michael Stahl <michael.st...@allotropia.de>
AuthorDate: Mon Jun 26 19:13:35 2023 +0200
Commit:     Thorsten Behrens <thorsten.behr...@allotropia.de>
CommitDate: Tue Jul 25 20:43:29 2023 +0200

    pdfium: remove MSVC version check
    
    Change-Id: Icbcaa159a317ad2701cfa3fb586d9d62c5a1690c

diff --git a/external/pdfium/UnpackedTarball_pdfium.mk 
b/external/pdfium/UnpackedTarball_pdfium.mk
index a2214f645ae8..07004e8de71d 100644
--- a/external/pdfium/UnpackedTarball_pdfium.mk
+++ b/external/pdfium/UnpackedTarball_pdfium.mk
@@ -11,6 +11,7 @@ pdfium_patches :=
 pdfium_patches += ubsan.patch
 # Fixes build on our baseline.
 pdfium_patches += build.patch.1
+pdfium_patches += msvc2017.patch.1
 # Avoids Windows 8 build dependency.
 pdfium_patches += windows7.patch.1
 pdfium_patches += c++20-comparison.patch
diff --git a/external/pdfium/msvc2017.patch.1 b/external/pdfium/msvc2017.patch.1
new file mode 100644
index 000000000000..d19279bd3ca7
--- /dev/null
+++ b/external/pdfium/msvc2017.patch.1
@@ -0,0 +1,15 @@
+--- pdfium/third_party/abseil-cpp/absl/base/policy_checks.h.orig       
2023-06-26 19:10:40.362247395 +0200
++++ pdfium/third_party/abseil-cpp/absl/base/policy_checks.h    2023-06-26 
19:10:55.204269825 +0200
+@@ -46,9 +46,9 @@
+ 
+ // We support Visual Studio 2019 (MSVC++ 16.0) and later.
+ // This minimum will go up.
+-#if defined(_MSC_VER) && _MSC_VER < 1920 && !defined(__clang__)
+-#error "This package requires Visual Studio 2019 (MSVC++ 16.0) or higher."
+-#endif
++//#if defined(_MSC_VER) && _MSC_VER < 1920 && !defined(__clang__)
++//#error "This package requires Visual Studio 2019 (MSVC++ 16.0) or higher."
++//#endif
+ 
+ // We support GCC 7 and later.
+ // This minimum will go up.

Reply via email to