diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-31 09:49:31 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-31 09:49:31 (GMT) |
commit | 879c2a77024c6f7599ee7b438d236d2828cf5dc2 (patch) | |
tree | 1a707cc097b9f0b9c9f50896c0f4ef19dda9073d /win | |
parent | 6721f0c7f0894ce02485866498c6b1bdcebe7738 (diff) | |
download | tk-879c2a77024c6f7599ee7b438d236d2828cf5dc2.zip tk-879c2a77024c6f7599ee7b438d236d2828cf5dc2.tar.gz tk-879c2a77024c6f7599ee7b438d236d2828cf5dc2.tar.bz2 |
Fix [056f9e85dc]: debian patches
Don't define HAVE_STDINT_H in win/makefile.vc: Most (older) Visual Studio versions still don't have stdint.h, and it isn't used by Tk.
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index bec8607..3d47f55 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -419,7 +419,7 @@ TK_INCLUDES = -I"$(WIN_DIR)" -I"$(GENERICDIR)" -I"$(BITMAPDIR)" -I"$(XLIBDIR)" \ CONFIG_DEFS =-DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 \
-DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 \
- -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 \
+ -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 \
-DSUPPORT_CONFIG_EMBEDDED \
!if $(HAVE_UXTHEME_H)
-DHAVE_UXTHEME_H=1 \
|