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
fcbe5e55
Commit
fcbe5e55
authored
Dec 13, 2002
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Outdated.
parent
32f614b8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
117 deletions
+0
-117
Mac/mwerks/projects/README-Projectfiles
Mac/mwerks/projects/README-Projectfiles
+0
-52
Mac/mwerks/projects/build.macfreeze/frozen.prj
Mac/mwerks/projects/build.macfreeze/frozen.prj
+0
-0
Mac/mwerks/projects/build.macfreeze/frozenbundle.rsrc
Mac/mwerks/projects/build.macfreeze/frozenbundle.rsrc
+0
-0
Mac/mwerks/projects/build.macfreeze/templatefrozenconfig.c
Mac/mwerks/projects/build.macfreeze/templatefrozenconfig.c
+0
-65
No files found.
Mac/mwerks/projects/README-Projectfiles
deleted
100644 → 0
View file @
32f614b8
This directory contains the CodeWarrior 9 projects. Here is what they
are for and where to put them (well, where *I* put them, at least),
and some info on the naming convention used.
Python68K.µ
Non-shared 68K python, full complement of modules. Put in
build.mac68k.stand. Uses mwerks_nonshared_config.h.
PythonCorePPC.µ
PPC shared library with core functionality. Put in
build.macppc.shared. Uses mwerks_shared_config.h.
MWCPythonCoreRuntime.µ
A special runtime library needed for PythonCorePPC. Put in
build.macppc.shared.
PythonPPC.µ
PPC shared application. Put in build.macppc.shared.
PythonAppletPPC.µ
PPC applet template. Put in build.macppc.shared.
PythonCoreCFM68K.µ
CFM68K shared library with core functionality. Put in
build.mac68k.shared. Uses mwerks_shared_config.h.
PythonCoreCFM68K.µ.exp
Exports for for PythonCoreCFM68K. Put in build.mac68k.shared.
PythonCFM68K.µ
CFM68K shared application. Put in build.mac68k.shared.
PythonAppletCFM68K.µ
CFM68K applet template. Put in build.mac68k.shared.
PythonPPCstandalone.µ
Non-shared PPC python. If you need it, put it in build.macppc.stand.
The rest of the files are for creating dynamically loadable plugin
modules, these should be put into the PlugIns folder.
As an example, ctb.ppc.mu and ctb.ppc.mu.exp are used to build the PPC
plugin module ctb.ppc.slb.
Similarly, ctb.CFM68K.mu and ctb.CFM68K.mu.exp are used to build the
CFM68K plugin module ctb.CFM68K.slb.
The projects with "modules" in their name are somewhat special: these
build shared libraries that contain more than one module (usually
related). The MkPluginAliases.py script (from Mac/scripts) knows about
all modules that live together, and will create the necessary aliases
to make it all work.
All plugin modules use mwerks_plugin_config.h as their header file,
with the exception of the _tkinter plugins, which use
mwerks_tkplugin_config.h.
Mac/mwerks/projects/build.macfreeze/frozen.prj
deleted
100644 → 0
View file @
32f614b8
File deleted
Mac/mwerks/projects/build.macfreeze/frozenbundle.rsrc
deleted
100644 → 0
View file @
32f614b8
File deleted
Mac/mwerks/projects/build.macfreeze/templatefrozenconfig.c
deleted
100644 → 0
View file @
32f614b8
/* Generated automatically from /ufs/jack/src/python/build.irix6/tmp/lib/python1.5/config/config.c.in by makesetup. */
/* -*- C -*- ***********************************************
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI or Corporation for National Research Initiatives or
CNRI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.
While CWI is the initial source for this software, a modified version
is made available by the Corporation for National Research Initiatives
(CNRI) at the Internet address ftp://ftp.python.org.
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
/* Module configuration */
/* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */
/* This file contains the table of built-in modules.
See init_builtin() in import.c. */
#include "Python.h"
/* -- ADDMODULE MARKER 1 -- */
extern
void
PyMarshal_Init
();
extern
void
initimp
();
struct
_inittab
_PyImport_Inittab
[]
=
{
/* -- ADDMODULE MARKER 2 -- */
/* This module "lives in" with marshal.c */
{
"marshal"
,
PyMarshal_Init
},
/* This lives it with import.c */
{
"imp"
,
initimp
},
/* These entries are here for sys.builtin_module_names */
{
"__main__"
,
NULL
},
{
"__builtin__"
,
NULL
},
{
"sys"
,
NULL
},
/* Sentinel */
{
0
,
0
}
};
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