vcpkg/ports/fontconfig/fix-preprocessor-clang-cl.patch
Alexander Neumann 55209aae66
[fontconfig] fix preprocessor for clang-cl (#26052)
* fix fontconfig for clang-cl

* v db
2022-08-01 13:39:44 -07:00

14 lines
368 B
Diff

diff --git a/src/meson.build b/src/meson.build
index 9a6ba2021..5d04f7360 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -33,7 +33,7 @@ fc_sources = [
cpp = cc.cmd_array()
if cc.get_id() == 'gcc'
cpp += ['-E', '-P']
-elif cc.get_id() == 'msvc'
+elif cc.get_argument_syntax() == 'msvc'
cpp += ['/EP']
elif cc.get_id() == 'clang'
cpp += ['-E', '-P']