summaryrefslogtreecommitdiff
path: root/lang/perl5.12/files
diff options
context:
space:
mode:
Diffstat (limited to 'lang/perl5.12/files')
-rw-r--r--lang/perl5.12/files/patch-ab11
-rw-r--r--lang/perl5.12/files/patch-ac19
-rw-r--r--lang/perl5.12/files/patch-ad18
-rw-r--r--lang/perl5.12/files/patch-ae10
-rw-r--r--lang/perl5.12/files/patch-af11
-rw-r--r--lang/perl5.12/files/use.perl82
6 files changed, 0 insertions, 151 deletions
diff --git a/lang/perl5.12/files/patch-ab b/lang/perl5.12/files/patch-ab
deleted file mode 100644
index 5945ef412853..000000000000
--- a/lang/perl5.12/files/patch-ab
+++ /dev/null
@@ -1,11 +0,0 @@
---- installperl.ORIG Thu Jul 30 15:58:50 1998
-+++ installperl Thu Jul 30 16:02:16 1998
-@@ -269,7 +269,7 @@
- (-l $usrbinperl) &&
- ((readlink $usrbinperl) eq $expinstperl));
- }
-- if ((! $mainperl_is_instperl) &&
-+ if ('' && (! $mainperl_is_instperl) &&
- (yn("Many scripts expect perl to be installed as $usrbinperl.\n" .
- "Do you wish to have $usrbinperl be the same as\n" .
- "$expinstperl? [y] ")))
diff --git a/lang/perl5.12/files/patch-ac b/lang/perl5.12/files/patch-ac
deleted file mode 100644
index aa988cdd7394..000000000000
--- a/lang/perl5.12/files/patch-ac
+++ /dev/null
@@ -1,19 +0,0 @@
---- hints/freebsd.sh.ORIG Tue Apr 10 20:24:51 2001
-+++ hints/freebsd.sh Tue Apr 10 20:27:45 2001
-@@ -85,10 +85,16 @@
- d_setreuid='define'
- d_setegid='undef'
- d_seteuid='undef'
-+ d_dosuid='define'
- ;;
- *) usevfork='true'
- usemymalloc='n'
- libswanted=`echo $libswanted | sed 's/ malloc / /'`
-+ d_setregid='define'
-+ d_setreuid='define'
-+ d_setegid='undef'
-+ d_seteuid='undef'
-+ d_dosuid='define'
- ;;
- esac
-
diff --git a/lang/perl5.12/files/patch-ad b/lang/perl5.12/files/patch-ad
deleted file mode 100644
index a31ff2d16466..000000000000
--- a/lang/perl5.12/files/patch-ad
+++ /dev/null
@@ -1,18 +0,0 @@
---- perl.h.ORIG Thu Mar 22 07:05:02 2001
-+++ perl.h Tue Apr 10 20:29:46 2001
-@@ -151,6 +151,15 @@
-
- */
-
-+/* 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 */
-
- class CPerlObj;
-
diff --git a/lang/perl5.12/files/patch-ae b/lang/perl5.12/files/patch-ae
deleted file mode 100644
index 24dfa020a53b..000000000000
--- a/lang/perl5.12/files/patch-ae
+++ /dev/null
@@ -1,10 +0,0 @@
---- makedepend.SH.ORIG Fri Jul 24 06:00:58 1998
-+++ makedepend.SH Thu Jul 30 17:08:37 1998
-@@ -68,6 +68,7 @@
- case "$osname" in
- os2) ;;
- netbsd) ;;
-+ freebsd) ;;
- *) $touch $firstmakefile ;;
- esac
- fi
diff --git a/lang/perl5.12/files/patch-af b/lang/perl5.12/files/patch-af
deleted file mode 100644
index cd4d3cdb7584..000000000000
--- a/lang/perl5.12/files/patch-af
+++ /dev/null
@@ -1,11 +0,0 @@
---- Configure.ORIG Mon Mar 19 05:03:33 2001
-+++ Configure Tue Apr 10 20:31:56 2001
-@@ -296,7 +296,7 @@
- ldflags=''
- lkflags=''
- locincpth=''
--optimize=''
-+optimize=${CFLAGS:-''}
- cf_email=''
- cf_by=''
- cf_time=''
diff --git a/lang/perl5.12/files/use.perl b/lang/perl5.12/files/use.perl
deleted file mode 100644
index 4bd8fdef66d1..000000000000
--- a/lang/perl5.12/files/use.perl
+++ /dev/null
@@ -1,82 +0,0 @@
-#! /usr/bin/perl5 -w
-# $FreeBSD$
-use strict;
-
-# XXX what to do with perldoc, pelbug, perlcc ??
-
-sub usage
-{
- print STDERR <<EOF;
-Usage:
- $0 port -> /usr/bin/perl is the perl5 port
- $0 system -> /usr/bin/perl is the system perl
-EOF
- exit 2;
-}
-
-@ARGV == 1 or usage();
-if ($ARGV[0] eq 'port') {
- switch_to_port();
-} elsif ($ARGV[0] eq 'system') {
- switch_to_system();
-} else {
- usage();
-}
-exit 0;
-
-sub switch_to_system
-{
- my $port_perl = '%%PREFIX%%/bin/perl';
- $port_perl =~ tr|/|/|s;
-
- # protect against cases where people use PREFIX=/usr
- if ($port_perl ne '/usr/bin/perl') {
- unlink '/usr/bin/perl', '/usr/bin/suidperl',
- '/usr/bin/perl%%PERL_VERSION%%';
-
- link '/usr/bin/perl5', '/usr/bin/perl';
- link '/usr/bin/sperl5', '/usr/bin/suidperl';
- }
-
- open MK, ">> /etc/make.conf" or die "/etc/make.conf: $!";
- print MK <<EOF;
-# -- use.perl generated deltas -- #
-# Created: @{[scalar localtime]}
-# Setting to use base system perl:
-.undef PERL_VER
-.undef PERL_VERSION
-.undef PERL_ARCH
-.undef NOPERL
-
-EOF
- close MK;
-}
-
-sub switch_to_port
-{
- my $port_perl = '%%PREFIX%%/bin/perl';
- $port_perl =~ tr|/|/|s;
-
- # protect against cases where people use PREFIX=/usr
- if ($port_perl ne '/usr/bin/perl') {
- unlink '/usr/bin/perl', '/usr/bin/suidperl',
- '/usr/bin/perl%%PERL_VERSION%%';
-
- symlink '%%PREFIX%%/bin/perl', '/usr/bin/perl';
- symlink '%%PREFIX%%/bin/suidperl', '/usr/bin/suidperl';
- symlink '%%PREFIX%%/bin/perl', '/usr/bin/perl%%PERL_VERSION%%';
- }
-
- open MK, ">> /etc/make.conf" or die "/etc/make.conf: $!";
- print MK <<EOF;
-# -- use.perl generated deltas -- #
-# Created: @{[scalar localtime]}
-# Setting to use base perl from ports:
-PERL_VER=%%PERL_VER%%
-PERL_VERSION=%%PERL_VERSION%%
-PERL_ARCH=%%PERL_ARCH%%
-NOPERL=yo
-
-EOF
- close MK;
-}