diff options
author | Guido van Rossum <guido@python.org> | 1992-09-08 09:05:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-09-08 09:05:33 (GMT) |
commit | aee087946dbbcda815e8d337fa0b051b814a04fc (patch) | |
tree | b3ffa5be07076015d6c8240da101d720a659c0f5 /Modules/config.c.in | |
parent | 4526f379bca5695b2144f1142f6a524d77bb7fe4 (diff) | |
download | cpython-aee087946dbbcda815e8d337fa0b051b814a04fc.zip cpython-aee087946dbbcda815e8d337fa0b051b814a04fc.tar.gz cpython-aee087946dbbcda815e8d337fa0b051b814a04fc.tar.bz2 |
Made struct a standard built-in module; added string args to {set,get}sockopt;
added gl.gversion().
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 4103075..ef1cb58 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -27,12 +27,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* These modules are normally always included, but *may* be taken out */ #define USE_GRP 1 /* Use together with pwd */ #define USE_MARSHAL 1 /* This is linked anyway */ +#define USE_MATH 1 #define USE_PWD 1 /* Use together with grp */ #define USE_POSIX 1 #define USE_SELECT 1 #define USE_SOCKET 1 +#define USE_STRUCT 1 #define USE_TIME 1 -#define USE_MATH 1 #include "PROTO.h" #include "mymalloc.h" @@ -318,7 +319,7 @@ struct { {"stdwin", initstdwin}, #endif -#ifdef USE_STRUCT +#ifdef USE_STROP {"strop", initstrop}, #endif |