mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Outdated.
This commit is contained in:
parent
32f614b895
commit
fcbe5e55f5
4 changed files with 0 additions and 117 deletions
|
@ -1,52 +0,0 @@
|
||||||
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.
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,65 +0,0 @@
|
||||||
/* 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}
|
|
||||||
};
|
|
Loading…
Add table
Add a link
Reference in a new issue