From cfd1054b9b539ee92524901e95d7bb5a1fe670a0 Mon Sep 17 00:00:00 2001 From: Kelvin Lee Date: Tue, 5 Sep 2023 14:37:50 +0300 Subject: [PATCH] MSVC: Don't #include . --- lib/getopt.c | 4 +++- lib/getopt.in.h | 4 +++- src/xz/private.h | 5 ++++- src/xzdec/xzdec.c | 5 ++++- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/lib/getopt.c b/lib/getopt.c index 1d14b245..f8fc003d 100644 --- a/lib/getopt.c +++ b/lib/getopt.c @@ -29,7 +29,9 @@ #include #include #include -#include +#ifndef _MSC_VER +# include +#endif #ifdef __VMS # include diff --git a/lib/getopt.in.h b/lib/getopt.in.h index ea77e3d7..c50dda00 100644 --- a/lib/getopt.in.h +++ b/lib/getopt.in.h @@ -34,7 +34,9 @@ #if defined __GETOPT_PREFIX && !defined __need_getopt # include # include -# include +# ifndef _MSC_VER +# include +# endif # undef __need_getopt # undef getopt # undef getopt_long diff --git a/src/xz/private.h b/src/xz/private.h index 8a2db9ff..57606cd6 100644 --- a/src/xz/private.h +++ b/src/xz/private.h @@ -21,7 +21,10 @@ #include #include #include -#include + +#ifndef _MSC_VER +# include +#endif #include "tuklib_gettext.h" #include "tuklib_progname.h" diff --git a/src/xzdec/xzdec.c b/src/xzdec/xzdec.c index c1bd1998..95a412f4 100644 --- a/src/xzdec/xzdec.c +++ b/src/xzdec/xzdec.c @@ -16,7 +16,10 @@ #include #include #include -#include + +#ifndef _MSC_VER +# include +#endif #include "getopt.h" #include "tuklib_progname.h"