| 1 |
root |
1.1 |
#! sh |
| 2 |
|
|
|
| 3 |
|
|
# newer Storable versions have some weird hack to try to measure the |
| 4 |
|
|
# stack size at build time, for reasons not well understood. it seems |
| 5 |
|
|
# perl5-porters think that stack sizes cannot be configured so compile time |
| 6 |
|
|
# stack size always equals runtime stack size. very weird, potential security |
| 7 |
|
|
# bug and doesn't even work, so work around it. |
| 8 |
|
|
if [ -e Storable.pm.PL ] && [ -e stacksize ]; then |
| 9 |
|
|
echo patching stacksize bug in Storable |
| 10 |
|
|
cat >stacksize <<'EOSS' |
| 11 |
|
|
#! perl |
| 12 |
|
|
mkdir "lib", 0777; |
| 13 |
|
|
mkdir "lib/Storable", 0777; |
| 14 |
|
|
open my $fh, ">lib/Storable/Limit.pm" or die; |
| 15 |
|
|
syswrite $fh, <<EOPM; |
| 16 |
|
|
# patched by staticperl |
| 17 |
|
|
\$Storable::recursion_limit = 512 |
| 18 |
|
|
unless defined \$Storable::recursion_limit; |
| 19 |
|
|
\$Storable::recursion_limit_hash = 512 |
| 20 |
|
|
unless defined \$Storable::recursion_limit_hash; |
| 21 |
|
|
1; |
| 22 |
|
|
EOPM |
| 23 |
|
|
EOSS |
| 24 |
|
|
fi |
| 25 |
|
|
|
| 26 |
|
|
"$MAKE" "$@" |
| 27 |
|
|
|