]> git.ipfire.org Git - thirdparty/git.git/commitdiff
meson: fix compat sources when compiling with MSVC
authorPatrick Steinhardt <ps@pks.im>
Thu, 20 Mar 2025 10:37:46 +0000 (11:37 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 21 Mar 2025 11:11:15 +0000 (04:11 -0700)
In our compat library we have both "msvc.c" and "mingw.c". The former is
mostly a thin wrapper around the latter as it directly includes it, but
it has a couple of extra headers that aren't included in "mingw.c" and
is expected to be used with the Visual Studio compiler toolchain.

While our Makefile knows to pick up the correct file depending on
whether or not the Visual Studio toolchain is used, we don't do the same
with Meson. Fix this.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
meson.build

index efe2871c9dba1318297f92ff8b412ce485c84500..2cf9da3474b8ce393eda358342dd2c428a2dc51e 100644 (file)
@@ -1107,7 +1107,6 @@ if host_machine.system() == 'cygwin'
   ]
 elif host_machine.system() == 'windows'
   libgit_sources += [
-    'compat/mingw.c',
     'compat/winansi.c',
     'compat/win32/dirent.c',
     'compat/win32/flush.c',
@@ -1134,6 +1133,9 @@ elif host_machine.system() == 'windows'
   libgit_include_directories += 'compat/win32'
   if compiler.get_id() == 'msvc'
     libgit_include_directories += 'compat/vcbuild/include'
+    libgit_sources += 'compat/msvc.c'
+  else
+    libgit_sources += 'compat/mingw.c'
   endif
 endif