summaryrefslogtreecommitdiff
path: root/ext/Storable/hints/hpux.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-10-02 18:12:44 +0100
committerNicholas Clark <nick@ccl4.org>2009-10-02 18:12:44 +0100
commit8b88b2b2a83b118e358c4d04557659e32d47c01b (patch)
treec696c6c5c77b90417d6640dc151bca8bd3596dc2 /ext/Storable/hints/hpux.pl
parent43aed010bf8b6e3fe32d5f9e8e086dda22b5b4c6 (diff)
downloadperl-8b88b2b2a83b118e358c4d04557659e32d47c01b.tar.gz
Move Storable from ext/ to dist/
Diffstat (limited to 'ext/Storable/hints/hpux.pl')
-rw-r--r--ext/Storable/hints/hpux.pl10
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/Storable/hints/hpux.pl b/ext/Storable/hints/hpux.pl
deleted file mode 100644
index 959d6fedf0..0000000000
--- a/ext/Storable/hints/hpux.pl
+++ /dev/null
@@ -1,10 +0,0 @@
-# HP C-ANSI-C has problems in the optimizer for 5.8.x (not for 5.11.x)
-# So drop to -O1 for Storable
-
-use Config;
-
-unless ($Config{gccversion}) {
- my $optimize = $Config{optimize};
- $optimize =~ s/(^| )[-+]O[2-9]( |$)/$1+O1$2/ and
- $self->{OPTIMIZE} = $optimize;
- }