Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
58af7ef5
Kaydet (Commit)
58af7ef5
authored
Agu 25, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1545507: Exclude ctypes package in Win64 MSI file.
üst
7b3c0317
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
NEWS
Misc/NEWS
+2
-0
msi.py
Tools/msi/msi.py
+8
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
58af7ef5
...
...
@@ -36,6 +36,8 @@ Documentation
Build
-----
-
Patch
#
1545507
:
Exclude
ctypes
package
in
Win64
MSI
file
.
-
Fix
OpenSSL
debug
build
process
.
...
...
Tools/msi/msi.py
Dosyayı görüntüle @
58af7ef5
...
...
@@ -872,6 +872,12 @@ def add_files(db):
version
=
version
,
language
=
lang
)
tmpfiles
.
append
(
"msvcr71.dll"
)
# Check if _ctypes.pyd exists
have_ctypes
=
os
.
path
.
exists
(
srcdir
+
"/PCBuild/_ctypes.pyd"
)
if
not
have_ctypes
:
print
"WARNING: _ctypes.pyd not found, ctypes will not be included"
extensions
.
remove
(
"_ctypes.pyd"
)
# Add all .py files in Lib, except lib-tk, test
dirs
=
{}
pydirs
=
[(
root
,
"Lib"
)]
...
...
@@ -889,6 +895,8 @@ def add_files(db):
# data: Lib/email/test
# output: Lib/test
testsuite
.
set_current
()
elif
not
have_ctypes
and
dir
==
"ctypes"
:
continue
else
:
default_feature
.
set_current
()
lib
=
PyDirectory
(
db
,
cab
,
parent
,
dir
,
dir
,
"
%
s|
%
s"
%
(
parent
.
make_short
(
dir
),
dir
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment