diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2013-04-03 20:17:01 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2013-04-03 20:17:01 (GMT) |
commit | 1983f5207e72ad1b0de09dd971cf590f9b5d9e66 (patch) | |
tree | 6909766d167011b99ee390e421db7f35904a4f29 /win | |
parent | edcf7e0eeca61fdaf3e00e8b911d4e0bdf45864b (diff) | |
download | tk-1983f5207e72ad1b0de09dd971cf590f9b5d9e66.zip tk-1983f5207e72ad1b0de09dd971cf590f9b5d9e66.tar.gz tk-1983f5207e72ad1b0de09dd971cf590f9b5d9e66.tar.bz2 |
Remove unused variable.
Remove tkStubLib.o from tk85.dll. On Windows, data cannot be exported from dll's anyway, so it's just dead code. On UNIX, it makes a difference: there it would be a potential incompatiblity to remove it.
FossilOrigin-Name: 66f47c63d885af6ad4dd82adff3109e6036c46c9
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 1 | ||||
-rw-r--r-- | win/makefile.bc | 1 | ||||
-rw-r--r-- | win/makefile.vc | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 550e6ae..2952e03 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -350,7 +350,6 @@ TK_OBJS = \ tkUtil.$(OBJEXT) \ tkVisual.$(OBJEXT) \ tkStubInit.$(OBJEXT) \ - tkStubLib.$(OBJEXT) \ tkWindow.$(OBJEXT) \ $(TTK_OBJS) diff --git a/win/makefile.bc b/win/makefile.bc index 12fd5b8..295ed23 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -225,7 +225,6 @@ TKOBJS = \ $(TMPDIR)\tkUtil.obj \ $(TMPDIR)\tkVisual.obj \ $(TMPDIR)\tkStubInit.obj \ - $(TMPDIR)\tkStubLib.obj \ $(TMPDIR)\tkWindow.obj # Maintenance hint: Please have multiple members of TKSTUBOBJS be separated diff --git a/win/makefile.vc b/win/makefile.vc index 68df470..a7b0c0a 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -360,7 +360,6 @@ TKOBJS = \ $(TMP_DIR)\tkUtil.obj \ $(TMP_DIR)\tkVisual.obj \ $(TMP_DIR)\tkStubInit.obj \ - $(TMP_DIR)\tkStubLib.obj \ $(TMP_DIR)\tkWindow.obj \ $(TTK_OBJS) \ !if !$(STATIC_BUILD) |