summaryrefslogtreecommitdiffstats
path: root/Modules/config.c.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-09-08 09:05:33 (GMT)
committerGuido van Rossum <guido@python.org>1992-09-08 09:05:33 (GMT)
commitaee087946dbbcda815e8d337fa0b051b814a04fc (patch)
treeb3ffa5be07076015d6c8240da101d720a659c0f5 /Modules/config.c.in
parent4526f379bca5695b2144f1142f6a524d77bb7fe4 (diff)
downloadcpython-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.in5
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