diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-04-16 11:44:21 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-04-16 11:44:21 +0000 |
commit | d7534a0d39edbc9cfdfb01b1051d962b0ec4fc80 (patch) | |
tree | aee9253a75d0a9cfbf6631a658c85f86723191c3 /lang/perl5-devel/files/patch-perl.c | |
parent | - Add a patch to fix heap overflow (diff) |
Add lang/perl5-devel, which will be the one from which the lang/perl5.xx ports
will come from, from now on.
Please, only use the -devel port for testing, not for production purposes.
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=384103
Diffstat (limited to '')
-rw-r--r-- | lang/perl5-devel/files/patch-perl.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lang/perl5-devel/files/patch-perl.c b/lang/perl5-devel/files/patch-perl.c new file mode 100644 index 000000000000..cc7fe9dec935 --- /dev/null +++ b/lang/perl5-devel/files/patch-perl.c @@ -0,0 +1,21 @@ +--- perl.c.orig 2015-04-15 07:47:18 UTC ++++ perl.c +@@ -1795,18 +1795,7 @@ S_Internals_V(pTHX_ CV *cv) + PUSHs(Perl_newSVpvn_flags(aTHX_ non_bincompat_options, + sizeof(non_bincompat_options) - 1, SVs_TEMP)); + +-#ifdef __DATE__ +-# ifdef __TIME__ +- PUSHs(Perl_newSVpvn_flags(aTHX_ +- STR_WITH_LEN("Compiled at " __DATE__ " " __TIME__), +- SVs_TEMP)); +-# else +- PUSHs(Perl_newSVpvn_flags(aTHX_ STR_WITH_LEN("Compiled on " __DATE__), +- SVs_TEMP)); +-# endif +-#else + PUSHs(&PL_sv_undef); +-#endif + + for (i = 1; i <= local_patch_count; i++) { + /* This will be an undef, if PL_localpatches[i] is NULL. */ |