diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2019-06-24 20:47:26 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2019-06-24 20:47:26 +0100 |
commit | 812e2121cb84e726a5a5b5a3a64c6f949426e02f (patch) | |
tree | 06a5ea6baff297a59e663173cf197528665ce828 | |
parent | 362d2cd85ebfe95231952e6fccbaadc26915db9d (diff) | |
download | perl-812e2121cb84e726a5a5b5a3a64c6f949426e02f.tar.gz |
Fix erroneous references to USE_CBACKTRACE
The #define set in Configure and used in locale.c and util.c is actually
USE_C_BACKTRACE.
Pointed out by NormW in
https://www.nntp.perl.org/group/perl.perl5.porters/2018/04/msg250441.html
-rw-r--r-- | Porting/config_H | 4 | ||||
-rwxr-xr-x | config_h.SH | 4 | ||||
-rw-r--r-- | uconfig.h | 6 | ||||
-rw-r--r-- | win32/config_H.gc | 4 | ||||
-rw-r--r-- | win32/config_H.vc | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/Porting/config_H b/Porting/config_H index 5468f30ac3..6a1e8dc6fa 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -4170,11 +4170,11 @@ #define USE_64_BIT_ALL /**/ #endif -/* USE_CBACKTRACE: +/* USE_C_BACKTRACE: * This symbol, if defined, indicates that Perl should * be built with support for backtrace. */ -/*#define USE_CBACKTRACE / **/ +/*#define USE_C_BACKTRACE / **/ /* USE_DTRACE: * This symbol, if defined, indicates that Perl should diff --git a/config_h.SH b/config_h.SH index ef135e2528..e776983080 100755 --- a/config_h.SH +++ b/config_h.SH @@ -4231,11 +4231,11 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un #$use64bitall USE_64_BIT_ALL /**/ #endif -/* USE_CBACKTRACE: +/* USE_C_BACKTRACE: * This symbol, if defined, indicates that Perl should * be built with support for backtrace. */ -#$usecbacktrace USE_CBACKTRACE /**/ +#$usecbacktrace USE_C_BACKTRACE /**/ /* USE_DTRACE: * This symbol, if defined, indicates that Perl should @@ -4196,11 +4196,11 @@ /*#define USE_64_BIT_ALL / **/ #endif -/* USE_CBACKTRACE: +/* USE_C_BACKTRACE: * This symbol, if defined, indicates that Perl should * be built with support for backtrace. */ -/*#define USE_CBACKTRACE / **/ +/*#define USE_C_BACKTRACE / **/ /* USE_DTRACE: * This symbol, if defined, indicates that Perl should @@ -5244,6 +5244,6 @@ #endif /* Generated from: - * 6608de918c3c876975f74b684da2536ab1ee23459783d691ae02ce2526a497a7 config_h.SH + * e3dbc17ac938c9df0df81930ccebf94a0425dbff9d20c3edd18a84075eff4fc2 config_h.SH * a11d95f56af200907b9285ed0da243a4c20db34f5684af313d18195eaba2b18b uconfig.sh * ex: set ro: */ diff --git a/win32/config_H.gc b/win32/config_H.gc index 5a255b49d9..115c88cde1 100644 --- a/win32/config_H.gc +++ b/win32/config_H.gc @@ -4116,11 +4116,11 @@ /*#define USE_64_BIT_ALL / **/ #endif -/* USE_CBACKTRACE: +/* USE_C_BACKTRACE: * This symbol, if defined, indicates that Perl should * be built with support for backtrace. */ -/*#define USE_CBACKTRACE / **/ +/*#define USE_C_BACKTRACE / **/ /* USE_DTRACE: * This symbol, if defined, indicates that Perl should diff --git a/win32/config_H.vc b/win32/config_H.vc index b0fc34731b..05c8093615 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -4107,11 +4107,11 @@ /*#define USE_64_BIT_ALL / **/ #endif -/* USE_CBACKTRACE: +/* USE_C_BACKTRACE: * This symbol, if defined, indicates that Perl should * be built with support for backtrace. */ -/*#define USE_CBACKTRACE / **/ +/*#define USE_C_BACKTRACE / **/ /* USE_DTRACE: * This symbol, if defined, indicates that Perl should |