Skip to content

Commit

Permalink
Fix static build on MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Aug 24, 2024
2 parents edcf39c + 84a6c50 commit 78e6f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generic/tclZlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "tclInt.h"
#ifdef HAVE_ZLIB
#include <zlib.h>
#include "zlib.h"
#include "tclIO.h"

/*
Expand Down
2 changes: 1 addition & 1 deletion win/makefile.vc
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ $(TMP_DIR)\tclUuid.h: $(ROOT)\manifest.uuid
copy $(WIN_DIR)\tclUuid.h.in+$(ROOT)\manifest.uuid $(TMP_DIR)\tclUuid.h

$(TMP_DIR)\tclEvent.obj: $(GENERICDIR)\tclEvent.c $(TMP_DIR)\tclUuid.h
$(cc32) $(pkgcflags) -I$(TMP_DIR) \
$(cc32) $(pkgcflags) -I$(COMPATDIR)\zlib -I$(TMP_DIR) \
-Fo$@ $(GENERICDIR)\tclEvent.c

$(TMP_DIR)\tclTest.obj: $(GENERICDIR)\tclTest.c $(TMP_DIR)\tclUuid.h
Expand Down

0 comments on commit 78e6f53

Please sign in to comment.