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/unicodedata.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/unicodedata.dsp')
-rwxr-xr-x | PCbuild/unicodedata.dsp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/unicodedata.dsp b/PCbuild/unicodedata.dsp index 4c8db6c..ec969b3 100755 --- a/PCbuild/unicodedata.dsp +++ b/PCbuild/unicodedata.dsp @@ -39,7 +39,7 @@ RSC=rc.exe # PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "."
-# PROP Intermediate_Dir "x86-temp-release\winreg"
+# PROP Intermediate_Dir "x86-temp-release\unicodedata"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
F90=df.exe
@@ -54,7 +54,7 @@ BSC32=bscmake.exe # ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /out:"./unicodedata.pyd" /export:initunicodedata
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" /export:initunicodedata
# SUBTRACT LINK32 /pdb:none
!ELSEIF "$(CFG)" == "unicodedata - Win32 Debug"
@@ -82,7 +82,7 @@ BSC32=bscmake.exe # ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept /export:initunicodedata
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept /export:initunicodedata
# SUBTRACT LINK32 /pdb:none
!ENDIF
|