Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
96b3725c
Commit
96b3725c
authored
Oct 03, 2004
by
Andrew MacIntyre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bring modules up to date, correct .DEF file version
parent
1b643596
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
178 additions
and
166 deletions
+178
-166
PC/os2emx/Makefile
PC/os2emx/Makefile
+0
-10
PC/os2emx/config.c
PC/os2emx/config.c
+0
-4
PC/os2emx/python24.def
PC/os2emx/python24.def
+178
-152
No files found.
PC/os2emx/Makefile
View file @
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
View file @
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
View file @
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