diff options
author | James E Keenan <jkeenan@cpan.org> | 2015-02-26 09:02:19 -0500 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2015-03-02 19:58:39 -0500 |
commit | 36dc805b1fb2aef46ec1540d4b768d64fbb52e22 (patch) | |
tree | 66317c72fd2e016846f9275fb8cd4c69ba89f376 /t/porting | |
parent | 2107eff2814ab1ff8e619b812de17868cb58bd68 (diff) | |
download | perl-36dc805b1fb2aef46ec1540d4b768d64fbb52e22.tar.gz |
Remove unused variable $DEBUGGING.
It is unused and there do not appear to be any tests to be run for -DDEBUGGING
in this file.
Diffstat (limited to 't/porting')
-rw-r--r-- | t/porting/libperl.t | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/t/porting/libperl.t b/t/porting/libperl.t index d97b33223f..ac9db4b11d 100644 --- a/t/porting/libperl.t +++ b/t/porting/libperl.t @@ -326,8 +326,6 @@ ok($symbols{text}{'Perl_pp_uc'}{'pp.o'}, "has text Perl_pp_uc in pp.o"); ok(exists $symbols{data}{const}, "has data const symbols"); ok($symbols{data}{const}{PL_no_mem}{'globals.o'}, "has PL_no_mem"); -my $DEBUGGING = $Config{ccflags} =~ /-DDEBUGGING/ ? 1 : 0; - my $GS = $Config{ccflags} =~ /-DPERL_GLOBAL_STRUCT\b/ ? 1 : 0; my $GSP = $Config{ccflags} =~ /-DPERL_GLOBAL_STRUCT_PRIVATE/ ? 1 : 0; |