diff options
author | Christoph Scholtes <cschol2112@gmail.com> | 2012-02-05 13:40:36 -0700 |
---|---|---|
committer | Christoph Scholtes <cschol2112@gmail.com> | 2012-02-05 13:40:36 -0700 |
commit | 7519763363bcb835f5387784bce5251ea1beb71e (patch) | |
tree | f1ea6be04df33b8d75d63ad6ac8a855acea8d9dc /nt/nmake.defs | |
parent | d452256dd8168b502a22a4af6c6409d7aebc51bd (diff) | |
download | emacs-7519763363bcb835f5387784bce5251ea1beb71e.tar.gz |
* lib/makefile.w32-in (PRAGMA_SYSTEM_HEADER): Move to platform
specific makefiles to support getopt_.h generation with MSVC.
* nt/gmake.defs (PRAGMA_SYSTEM_HEADER): Add for GCC.
* nt/nmake.defs (PRAGMA_SYSTEM_HEADER): Add, but ignore with MSVC.
Diffstat (limited to 'nt/nmake.defs')
-rw-r--r-- | nt/nmake.defs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nt/nmake.defs b/nt/nmake.defs index a143fe65fac..2cb3113ca9a 100644 --- a/nt/nmake.defs +++ b/nt/nmake.defs @@ -203,6 +203,9 @@ DEBUG_LINK = -debug D = d
!endif
+# gcc-specific pragma (ignore for MSVC)
+PRAGMA_SYSTEM_HEADER =
+
!if "$(ARCH)" == "i386"
!ifdef NOOPT
#ARCH_CFLAGS = -nologo -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
|