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
49be4cc8
Kaydet (Commit)
49be4cc8
authored
Şub 24, 2004
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Setup file to allow the QuickTime for 2.4 to be compiled
for MacPython 2.3 (and, hopefully, python 2.3 for windows too).
üst
59e02c11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
qtscan.py
Mac/Modules/qt/qtscan.py
+4
-0
setup.py
Mac/Modules/qt/setup.py
+13
-0
No files found.
Mac/Modules/qt/qtscan.py
Dosyayı görüntüle @
49be4cc8
...
...
@@ -9,15 +9,19 @@ from scantools import Scanner
LONG
=
"QuickTime"
SHORT
=
"qt"
HEADERFILES
=
(
# "Components.h" -- In Carbon.Cm
"Movies.h"
,
"ImageCompression.h"
,
"QuickTimeComponents.h"
,
# "ImageCodec.h" -- seems not too useful, and difficult.
# "IsochronousDataHandlers.h" -- Is this useful?
"MediaHandlers.h"
,
# "QTML.h", -- Windows only, needs separate module
# "QuickTimeStreaming.h", -- Difficult
# "QTStreamingComponents.h", -- Needs QTStreaming
"QuickTimeMusic.h"
,
# "QuickTimeVR.h", -- Not done yet
# "Sound.h", -- In Carbon.Snd
)
OBJECTS
=
(
"Movie"
,
"Track"
,
"Media"
,
"UserData"
,
"TimeBase"
,
"MovieController"
,
"IdleManager"
,
"SGOutput"
)
...
...
Mac/Modules/qt/setup.py
0 → 100755
Dosyayı görüntüle @
49be4cc8
# This is a temporary setup script to allow distribution of
# MacPython 2.4 modules for MacPython 2.3.
from
distutils.core
import
Extension
,
setup
setup
(
name
=
"QuickTime"
,
version
=
"0.2"
,
ext_modules
=
[
Extension
(
'QuickTime._Qt'
,
[
'_Qtmodule.c'
],
extra_link_args
=
[
'-framework'
,
'Carbon'
,
'-framework'
,
'QuickTime'
])
],
py_modules
=
[
'QuickTime.Qt'
,
'QuickTime.QuickTime'
],
package_dir
=
{
'QuickTime'
:
'../../../Lib/plat-mac/Carbon'
}
)
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