diff options
author | Ashish SHUKLA <ashish@FreeBSD.org> | 2011-07-18 07:22:22 +0000 |
---|---|---|
committer | Ashish SHUKLA <ashish@FreeBSD.org> | 2011-07-18 07:22:22 +0000 |
commit | 1ad295db1c3c802a2129867125d2db9bd9bd8458 (patch) | |
tree | d3c00ff8c6794532f77f43aa8112d3a7813e8865 /irc/ctrlproxy/files | |
parent | Undelete ftp/mirror. (diff) |
- Fix building of port due to gnutls update which removes gcrypt support
- Update MASTER_SITES with updated location of distfiles
- Fix pkg-plist
PR: ports/158978
Notes
Notes:
svn path=/head/; revision=277888
Diffstat (limited to 'irc/ctrlproxy/files')
-rw-r--r-- | irc/ctrlproxy/files/patch-src_gnutls.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/irc/ctrlproxy/files/patch-src_gnutls.c b/irc/ctrlproxy/files/patch-src_gnutls.c new file mode 100644 index 000000000000..78dc64b7977b --- /dev/null +++ b/irc/ctrlproxy/files/patch-src_gnutls.c @@ -0,0 +1,23 @@ + +$FreeBSD$ + +--- src/gnutls.c.orig ++++ src/gnutls.c +@@ -18,7 +18,6 @@ + + #include <glib.h> + +-#include <gcrypt.h> + #include <gnutls/gnutls.h> + #include <gnutls/x509.h> + +@@ -452,9 +451,6 @@ + static void + _gnutls_init (void) + { +- /* to disallow usage of the blocking /dev/random */ +- gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0); +- + gnutls_global_init (); + gnutls_inited = TRUE; + } |