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 /config_h.SH | |
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
Diffstat (limited to 'config_h.SH')
-rwxr-xr-x | config_h.SH | 4 |
1 files changed, 2 insertions, 2 deletions
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 |