Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 20c892d

Browse files
committed
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61104,61110-61112,61114-61115,61117,61120-61122,61126-61127,61129-61131,61134,61137-61139 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r61138 | martin.v.loewis | 2008-02-29 21:26:53 +0100 (Fr, 29 Feb 2008) | 1 line Make _hashlib depend on pythoncore. ........ r61139 | martin.v.loewis | 2008-02-29 21:54:44 +0100 (Fr, 29 Feb 2008) | 1 line Package Tcl from tcltk64 on AMD64. ........
1 parent 1561bab commit 20c892d

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

PCbuild/pcbuild.sln

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ EndProject
109109
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}"
110110
EndProject
111111
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}"
112+
ProjectSection(ProjectDependencies) = postProject
113+
{B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}
114+
{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}
115+
EndProjectSection
112116
EndProject
113117
Global
114118
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Tools/msi/msi.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,8 +1022,10 @@ def add_files(db):
10221022
sqlite_arch = "/ia64"
10231023
elif msilib.msi_type=="x64;1033":
10241024
sqlite_arch = "/amd64"
1025+
tclsuffix = "64"
10251026
else:
10261027
sqlite_arch = ""
1028+
tclsuffix = ""
10271029
lib.add_file(srcdir+"/"+sqlite_dir+sqlite_arch+"/sqlite3.dll")
10281030
if have_tcl:
10291031
if not os.path.exists("%s/%s/_tkinter.pyd" % (srcdir, PCBUILD)):
@@ -1032,7 +1034,7 @@ def add_files(db):
10321034
lib.start_component("TkDLLs", tcltk)
10331035
lib.add_file("_tkinter.pyd")
10341036
dlls.append("_tkinter.pyd")
1035-
tcldir = os.path.normpath(srcdir+"/../tcltk/bin")
1037+
tcldir = os.path.normpath(srcdir+("/../tcltk%s/bin" % tclsuffix))
10361038
for f in glob.glob1(tcldir, "*.dll"):
10371039
lib.add_file(f, src=os.path.join(tcldir, f))
10381040
# check whether there are any unknown extensions
@@ -1056,7 +1058,7 @@ def add_files(db):
10561058
lib.add_file('libpython%s%s.a' % (major, minor))
10571059
if have_tcl:
10581060
# Add Tcl/Tk
1059-
tcldirs = [(root, '../tcltk/lib', 'tcl')]
1061+
tcldirs = [(root, '../tcltk%s/lib' % tclsuffix, 'tcl')]
10601062
tcltk.set_current()
10611063
while tcldirs:
10621064
parent, phys, dir = tcldirs.pop()

0 commit comments

Comments
 (0)