diff options
author | Eli Zaretskii <eliz@gnu.org> | 2017-05-02 09:24:25 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-05-02 09:24:25 +0300 |
commit | b7c5af2bbda9f972b659389b061ef4c09bfba796 (patch) | |
tree | a1a0a6e8ededb04e8084cb0f8106dbc49b536b5a /nt | |
parent | d36b0c2c80029880809e5a101eeb01da9fd9c219 (diff) | |
download | emacs-b7c5af2bbda9f972b659389b061ef4c09bfba796.tar.gz |
Temporary fix for the MS_Windows build
* nt/inc/ms-w32.h (WIN32_LEAN_AND_MEAN): Define to an empty value,
to be consistent with Gnulib's utimens.c. This is because utimens.c
unconditionally defines WIN32_LEAN_AND_MEAN to an empty value, so the
previous definition here conflicted with that.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/inc/ms-w32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/inc/ms-w32.h b/nt/inc/ms-w32.h index b7dee8a5872..671c9fa9d2b 100644 --- a/nt/inc/ms-w32.h +++ b/nt/inc/ms-w32.h @@ -151,7 +151,7 @@ extern char *getenv (); #endif /* Make a leaner executable. */ -#define WIN32_LEAN_AND_MEAN 1 +#define WIN32_LEAN_AND_MEAN #include <sys/types.h> |