summaryrefslogtreecommitdiffstats
path: root/src/Make_cyg_ming.mak
diff options
context:
space:
mode:
authorKen Takata <kentkt@csc.jp>2023-10-18 11:53:30 +0200
committerChristian Brabandt <cb@256bit.org>2023-10-18 11:53:30 +0200
commit436f39390f0a5d4c4877edcf69b469987d706f3c (patch)
tree2a4ebcfbfb28f8dd1de67f2faf1b672060967042 /src/Make_cyg_ming.mak
parenta0e1f06f04da3444e278ddf47e2ea3d5857a7dec (diff)
patch 9.0.2046: win32,python: warning that MS_WIN64 got re-definedv9.0.2046
Problem: win32,python: warning that MS_WIN64 got re-defined Solution: Do not define MS_WIN64, as it is no longer used Suppress the following warning: ``` In file included from C:/Python312-64/include/Python.h:12, from if_python3.c:79: C:/Python312-64/include/pyconfig.h:240: warning: "MS_WIN64" redefined 240 | #define MS_WIN64 | <command-line>: note: this is the location of the previous definition ``` `MS_WIN64` is not defined in `Make_mvc.mak` either. This should be able to be safely removed. closes: #13370 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Ken Takata <kentkt@csc.jp>
Diffstat (limited to 'src/Make_cyg_ming.mak')
-rw-r--r--src/Make_cyg_ming.mak3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index 98c86a6e77..2363080259 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -513,9 +513,6 @@ endif # RUBY
DEF_GUI=-DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD
DEFINES=-DWIN32 -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \
-DHAVE_PATHDEF -DFEAT_$(FEATURES) -DHAVE_STDINT_H
-ifeq ($(ARCH),x86-64)
-DEFINES+=-DMS_WIN64
-endif
#>>>>> end of choices
###########################################################################