diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-21 11:25:54 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-21 11:25:54 +0000 |
commit | b9047bb0faa4f11fd5b09d7361696b4b9cbb4422 (patch) | |
tree | 562daba71331262a82978148f7f8a0d6a72398e7 /lib | |
parent | 49f1eff3b497784eaa24b3c72cb745c3c1f64731 (diff) | |
download | perl-b9047bb0faa4f11fd5b09d7361696b4b9cbb4422.tar.gz |
Upgrade to ExtUtils::ParseXS 2.12
p4raw-id: //depot/perl@25533
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/ParseXS.pm | 6 | ||||
-rw-r--r-- | lib/ExtUtils/ParseXS/t/basic.t | 5 |
2 files changed, 5 insertions, 6 deletions
diff --git a/lib/ExtUtils/ParseXS.pm b/lib/ExtUtils/ParseXS.pm index 1683da6d59..adad27f9e6 100644 --- a/lib/ExtUtils/ParseXS.pm +++ b/lib/ExtUtils/ParseXS.pm @@ -17,7 +17,7 @@ my(@XSStack); # Stack of conditionals and INCLUDEs my($XSS_work_idx, $cpp_next_tmp); use vars qw($VERSION); -$VERSION = '2.11_01'; +$VERSION = '2.12'; use vars qw(%input_expr %output_expr $ProtoUsed @InitFileCode $FH $proto_re $Overload $errors $Fallback $cplusplus $hiertype $WantPrototypes $WantVersionChk $except $WantLineNumbers @@ -1870,7 +1870,7 @@ sub DESTROY { } sub UNTIE { - # This sub does nothing, but is necessary for references to be released. + # This sub does nothing, but is neccessary for references to be released. } sub end_marker { @@ -1939,7 +1939,7 @@ Adds C<extern "C"> to the C code. Default is false. =item B<hiertype> -Retains C<::> in type names so that C++ hierarchical types can be +Retains C<::> in type names so that C++ hierachical types can be mapped. Default is false. =item B<except> diff --git a/lib/ExtUtils/ParseXS/t/basic.t b/lib/ExtUtils/ParseXS/t/basic.t index 4c4fce34ec..520b8777c8 100644 --- a/lib/ExtUtils/ParseXS/t/basic.t +++ b/lib/ExtUtils/ParseXS/t/basic.t @@ -64,13 +64,12 @@ if ($b->have_compiler) { } } } - unlink $obj_file; - unlink $lib_file; + 1 while unlink $lib_file; } else { skip "Skipped can't find a C compiler & linker", 1 for 1..7; } -unlink $source_file; +1 while unlink $source_file; ##################################################################### |