diff options
author | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2020-08-10 20:21:08 +0100 |
---|---|---|
committer | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2020-08-21 14:36:04 +0100 |
commit | 768677ca81f5435a52c71938fa0353d7e2d0e1cf (patch) | |
tree | 18e4441b38206c5992f2f9aa9e89830dd52cabf5 /plan9 | |
parent | cdac9b828888592f4c2b905aef8094fbca49ecfc (diff) | |
download | perl-768677ca81f5435a52c71938fa0353d7e2d0e1cf.tar.gz |
Remove 5005threads vestiges from Configure and friends
See https://github.com/Perl/metaconfig/pull/66/
Diffstat (limited to 'plan9')
-rw-r--r-- | plan9/config.plan9 | 9 | ||||
-rw-r--r-- | plan9/config_h.sample | 13 | ||||
-rw-r--r-- | plan9/config_sh.sample | 1 |
3 files changed, 7 insertions, 16 deletions
diff --git a/plan9/config.plan9 b/plan9/config.plan9 index 9970f64068..c5b427e6f4 100644 --- a/plan9/config.plan9 +++ b/plan9/config.plan9 @@ -3533,10 +3533,6 @@ * 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. - */ /* OLD_PTHREADS_API: * This symbol, if defined, indicates that Perl should * be built to use the old draft POSIX threads API. @@ -3546,11 +3542,8 @@ * try to use the various _r versions of library functions. * This is extremely experimental. */ -/*#define USE_5005THREADS / **/ /*#define USE_ITHREADS / **/ -#if defined(USE_5005THREADS) && !defined(USE_ITHREADS) -#define USE_THREADS /* until src is revised*/ -#endif +/*#define USE_THREADS / **/ /*#define OLD_PTHREADS_API / **/ /*#define USE_REENTRANT_API / **/ diff --git a/plan9/config_h.sample b/plan9/config_h.sample index f71d55bd53..651817827c 100644 --- a/plan9/config_h.sample +++ b/plan9/config_h.sample @@ -3351,9 +3351,11 @@ * 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. +/* 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 @@ -3364,11 +3366,8 @@ * try to use the various _r versions of library functions. * This is extremely experimental. */ -/*#define USE_5005THREADS / **/ /*#define USE_ITHREADS / **/ -#if defined(USE_5005THREADS) && !defined(USE_ITHREADS) -#define USE_THREADS /* until src is revised*/ -#endif +/*#define USE_THREADS / **/ /*#define OLD_PTHREADS_API / **/ /*#define USE_REENTRANT_API / **/ diff --git a/plan9/config_sh.sample b/plan9/config_sh.sample index cdcea2d15f..29bd37d702 100644 --- a/plan9/config_sh.sample +++ b/plan9/config_sh.sample @@ -1091,7 +1091,6 @@ uidtype='uid_t' uname='uname' uniq='uniq' uquadtype='unsigned long long' -use5005threads='undef' use64bitall='undef' use64bitint='undef' usecbacktrace='undef' |