summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2001-03-29 14:03:28 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-30 02:04:33 +0000
commitd81966ff01fcaf0e13cf1b40d512739033a43e42 (patch)
treed9ac8c5c0c2a8b0001b6d9aab9b0ea7ab43668eb /ext
parente02a29e43bc862d5c4e9a2747074ccc493674e73 (diff)
downloadperl-d81966ff01fcaf0e13cf1b40d512739033a43e42.tar.gz
ext/re/aix.pl can go
Message-Id: <20010329120132.7C3B.H.M.BRAND@hccnet.nl> p4raw-id: //depot/perl@9457
Diffstat (limited to 'ext')
-rw-r--r--ext/re/hints/aix.pl22
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/re/hints/aix.pl b/ext/re/hints/aix.pl
deleted file mode 100644
index 4fbfefd735..0000000000
--- a/ext/re/hints/aix.pl
+++ /dev/null
@@ -1,22 +0,0 @@
-# Add explicit link to deb.o to pick up .Perl_deb symbol which is not
-# mentioned in perl.exp for earlier cc (xlc) versions in at least
-# non DEBUGGING builds
-# Peter Prymmer <pvhp@best.com>
-
-use Config;
-
-if ($^O eq 'aix' && defined($Config{'ccversion'}) &&
- ( $Config{'ccversion'} =~ /^3\.\d/
- # needed for at least these versions:
- # $Config{'ccversion'} eq '3.6.6.0'
- # $Config{'ccversion'} eq '3.6.4.0'
- # $Config{'ccversion'} eq '3.1.4.0' AIX 4.2
- # $Config{'ccversion'} eq '3.1.4.10' AIX 4.2
- # $Config{'ccversion'} eq '3.1.3.3'
- ||
- $Config{'ccversion'} =~ /^4\.4\.0\.[0-3]/
- )
- ) {
- $self->{OBJECT} .= ' ../../deb$(OBJ_EXT)';
-}
-