Skip to content

Commit

Permalink
Merge 76f4ac3 into c554e01
Browse files Browse the repository at this point in the history
  • Loading branch information
haarg committed Oct 18, 2020
2 parents c554e01 + 76f4ac3 commit 17c7261
Show file tree
Hide file tree
Showing 4 changed files with 7,141 additions and 718 deletions.
8 changes: 6 additions & 2 deletions dist.ini
Expand Up @@ -31,9 +31,9 @@ exclude_filename = LICENSE
exclude_filename = CONTRIBUTING.pod
exclude_filename = ppport.h
; authordep Devel::PPPort = 3.35
; authordep Devel::PPPort = 3.62
[PPPort]
version = 3.35
version = 3.62
[MetaYAML]
[MetaJSON]
Expand Down Expand Up @@ -497,6 +497,10 @@ filename = Changes
filename = LICENSE
filename = ppport.h
[Regenerate]
filename = LICENSE
filename = ppport.h
[ReadmeAnyFromPod]
:version = 0.142180
phase = release
Expand Down
7 changes: 2 additions & 5 deletions mop.c
Expand Up @@ -10,7 +10,7 @@ mop_call_xs (pTHX_ XSPROTO(subaddr), CV *cv, SV **mark)
PUTBACK;
}

#if PERL_VERSION >= 10
#if PERL_VERSION_GE(5,10,0)
UV
mop_check_package_cache_flag (pTHX_ HV *stash)
{
Expand Down Expand Up @@ -252,11 +252,8 @@ mop_prehash_keys ()

XS_EXTERNAL(mop_xs_simple_reader)
{
#ifdef dVAR
dVAR; dXSARGS;
#else
dVAR;
dXSARGS;
#endif
register HE *he;
mop_prehashed_key_t key = (mop_prehashed_key_t)CvXSUBANY(cv).any_i32;
SV *self;
Expand Down
4 changes: 0 additions & 4 deletions mop.h
Expand Up @@ -18,10 +18,6 @@

#define MOP_CALL_BOOT(name) mop_call_xs(aTHX_ name, cv, mark);

#ifndef XSPROTO
#define XSPROTO(name) XS_EXTERNAL(name)
#endif

#ifndef CvISXSUB
#define CvISXSUB(cv) (CvXSUB(cv) ? TRUE : FALSE)
#endif
Expand Down

0 comments on commit 17c7261

Please sign in to comment.