From: Vince Darley Date: Tue, 11 Mar 2003 11:48:09 +0000 (+0000) Subject: d to g debug build change X-Git-Tag: vfs-1-3~28 X-Git-Url: http://privyetmir.co.uk/gitweb.cgi?a=commitdiff_plain;h=637f5d3f7caf24df0f9652e6eff064897303d72e;p=tclvfs d to g debug build change --- diff --git a/ChangeLog b/ChangeLog index db55a3c..d016d63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-03-11 Vince Darley + + * library/pkgIndex.tcl: + * win/makefile.vc: updated for Tcl's incompatible change + from 'd' to 'g' for debug builds. + 2003-02-24 Jean-Claude Wippler * pkgIndex.tcl, pkgIndex.tcl.in: starkit rev bumped to 1.2 diff --git a/library/pkgIndex.tcl b/library/pkgIndex.tcl index 638bc62..2240318 100644 --- a/library/pkgIndex.tcl +++ b/library/pkgIndex.tcl @@ -22,7 +22,7 @@ if {$::tcl_platform(platform) eq "unix"} { set dll libvfs1.2 } } elseif {[info exists ::tcl_platform(debug)]} { - set dll vfs12d + set dll vfs12g } else { set dll vfs12 } diff --git a/win/makefile.vc b/win/makefile.vc index d7e012b..8b43bae 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -18,9 +18,11 @@ NODEBUG=1 !IF "$(NODEBUG)" == "1" DEBUGDEFINES = DBGX = +DBGXMS = !ELSE DEBUGDEFINES = -DTCL_MEM_DEBUG -DUSE_TCLALLOC=0 -DPURIFY -DBGX = d +DBGX = g +DBGXMS = d !ENDIF PROJECT = vfs$(DLL_VERSION)$(DBGX) @@ -104,11 +106,11 @@ conlflags = $(lflags) -subsystem:console -entry:mainCRTStartup guilflags = $(lflags) -subsystem:windows -entry:WinMainCRTStartup !IF "$(MACHINE)" == "PPC" -libc = libc$(DBGX).lib -libcdll = crtdll$(DBGX).lib +libc = libc$(DBGXMS).lib +libcdll = crtdll$(DBGXMS).lib !ELSE -libc = libc$(DBGX).lib oldnames.lib -libcdll = msvcrt$(DBGX).lib oldnames.lib +libc = libc$(DBGXMS).lib oldnames.lib +libcdll = msvcrt$(DBGXMS).lib oldnames.lib !ENDIF baselibs = kernel32.lib $(optlibs) advapi32.lib user32.lib