summaryrefslogtreecommitdiff
path: root/devel/mico
diff options
context:
space:
mode:
authorjoerg <joerg>2014-11-10 18:01:01 +0000
committerjoerg <joerg>2014-11-10 18:01:01 +0000
commit9bf97e83303d82cf49f2566d1c4595c4414c7d1f (patch)
tree93739325ca79cb422cb361ae527f9a3205875758 /devel/mico
parent58bb7a754510c93e41d6251beb167d7449bab4f0 (diff)
downloadpkgsrc-9bf97e83303d82cf49f2566d1c4595c4414c7d1f.tar.gz
Fix detection of thread-safe OpenSSL.
Diffstat (limited to 'devel/mico')
-rw-r--r--devel/mico/distinfo4
-rw-r--r--devel/mico/patches/patch-ab19
2 files changed, 20 insertions, 3 deletions
diff --git a/devel/mico/distinfo b/devel/mico/distinfo
index f56aab3c83a..3ac9316b385 100644
--- a/devel/mico/distinfo
+++ b/devel/mico/distinfo
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.3 2013/08/30 16:58:14 joerg Exp $
+$NetBSD: distinfo,v 1.4 2014/11/10 18:01:01 joerg Exp $
SHA1 (mico-2.3.12.tar.gz) = e1885362d559ea97c62a2437a1d3a94114ef5b05
RMD160 (mico-2.3.12.tar.gz) = 2f45ace5044233f171ac8e4fd389d523befaca51
Size (mico-2.3.12.tar.gz) = 2837502 bytes
SHA1 (patch-aa) = 1a69df4063234d956ab10bf2cbbcaa34508923ad
-SHA1 (patch-ab) = 81c2dbb24d69e8e34b12de303171e6dd7ccaf62b
+SHA1 (patch-ab) = 31c9bf32df643d5071016724799ee4ecf980788e
SHA1 (patch-ac) = a9f063059daec082ff9813b3d15020272770c14c
SHA1 (patch-include_mico_throw.h) = 9b58977a59104312902ec11faf02515ccfb1f2d5
SHA1 (patch-orb_fast__array.cc) = 750c8d8836c3b8cc9e02e20eea837d594ba76958
diff --git a/devel/mico/patches/patch-ab b/devel/mico/patches/patch-ab
index 17624f9876f..d32760f7a3b 100644
--- a/devel/mico/patches/patch-ab
+++ b/devel/mico/patches/patch-ab
@@ -1,4 +1,4 @@
-$NetBSD: patch-ab,v 1.2 2013/08/30 16:58:14 joerg Exp $
+$NetBSD: patch-ab,v 1.3 2014/11/10 18:01:01 joerg Exp $
--- configure.orig 2006-01-21 15:12:08.000000000 +0000
+++ configure
@@ -569,3 +569,20 @@ $NetBSD: patch-ab,v 1.2 2013/08/30 16:58:14 joerg Exp $
/* Are we little or big endian? From Harbison&Steele. */
union
{
+@@ -11634,13 +11634,13 @@ else
+ #include <stdlib.h>
+ #endif
+
+-int
+-main()
+-{
+ #define OPENSSL_THREAD_DEFINES
+ #undef THREADS
+ #undef OPENSSL_THREADS
+ #include <openssl/opensslconf.h>
++int
++main()
++{
+ #if !defined(THREADS) && !defined(OPENSSL_THREADS)
+ //error You are trying to build multi-threaded MICO with single-threaded OpenSSL!
+ return 1;