summaryrefslogtreecommitdiffstats
path: root/config.h.in
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-07-09 14:39:29 (GMT)
committerFred Drake <fdrake@acm.org>2000-07-09 14:39:29 (GMT)
commitce81d59c0cb1be048c279f0acf5205da77a82e23 (patch)
tree74d8203c4609e866336696f895f39a8a9fe906bc /config.h.in
parent3cd2ee4037156e5aab352a75b1e879f47808b468 (diff)
downloadcpython-ce81d59c0cb1be048c279f0acf5205da77a82e23.zip
cpython-ce81d59c0cb1be048c279f0acf5205da77a82e23.tar.gz
cpython-ce81d59c0cb1be048c279f0acf5205da77a82e23.tar.bz2
Remove setup of HAVE_OLD_CPP; it is no longer used in the Python sources.
The actual test for it is only commented out in configure.in, so it can be re-enabled if we ever run across the need for it again.
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in
index 9c3caf0..53c263d 100644
--- a/config.h.in
+++ b/config.h.in
@@ -127,9 +127,6 @@
/* Define this if you have the type long long */
#undef HAVE_LONG_LONG
-/* Define this if you have a K&R style C preprocessor */
-#undef HAVE_OLD_CPP
-
/* Define if your compiler supports function prototypes */
#undef HAVE_PROTOTYPES
@@ -231,6 +228,11 @@
/* Defined when any dynamic module loading is enabled */
#undef HAVE_DYNAMIC_LOADING
+/* Define if i>>j for signed int i does not extend the sign bit
+ when i < 0
+*/
+#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
+
/* The number of bytes in a char. */
#undef SIZEOF_CHAR