summaryrefslogtreecommitdiff
path: root/config_h.SH
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-08-10 20:21:08 +0100
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-08-21 14:36:04 +0100
commit768677ca81f5435a52c71938fa0353d7e2d0e1cf (patch)
tree18e4441b38206c5992f2f9aa9e89830dd52cabf5 /config_h.SH
parentcdac9b828888592f4c2b905aef8094fbca49ecfc (diff)
downloadperl-768677ca81f5435a52c71938fa0353d7e2d0e1cf.tar.gz
Remove 5005threads vestiges from Configure and friends
See https://github.com/Perl/metaconfig/pull/66/
Diffstat (limited to 'config_h.SH')
-rwxr-xr-xconfig_h.SH14
1 files changed, 6 insertions, 8 deletions
diff --git a/config_h.SH b/config_h.SH
index 08c5923ef8..437bafffaa 100755
--- a/config_h.SH
+++ b/config_h.SH
@@ -5154,10 +5154,11 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
* This symbol, if defined, indicates that Perl should be built to
* use the interpreter-based threading implementation.
*/
-/* USE_5005THREADS:
- * This symbol, if defined, indicates that Perl should be built to
- * use the 5.005-based threading implementation.
- * Only valid up to 5.8.x.
+/* USE_THREADS:
+ * This symbol, if defined, indicates that Perl should
+ * be built to use threads. At present, it is a synonym for
+ * and USE_ITHREADS, but eventually the source ought to be
+ * changed to use this to mean _any_ threading implementation.
*/
/* OLD_PTHREADS_API:
* This symbol, if defined, indicates that Perl should
@@ -5168,11 +5169,8 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
* try to use the various _r versions of library functions.
* This is extremely experimental.
*/
-#$use5005threads USE_5005THREADS /**/
#$useithreads USE_ITHREADS /**/
-#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
-#define USE_THREADS /* until src is revised*/
-#endif
+#$usethreads USE_THREADS /**/
#$d_oldpthreads OLD_PTHREADS_API /**/
#$usereentrant USE_REENTRANT_API /**/