diff options
author | joerg <joerg@pkgsrc.org> | 2014-02-21 20:30:27 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-02-21 20:30:27 +0000 |
commit | 8e62dbf163ad9217da1f5336f2f8cdffc26007f0 (patch) | |
tree | 35d3a8777f98ebb3fa9b1c4e678e9a18463be613 /net/ccrtp | |
parent | 32cf71c38752c2b5c4d4c7e5bf6d5506e5e483d8 (diff) | |
download | pkgsrc-8e62dbf163ad9217da1f5336f2f8cdffc26007f0.tar.gz |
Fix build with newer libgcrypt.
Diffstat (limited to 'net/ccrtp')
-rw-r--r-- | net/ccrtp/distinfo | 3 | ||||
-rw-r--r-- | net/ccrtp/patches/patch-src_ccrtp_crypto_gcrypt_InitializeGcrypt.cpp | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/net/ccrtp/distinfo b/net/ccrtp/distinfo index c3711eb1424..2fe3fee905f 100644 --- a/net/ccrtp/distinfo +++ b/net/ccrtp/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2013/06/27 01:39:09 rodent Exp $ +$NetBSD: distinfo,v 1.3 2014/02/21 20:30:27 joerg Exp $ SHA1 (ccrtp-2.0.6.tar.gz) = b04094484b21798b2cde10f022c2396c6b7d117b RMD160 (ccrtp-2.0.6.tar.gz) = 0f8493b40fda383e959c67d32164f3b43fdacd02 Size (ccrtp-2.0.6.tar.gz) = 735455 bytes +SHA1 (patch-src_ccrtp_crypto_gcrypt_InitializeGcrypt.cpp) = 150315c24f4c578b8cf045b9050e188d54e0fc8a diff --git a/net/ccrtp/patches/patch-src_ccrtp_crypto_gcrypt_InitializeGcrypt.cpp b/net/ccrtp/patches/patch-src_ccrtp_crypto_gcrypt_InitializeGcrypt.cpp new file mode 100644 index 00000000000..7f5c5670f07 --- /dev/null +++ b/net/ccrtp/patches/patch-src_ccrtp_crypto_gcrypt_InitializeGcrypt.cpp @@ -0,0 +1,15 @@ +$NetBSD: patch-src_ccrtp_crypto_gcrypt_InitializeGcrypt.cpp,v 1.1 2014/02/21 20:30:27 joerg Exp $ + +--- src/ccrtp/crypto/gcrypt/InitializeGcrypt.cpp.orig 2012-06-18 15:19:04.000000000 +0000 ++++ src/ccrtp/crypto/gcrypt/InitializeGcrypt.cpp +@@ -52,9 +52,7 @@ static int gcry_pthread_mutex_unlock (vo + { return pthread_mutex_unlock ((pthread_mutex_t *)*lock); } \ + \ + static struct gcry_thread_cbs gcry_threads_pthread = \ +-{ GCRY_THREAD_OPTION_PTHREAD, NULL, \ +- gcry_pthread_mutex_init, gcry_pthread_mutex_destroy, \ +- gcry_pthread_mutex_lock, gcry_pthread_mutex_unlock } ++{ GCRY_THREAD_OPTION_PTHREAD } + + /** Implement the locking callback functions for libgcrypt. + * |