summaryrefslogtreecommitdiff
path: root/lang/parrot/patches
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2008-08-30 08:06:33 +0000
committerdholland <dholland@pkgsrc.org>2008-08-30 08:06:33 +0000
commit9fd05904d9cfbf11e5d25ef25f0b6be4217b857f (patch)
treef9acfd5f9973c713c61045f8be04714952cccc4e /lang/parrot/patches
parent329565f44e1f0525472f36ff321a37382315c56e (diff)
downloadpkgsrc-9fd05904d9cfbf11e5d25ef25f0b6be4217b857f.tar.gz
patch-aa (with dragonfly config) got merged upstream. Applying the
patch with a more tolerant version of patch (like netbsd's) gives two copies of the definitions in the same file, with who knows what consequences. Applying the patch with a less tolerant version of patch fails. So, remove it, and bump PKGREVISION just in case.
Diffstat (limited to 'lang/parrot/patches')
-rw-r--r--lang/parrot/patches/patch-aa35
1 files changed, 0 insertions, 35 deletions
diff --git a/lang/parrot/patches/patch-aa b/lang/parrot/patches/patch-aa
deleted file mode 100644
index a43ccc09b1f..00000000000
--- a/lang/parrot/patches/patch-aa
+++ /dev/null
@@ -1,35 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2006/01/09 17:47:07 wiz Exp $
-
---- /dev/null Fri Jan 6 20:33:00 2006
-+++ config/init/hints/dragonflybsd.pm Fri Jan 6 20:37:08 2006
-@@ -0,0 +1,30 @@
-+# Copyright: 2005 The Perl Foundation. All Rights Reserved.
-+
-+package init::hints::dragonflybsd;
-+
-+use strict;
-+
-+sub runstep
-+{
-+ my ($self, $conf) = @_;
-+
-+ my $libs = $conf->data->get('libs');
-+
-+ if ($libs !~ /pthread/) {
-+ $libs .= ' -pthread';
-+ }
-+
-+ $conf->data->set(
-+ libs => $libs,
-+ link => 'g++',
-+ rpath => '-Wl,-R',
-+
-+ has_dynamic_linking => 1,
-+ parrot_is_shared => 1,
-+ libparrot_shared => 'libparrot$(SHARE_EXT).$(SOVERSION)',
-+ libparrot_shared_alias => 'libparrot$(SHARE_EXT)',
-+ libparrot_soname => '-Wl,-soname=libparrot$(SHARE_EXT).$(SOVERSION)',
-+ );
-+}
-+
-+1;