summaryrefslogtreecommitdiff
path: root/security/botan/files/patch-configure.pl
diff options
context:
space:
mode:
authorCheng-Lung Sung <clsung@FreeBSD.org>2004-08-26 10:07:01 +0000
committerCheng-Lung Sung <clsung@FreeBSD.org>2004-08-26 10:07:01 +0000
commit248851deaccbdb51236c6c53846ce375326354a9 (patch)
tree2e5be9a74391d1d5ba2017e47483e3eb3961821b /security/botan/files/patch-configure.pl
parent- Add a patch for Simplified Chinese to improve translations (1). (diff)
- Update to 1.4.0
- Change MASTER_SITES - fixed build error in 5.x (compare to ports/69194) PR: ports/70444 Approved by: vanilla (co-mentor)
Diffstat (limited to 'security/botan/files/patch-configure.pl')
-rw-r--r--security/botan/files/patch-configure.pl24
1 files changed, 14 insertions, 10 deletions
diff --git a/security/botan/files/patch-configure.pl b/security/botan/files/patch-configure.pl
index 56db6f11ba49..749998bfcd28 100644
--- a/security/botan/files/patch-configure.pl
+++ b/security/botan/files/patch-configure.pl
@@ -1,11 +1,15 @@
---- configure.pl.orig Fri May 10 10:03:25 2002
-+++ configure.pl Fri May 10 10:03:35 2002
-@@ -1705,7 +1705,7 @@
- DOCDIR = \$(INSTALLROOT)/$doc_dir/OpenCL-\$(VERSION)
-
- OWNER = root
--GROUP = root
-+GROUP = wheel
- DATA_MODE = 644
- EXEC_MODE = 755
+--- configure.pl.orig Sat Jun 26 14:32:52 2004
++++ configure.pl Fri Jul 16 16:53:50 2004
+@@ -2007,7 +2007,11 @@
+ my $link_to = "-lm";
+ foreach my $lib (@{ $lib_list })
+ {
+- $link_to .= " -l" . $lib;
++ if ($lib =~ m/pthread/) {
++ $link_to .= " -" . $lib;
++ } else {
++ $link_to .= " -l" . $lib;
++ }
+ }
+ ##################################################