summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl/debian/prune_libs.diff
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/perl/debian/prune_libs.diff')
-rw-r--r--meta/recipes-devtools/perl/perl/debian/prune_libs.diff43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta/recipes-devtools/perl/perl/debian/prune_libs.diff b/meta/recipes-devtools/perl/perl/debian/prune_libs.diff
deleted file mode 100644
index a2ed52ab2e..0000000000
--- a/meta/recipes-devtools/perl/perl/debian/prune_libs.diff
+++ /dev/null
@@ -1,43 +0,0 @@
1From c4538f966c49e356599358def7d1febf61bca21f Mon Sep 17 00:00:00 2001
2From: Brendan O'Dea <bod@debian.org>
3Date: Fri, 18 Mar 2005 22:22:25 +1100
4Subject: [PATCH 15/49] Prune the list of libraries wanted to what we actually
5 need.
6
7Bug-Debian: http://bugs.debian.org/128355
8
9We want to keep the dependencies on perl-base as small as possible,
10and some of the original list may be present on buildds (see Bug#128355).
11
12Patch-Name: debian/prune_libs.diff
13Upstream-Status: Pending
14---
15 Configure | 5 ++---
16 1 file changed, 2 insertions(+), 3 deletions(-)
17
18diff --git a/Configure b/Configure
19index 5a353d6..a00df64 100755
20--- a/Configure
21+++ b/Configure
22@@ -1479,8 +1479,7 @@ archname=''
23 usereentrant='undef'
24 : List of libraries we want.
25 : If anyone needs extra -lxxx, put those in a hint file.
26-libswanted="cl pthread socket bind inet nsl ndbm gdbm dbm db malloc dl ld"
27-libswanted="$libswanted sun m crypt sec util c cposix posix ucb bsd BSD"
28+libswanted='gdbm gdbm_compat db dl m c crypt'
29 : We probably want to search /usr/shlib before most other libraries.
30 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
31 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
32@@ -24007,7 +24006,7 @@ sunos*X4*)
33 ;;
34 *) case "$usedl" in
35 $define|true|[yY]*)
36- set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'`
37+ set X `echo " $libs " | sed -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldb @ @'`
38 shift
39 perllibs="$*"
40 ;;
41--
422.1.4
43