diff options
author | Guido van Rossum <guido@python.org> | 2000-04-21 21:26:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-04-21 21:26:08 (GMT) |
commit | 7053b8a42219f7829dab3ec088b1eaa1547edb07 (patch) | |
tree | 97142eb0686785334d23fdb466e5d67a07d006da /PCbuild/_tkinter.dsp | |
parent | 25826c93c4cf1fcac537e6cded5ce986c751134e (diff) | |
download | cpython-7053b8a42219f7829dab3ec088b1eaa1547edb07.zip cpython-7053b8a42219f7829dab3ec088b1eaa1547edb07.tar.gz cpython-7053b8a42219f7829dab3ec088b1eaa1547edb07.tar.bz2 |
Mark Hammond:
* Temp directory for all projects are now specific to the project
(rather than common as before). This avoids any conflicts with
debug symbols or common file names etc.
NOTE: You should manually delete your existing build directory after
applying this patch, as the MSVC "clean" command will now only clean
the new temporary directories - not the existing common temp
directory.
* Base address for all extension modules updated. PC\dllbase_nt.txt
also updated. Erroneous "libpath" directory removed for all
projects.
* winsound module moved from a builtin module to an extension
module. This was done primarily to avoid Python16.dll needing to
pull in winmm.dll. Really dumb test added for winsound - but if
nothing else it ensures the module imports.
Diffstat (limited to 'PCbuild/_tkinter.dsp')
-rw-r--r-- | PCbuild/_tkinter.dsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/PCbuild/_tkinter.dsp b/PCbuild/_tkinter.dsp index 4440739..f0bb1f5 100644 --- a/PCbuild/_tkinter.dsp +++ b/PCbuild/_tkinter.dsp @@ -40,7 +40,7 @@ CFG=_tkinter - Win32 Alpha Debug # PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "."
-# PROP Intermediate_Dir "alpha-temp-debug"
+# PROP Intermediate_Dir "alpha-temp-debug\_tkinter"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
CPP=cl.exe
@@ -72,7 +72,7 @@ LINK32=link.exe # PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "."
-# PROP Intermediate_Dir "alpha-temp-release"
+# PROP Intermediate_Dir "alpha-temp-release\_tkinter"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
CPP=cl.exe
@@ -103,7 +103,7 @@ LINK32=link.exe # PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "."
-# PROP Intermediate_Dir "x86-temp-debug"
+# PROP Intermediate_Dir "x86-temp-debug\_tkinter"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
F90=df.exe
@@ -134,7 +134,7 @@ LINK32=link.exe # PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "."
-# PROP Intermediate_Dir "x86-temp-release"
+# PROP Intermediate_Dir "x86-temp-release\_tkinter"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
F90=df.exe
|