summaryrefslogtreecommitdiff
path: root/security/qca-tls/patches
diff options
context:
space:
mode:
authorjdolecek <jdolecek@pkgsrc.org>2004-12-19 09:29:16 +0000
committerjdolecek <jdolecek@pkgsrc.org>2004-12-19 09:29:16 +0000
commit0cb264d340b476c3fff79430bef7a0f982dca54c (patch)
tree8975396f8a920d805521c886006c217c1113cff4 /security/qca-tls/patches
parentb9c5791d7469b70b5e959f87e6ca565ab9d6ea60 (diff)
downloadpkgsrc-0cb264d340b476c3fff79430bef7a0f982dca54c.tar.gz
Fix build on NetBSD 2.0 - configure script tried to link program with
libssl without linking also libcrypto, which fails on 2.0 since libssl doesn't have recorded the libcrypto dependency; fix by disabling the checkLibrary() call when QC_WITH_OPENSSL_LIB is supplied PR: 28576
Diffstat (limited to 'security/qca-tls/patches')
-rw-r--r--security/qca-tls/patches/patch-aa15
1 files changed, 15 insertions, 0 deletions
diff --git a/security/qca-tls/patches/patch-aa b/security/qca-tls/patches/patch-aa
new file mode 100644
index 00000000000..8f25050fb3e
--- /dev/null
+++ b/security/qca-tls/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1 2004/12/19 09:29:16 jdolecek Exp $
+
+--- configure.orig 2004-12-19 09:10:21.000000000 +0000
++++ configure 2004-12-19 09:20:50.000000000 +0000
+@@ -144,8 +144,10 @@
+
+ s = conf->getenv("QC_WITH_OPENSSL_LIB");
+ if(!s.isEmpty()) {
++ /*
+ if(!conf->checkLibrary(s, "ssl"))
+ return false;
++ */
+ lib = s;
+ }
+ else {