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
96b3725c
Kaydet (Commit)
96b3725c
authored
Eki 03, 2004
tarafından
Andrew MacIntyre
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bring modules up to date, correct .DEF file version
üst
1b643596
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
14 deletions
+0
-14
Makefile
PC/os2emx/Makefile
+0
-10
config.c
PC/os2emx/config.c
+0
-4
python24.def
PC/os2emx/python24.def
+0
-0
No files found.
PC/os2emx/Makefile
Dosyayı görüntüle @
96b3725c
...
...
@@ -40,8 +40,6 @@ HAVE_ZLIB= no
HAVE_UFC
=
no
# Do you have the Tcl/Tk library installed?
HAVE_TCLTK
=
no
# Do you have the GNU multiprecision library installed?
HAVE_GMPZ
=
no
# Do you have the GNU readline library installed?
# NOTE: I'm using a modified version of Kai Uwe Rommel's port that
# - is compiled with multithreading enabled
...
...
@@ -251,7 +249,6 @@ DESCRIPTION.$(PGEN.EXE)= Python object-oriented programming language parser gene
DESCRIPTION.zlib$(MODULE.EXT)=
Python
Extension
DLL
for
accessing
the
InfoZip
compression
library
DESCRIPTION.crypt$(MODULE.EXT)=
Python
Extension
DLL
implementing
the
crypt$(BRO)$(BRC)
function
DESCRIPTION._tkinter$(MODULE.EXT)=
Python
Extension
DLL
for
access
to
Tcl/Tk
Environment
DESCRIPTION.mpz$(MODULE.EXT)=
Python
Extension
DLL
for
access
to
GNU
multi-precision
library
DESCRIPTION.readline$(MODULE.EXT)=
Python
Extension
DLL
for
access
to
GNU
ReadLine
library
DESCRIPTION.bsddb185$(MODULE.EXT)=
Python
Extension
DLL
for
access
to
BSD
DB
(v1.85)
library
DESCRIPTION._curses$(MODLIB.EXT)=
Python
Extension
DLL
for
access
to
ncurses
library
...
...
@@ -301,7 +298,6 @@ SRC.MODULES= $(addprefix $(TOP), \
Modules/timemodule.c
\
Modules/timingmodule.c
\
Modules/_weakref.c
\
Modules/xreadlinesmodule.c
\
Modules/xxsubtype.c
\
Modules/zipimport.c
)
SRC.PARSE1
=
$
(
addprefix
$(TOP)
,
\
...
...
@@ -422,7 +418,6 @@ EASYEXTMODULES= fpectl \
fpetest
\
parser
\
pwd
\
rotor
\
select
# Python modules to be dynamically loaded that need explicit build rules
...
...
@@ -449,9 +444,6 @@ ifeq ($(HAVE_TCLTK),yes)
CFLAGS
+=
-DHAS_DIRENT
-I
/TclTk80/include
TK_LIBS
+=
-L
/TclTk80/lib
-ltcl80
-ltk80
endif
ifeq
($(HAVE_GMPZ),yes)
HARDEXTMODULES
+=
mpz
endif
ifeq
($(HAVE_GREADLINE),yes)
HARDEXTMODULES
+=
readline
endif
...
...
@@ -635,8 +627,6 @@ dbm$(MODULE.EXT): $(OUT)dbmmodule$O $(OUT)dbm_m.def $(PYTHON.IMPLIB)
gdbm$(MODULE.EXT)
:
$(OUT)gdbmmodule$O $(OUT)gdbm_m.def $(PYTHON.IMPLIB)
$(LD)
$
(
LDFLAGS.DLL
)
-o
$@
$
(
^^
)
$
(
L^
)
$(LIBS)
-lgdbm
mpz$(MODULE.EXT)
:
$(OUT)mpzmodule$O $(OUT)mpz_m.def $(PYTHON.IMPLIB)
$(LD)
$
(
LDFLAGS.DLL
)
-o
$@
$
(
^^
)
$
(
L^
)
$(LIBS)
-lgmp
# Expat is now distributed with Python, so use the included version
$(OUT)pyexpat$O
:
../../Modules/pyexpat.c
...
...
PC/os2emx/config.c
Dosyayı görüntüle @
96b3725c
...
...
@@ -72,7 +72,6 @@ extern void initstruct();
extern
void
inittermios
();
extern
void
inittime
();
extern
void
inittiming
();
extern
void
initxreadlines
();
extern
void
initxxsubtype
();
extern
void
initzipimport
();
#if !HAVE_DYNAMIC_LOADING
...
...
@@ -86,7 +85,6 @@ extern void initfpectl();
extern
void
initfpetest
();
extern
void
initparser
();
extern
void
initpwd
();
extern
void
initrotor
();
extern
void
initunicodedata
();
extern
void
initzlib
();
#ifdef USE_SOCKET
...
...
@@ -138,7 +136,6 @@ struct _inittab _PyImport_Inittab[] = {
{
"termios"
,
inittermios
},
{
"time"
,
inittime
},
{
"timing"
,
inittiming
},
{
"xreadlines"
,
initxreadlines
},
{
"xxsubtype"
,
initxxsubtype
},
{
"zipimport"
,
initzipimport
},
#if !HAVE_DYNAMIC_LOADING
...
...
@@ -152,7 +149,6 @@ struct _inittab _PyImport_Inittab[] = {
{
"fpetest"
,
initfpetest
},
{
"parser"
,
initparser
},
{
"pwd"
,
initpwd
},
{
"rotor"
,
initrotor
},
{
"unicodedata"
,
initunicodedata
},
{
"zlib"
,
initzlib
},
#ifdef USE_SOCKET
...
...
PC/os2emx/python2
3
.def
→
PC/os2emx/python2
4
.def
Dosyayı görüntüle @
96b3725c
This diff is collapsed.
Click to expand it.
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