summaryrefslogtreecommitdiffstats
path: root/acconfig.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-09-19 00:46:46 (GMT)
committerGuido van Rossum <guido@python.org>2000-09-19 00:46:46 (GMT)
commit9e8181b809c0dc40f86d66ce7e51db83aaeccd20 (patch)
tree905b001aa2fe3c15cc51668151974dfb05dd51d4 /acconfig.h
parent0344424793599e005b7071dd0338f508ac0d5168 (diff)
downloadcpython-9e8181b809c0dc40f86d66ce7e51db83aaeccd20.zip
cpython-9e8181b809c0dc40f86d66ce7e51db83aaeccd20.tar.gz
cpython-9e8181b809c0dc40f86d66ce7e51db83aaeccd20.tar.bz2
Make better use of GNU Pth -- patch by Andy Dustman.
I can't test this, so I'm just checking it in with blind faith in Andy. I've tested that it doesn't broeak a non-Pth build on Linux. Changes include: - There's a --with-pth configure option. - Instead of _GNU_PTH, we test for HAVE_PTH. - Better signal handling. - (The config.h.in file is regenerated in a slightly different order.)
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/acconfig.h b/acconfig.h
index 6eb9feb..05b11ac 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -35,9 +35,6 @@
This is the case on Motorola V4 (R40V4.2) */
#undef GETTIMEOFDAY_NO_TZ
-/* Define if you have GNU PTH threads */
-#undef _GNU_PTH
-
/* Define this if your time.h defines altzone */
#undef HAVE_ALTZONE
@@ -65,6 +62,9 @@
/* Define if your compiler supports function prototypes */
#undef HAVE_PROTOTYPES
+/* Define if you have GNU PTH threads */
+#undef HAVE_PTH
+
/* Define if your compiler supports variable length function prototypes
(e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
#undef HAVE_STDARG_PROTOTYPES