aboutsummaryrefslogtreecommitdiffstats
path: root/lang/perl5.10/files/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'lang/perl5.10/files/patch-ae')
-rw-r--r--lang/perl5.10/files/patch-ae42
1 files changed, 0 insertions, 42 deletions
diff --git a/lang/perl5.10/files/patch-ae b/lang/perl5.10/files/patch-ae
deleted file mode 100644
index 01e5a89ca562..000000000000
--- a/lang/perl5.10/files/patch-ae
+++ /dev/null
@@ -1,42 +0,0 @@
---- perl.h.old Tue May 6 12:22:21 1997
-+++ perl.h Tue May 6 12:26:50 1997
-@@ -223,6 +223,15 @@
- # include <sys/param.h>
- #endif
-
-+/* needed for IAMSUID case for 4.4BSD systems
-+ * XXX there should probably be a Configure variable
-+ */
-+
-+#ifdef I_SYS_PARAM
-+#if (defined (BSD) && (BSD >= 199306))
-+# include <sys/mount.h>
-+#endif /* !BSD */
-+#endif /* !I_SYS_PARAM */
-
- /* Use all the "standard" definitions? */
- #if defined(STANDARD_C) && defined(I_STDLIB)
---- perl.c.old Sun Apr 27 15:04:13 1997
-+++ perl.c Tue May 6 12:27:40 1997
-@@ -1912,6 +1912,20 @@
- croak("Can't swap uid and euid"); /* really paranoid */
- if (Stat(SvPVX(GvSV(curcop->cop_filegv)),&tmpstatbuf) < 0)
- croak("Permission denied"); /* testing full pathname here */
-+#if (defined(BSD) && (BSD >= 199306))
-+#ifdef IAMSUID
-+ {
-+ struct statfs stfs;
-+
-+ if (fstatfs(fileno(rsfp),&stfs) < 0)
-+ croak("Can't statfs filesystem of script \"%s\"",origfilename);
-+
-+ if (stfs.f_flags & MNT_NOSUID)
-+ croak("Permission denied");
-+ }
-+#endif /* IAMSUID */
-+#endif /* BSD */
-+
- if (tmpstatbuf.st_dev != statbuf.st_dev ||
- tmpstatbuf.st_ino != statbuf.st_ino) {
- (void)PerlIO_close(rsfp);
-
'>| Adding common errorsYoichi Hirai2017-12-071-0/+34 | * | Document RPC testYoichi Hirai2017-12-071-0/+1 | |/ * | Merge pull request #379 from ethereum/returndatacopy_after_revert_in_staticYoichi Hirai2017-12-084-0/+1007 |\ \ | * | Add a test case for RETURNDATACOPY after REVERT in STATICCALLYoichi Hirai2017-12-084-0/+1007 | |/ * | Merge pull request #378 from ethereum/returndatasize-after-static-revertYoichi Hirai2017-12-086-183/+427 |\ \ | |/ |/| | * Store the result of RETURNDATASIZE after a static call fails for a REVERTYoichi Hirai2017-12-086-183/+427 |/ * random code options exampleDimitry2017-11-301-0/+31 * Merge pull request #370 from ethereum/fixstatictestswinsvega2017-11-238-218/+442 |\ | * fix StaticCallTestsDimitry2017-11-238-218/+442 |/ * Merge pull request #368 from ethereum/removezerosigYoichi Hirai2017-11-17198-3309/+0 |\ | * remove zeroSig transaction testsDimitry2017-10-26198-3309/+0 * | Merge pull request #366 from ethereum/modexp-modeize1-returnsizeYoichi Hirai2017-10-265-152/+800 |\ \ | |/ |/| | * Add a test for checking RETURNDATASIZE after a modexp with modsize = 1Yoichi Hirai2017-10-255-152/+800 |/ * Merge pull request #365 from ethereum/stbugswinsvega2017-10-2516-0/+6292 |\ | * create failing inside staticcallDimitry2017-10-256-0/+2058 | * returndatacopy bugDimitry2017-10-2410-0/+4234 |/ * Merge pull request #363 from ethereum/modexp-modsize0-returnsizeYoichi Hirai2017-10-2410-0/+3205 |\ | * Add tests about returndatasize following modexp calls of modsize = 0Yoichi Hirai2017-10-2310-0/+3205 * | Merge pull request #362 from ethereum/returndata-ecrecYoichi Hirai2017-10-244-0/+856 |\ \ | * | add casey's testDimitry2017-10-193-3/+710 | * | add test for returndatasize after ecreccdetrio2017-10-072-0/+149 * | | Merge pull request #361 from ethereum/returntestYoichi Hirai2017-10-244-0/+893 |\ \ \ | |_|/ |/| | | * | RETURNDATACOPY and RETURNDATASIZE after failing createDimitry2017-10-194-0/+893 * | | Merge pull request #356 from ethereum/a-call-b-call-c-return-oogYoichi Hirai2017-10-184-0/+1143 |\ \ \ | * | | Add a test case about transaction calls A (CALL B(CALL C(RETURN) OOG) 'check ...Yoichi Hirai2017-10-184-0/+1143 |/ / / * | | Merge pull request #360 from ethereum/returntestwinsvega2017-10-174-0/+1012 |\ \ \ | |/ / |/| | | * | RETURNDATASIZE after a failing CALL (due to insufficient balance) should retu...Dimitry2017-10-174-0/+1012 |/ / * | Merge pull request #358 from ethereum/fixtestYoichi Hirai2017-10-172-39/+39 |\ \ | * | fix random state testDimitry2017-10-172-39/+39 |/ / * | Merge pull request #354 from ethereum/modexpinputYoichi Hirai2017-10-1314-0/+4226 |\ \ | * | modexp input testDimitry2017-10-1314-290/+1667 | * | fuzzed test modexp inputDimitry2017-10-1310-0/+2849 * | | Merge pull request #352 from ethereum/badOpcodes-bigger-stackwinsvega2017-10-13246-8293/+19646 |\ \ \ | * | | refill badopcodes blockchain tests, blockchain general state testsJared Wasinger2017-10-13246-8293/+19646 * | | | Merge pull request #355 from ethereum/fuzztestwinsvega2017-10-134-0/+874 |\ \ \ \ | |_|/ / |/| | | | * | | Update randomStatetest647Filler.jsonwinsvega2017-10-131-1/+1 | * | | fuzztests bytecodeDimitry2017-10-134-0/+874 |/ / / * | | Merge pull request #353 from ethereum/splitwinsvega2017-10-13