summaryrefslogtreecommitdiff
path: root/dev-perl/Filesys-SmbClient/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
commitd934827bf44b7cfcf6711964418148fa60877668 (patch)
tree0625f358789b5e015e49db139cc1dbc9be00428f /dev-perl/Filesys-SmbClient/files
parent2e34d110f164bf74d55fced27fe0000201b3eec5 (diff)
gentoo resync : 25.11.2020
Diffstat (limited to 'dev-perl/Filesys-SmbClient/files')
-rw-r--r--dev-perl/Filesys-SmbClient/files/Filesys-SmbClient-3.200.0-pkg_config.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-perl/Filesys-SmbClient/files/Filesys-SmbClient-3.200.0-pkg_config.patch b/dev-perl/Filesys-SmbClient/files/Filesys-SmbClient-3.200.0-pkg_config.patch
deleted file mode 100644
index 2a2b08089726..000000000000
--- a/dev-perl/Filesys-SmbClient/files/Filesys-SmbClient-3.200.0-pkg_config.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From fa320a06147079458aa5f4834ae8b22cfe278481 Mon Sep 17 00:00:00 2001
-From: Dennis Lichtenthaeler <dennis.lichtenthaeler@stiftung-tannenhof.de>
-Date: Wed, 27 Apr 2016 10:57:17 +0200
-Subject: [PATCH 3/3] Use pkg-config instead of trickery to find samba-4
- libs/headers
-
----
- Makefile.PL | 12 ++++++++++++
- 1 file changed, 12 insertions(+)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index 954df92..ed9d846 100755
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -110,6 +110,18 @@ sub find_path {
- push(@path, $_."/$ext") if !$defaultsDir->{$_};
- }
- foreach (keys %$defaultsDir) { push(@path, $_."/$ext"); }
-+
-+ ## get default paths from pkg-config
-+ my $pkgconfig;
-+ if($_[0]=~m!\.h$!) {
-+ $pkgconfig = qx/pkg-config --variable=includedir smbclient/;
-+ }
-+ else {
-+ $pkgconfig = qx/pkg-config --variable=libdir smbclient/;
-+ }
-+ $pkgconfig =~ s/\n//g;
-+ push(@path, $pkgconfig);
-+
- print "I search in: ",(join "\n", @path),"\n";
- return @path;
- }
---
-2.7.3
-