mirror of
https://github.com/python/cpython.git
synced 2025-09-18 14:40:43 +00:00
Added operator.c. Moved errno.c.
Changes to PYTHONPATH so it includes VERSION
This commit is contained in:
parent
704fef2268
commit
d3c1bd3931
1 changed files with 7 additions and 6 deletions
|
@ -51,7 +51,8 @@
|
||||||
# Don't add any whitespace or comments!
|
# Don't add any whitespace or comments!
|
||||||
|
|
||||||
# Don't edit this (usually)
|
# Don't edit this (usually)
|
||||||
DESTLIB=$(prefix)/lib/python
|
DESTLIB=$(prefix)/lib/python$(VERSION)
|
||||||
|
MACHDESTLIB=$(exec_prefix)/lib/python$(VERSION)
|
||||||
|
|
||||||
# Site specific path insertions -- should begin with : if non-empty
|
# Site specific path insertions -- should begin with : if non-empty
|
||||||
SITEPATH=
|
SITEPATH=
|
||||||
|
@ -62,8 +63,8 @@ DESTPATH=:$(DESTLIB)
|
||||||
# Standard enabled (tests are always available)
|
# Standard enabled (tests are always available)
|
||||||
TESTPATH=:$(DESTLIB)/test
|
TESTPATH=:$(DESTLIB)/test
|
||||||
|
|
||||||
# Path for machine- or system-dependent modules (and shared libraries)
|
# Path components for machine- or system-dependent modules and shared libraries
|
||||||
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP)
|
MACHDEPPATH=:$(DESTLIB)/$(MACHDEP):$(MACHDESTLIB)/sharedmodules
|
||||||
|
|
||||||
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
COREPYTHONPATH=.$(SITEPATH)$(DESTPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
|
||||||
PYTHONPATH=$(COREPYTHONPATH)
|
PYTHONPATH=$(COREPYTHONPATH)
|
||||||
|
@ -76,15 +77,13 @@ PYTHONPATH=$(COREPYTHONPATH)
|
||||||
# Some modules that are normally always on:
|
# Some modules that are normally always on:
|
||||||
|
|
||||||
posix posixmodule.c # posix (UNIX) system calls
|
posix posixmodule.c # posix (UNIX) system calls
|
||||||
errno errnomodule.c # posix (UNIX) errno values
|
|
||||||
signal signalmodule.c # signal(2)
|
signal signalmodule.c # signal(2)
|
||||||
|
|
||||||
# The SGI specific GL module:
|
# The SGI specific GL module:
|
||||||
|
|
||||||
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
|
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
|
||||||
|
|
||||||
# Thread module -- works on selected systems only, e.g. SGI IRIX and
|
# Thread module -- use only if Python has thread support for your OS.
|
||||||
# on SunOS 5.x (SOLARIS) only.
|
|
||||||
# Note that you must have configured (and built!) Python with the
|
# Note that you must have configured (and built!) Python with the
|
||||||
# --with-thread option passed to the configure script for this to work:
|
# --with-thread option passed to the configure script for this to work:
|
||||||
|
|
||||||
|
@ -106,6 +105,7 @@ regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style
|
||||||
strop stropmodule.c # fast string operations implemented in C
|
strop stropmodule.c # fast string operations implemented in C
|
||||||
struct structmodule.c # binary structure packing/unpacking
|
struct structmodule.c # binary structure packing/unpacking
|
||||||
time timemodule.c # time operations and variables
|
time timemodule.c # time operations and variables
|
||||||
|
operator operator.c # operator.add() and similar goodies
|
||||||
|
|
||||||
|
|
||||||
# Modules with some UNIX dependencies -- on by default:
|
# Modules with some UNIX dependencies -- on by default:
|
||||||
|
@ -118,6 +118,7 @@ grp grpmodule.c # grp(3)
|
||||||
crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
|
crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
|
||||||
select selectmodule.c # select(2); not on ancient System V
|
select selectmodule.c # select(2); not on ancient System V
|
||||||
socket socketmodule.c # socket(2); not on ancient System V
|
socket socketmodule.c # socket(2); not on ancient System V
|
||||||
|
errno errnomodule.c # posix (UNIX) errno values
|
||||||
|
|
||||||
|
|
||||||
# Some more UNIX dependent modules -- off by default, since these
|
# Some more UNIX dependent modules -- off by default, since these
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue