From e6cc2ac919c4d65864139092c244734683804139 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Sun, 29 Sep 2019 11:48:02 +0000 Subject: Fix build of ttkStubLib.o when using makefile.vc. (problem reported by fvogel, actually noticed on trunk but was a longstanding problem). configure/make build system was correct --- win/makefile.vc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/win/makefile.vc b/win/makefile.vc index 38ec132..c4a508b 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -560,6 +560,8 @@ $(TMP_DIR)\tkMain2.obj: $(GENERICDIR)\tkMain.c $(TMP_DIR)\tkStubLib.obj : $(GENERICDIR)\tkStubLib.c $(cc32) $(stubscflags) -Fo$@ $? +$(TMP_DIR)\ttkStubLib.obj : $(GENERICDIR)\ttkStubLib.c + $(cc32) $(stubscflags) -Fo$@ $? $(TMP_DIR)\wish.exe.manifest: $(WIN_DIR)\wish.exe.manifest.in @nmakehlp -s << $** >$@ -- cgit v0.12 From fcdb84169898da11d2f01bc438b8ce2589cde331 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Sun, 29 Sep 2019 11:51:18 +0000 Subject: .. wrong directory ... --- win/makefile.vc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/makefile.vc b/win/makefile.vc index c4a508b..91dc526 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -560,7 +560,7 @@ $(TMP_DIR)\tkMain2.obj: $(GENERICDIR)\tkMain.c $(TMP_DIR)\tkStubLib.obj : $(GENERICDIR)\tkStubLib.c $(cc32) $(stubscflags) -Fo$@ $? -$(TMP_DIR)\ttkStubLib.obj : $(GENERICDIR)\ttkStubLib.c +$(TMP_DIR)\ttkStubLib.obj : $(TTKDIR)\ttkStubLib.c $(cc32) $(stubscflags) -Fo$@ $? $(TMP_DIR)\wish.exe.manifest: $(WIN_DIR)\wish.exe.manifest.in -- cgit v0.12