diff options
author | Marinus Schraal <foser@gentoo.org> | 2006-04-05 13:27:39 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2006-04-05 13:27:39 +0000 |
commit | 4917ca973cd76321cdf8c8479e7b9608cacc34f6 (patch) | |
tree | 751e78211cf4561c414d64d14d7dee5fd271c459 /net-libs/loudmouth/files | |
parent | Re-apply fixes for modular X setups, libxslt dependency and ~x86-fbsd keyword. (diff) | |
download | gentoo-2-4917ca973cd76321cdf8c8479e7b9608cacc34f6.tar.gz gentoo-2-4917ca973cd76321cdf8c8479e7b9608cacc34f6.tar.bz2 gentoo-2-4917ca973cd76321cdf8c8479e7b9608cacc34f6.zip |
bugfix release
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'net-libs/loudmouth/files')
5 files changed, 52 insertions, 3 deletions
diff --git a/net-libs/loudmouth/files/digest-loudmouth-0.16 b/net-libs/loudmouth/files/digest-loudmouth-0.16 deleted file mode 100644 index ae83bb13846a..000000000000 --- a/net-libs/loudmouth/files/digest-loudmouth-0.16 +++ /dev/null @@ -1 +0,0 @@ -MD5 58bfa1b2ef244c6fd5f69cce7faa4cf5 loudmouth-0.16.tar.bz2 280909 diff --git a/net-libs/loudmouth/files/digest-loudmouth-0.17.1 b/net-libs/loudmouth/files/digest-loudmouth-0.17.1 deleted file mode 100644 index 06610243ed11..000000000000 --- a/net-libs/loudmouth/files/digest-loudmouth-0.17.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 e089cf0843c4b5069d49d1a9ee067a14 loudmouth-0.17.1.tar.bz2 283627 diff --git a/net-libs/loudmouth/files/digest-loudmouth-0.17.2 b/net-libs/loudmouth/files/digest-loudmouth-0.17.2 deleted file mode 100644 index ac92b907b1a2..000000000000 --- a/net-libs/loudmouth/files/digest-loudmouth-0.17.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 db5dd069f3c7de18d5347ebaaee4ad61 loudmouth-0.17.2.tar.bz2 286981 diff --git a/net-libs/loudmouth/files/digest-loudmouth-1.0.2 b/net-libs/loudmouth/files/digest-loudmouth-1.0.2 new file mode 100644 index 000000000000..da5cf690c990 --- /dev/null +++ b/net-libs/loudmouth/files/digest-loudmouth-1.0.2 @@ -0,0 +1,3 @@ +MD5 c7726a7b6f36a9d3bde89084f2ad5485 loudmouth-1.0.2.tar.bz2 304321 +RMD160 d20eaf3705349725ef471bfd2ab0edffa24d2dce loudmouth-1.0.2.tar.bz2 304321 +SHA256 9e97dc28657fe3e05ab7f314411e1bbf0cfb8a36d49a65f44769657f02ffec3e loudmouth-1.0.2.tar.bz2 304321 diff --git a/net-libs/loudmouth/files/loudmouth-1.0.2-build_without_ssl.patch b/net-libs/loudmouth/files/loudmouth-1.0.2-build_without_ssl.patch new file mode 100644 index 000000000000..6bbffa7634bb --- /dev/null +++ b/net-libs/loudmouth/files/loudmouth-1.0.2-build_without_ssl.patch @@ -0,0 +1,49 @@ +--- loudmouth/lm-ssl.c~ 2006-04-03 17:01:39.000000000 +0200 ++++ loudmouth/lm-ssl.c 2006-04-05 14:06:05.000000000 +0200 +@@ -47,13 +47,14 @@ + + static void ssl_free (LmSSL *ssl); + +-#ifdef HAVE_GNUTLS +-static gboolean ssl_verify_certificate (LmSSL *ssl, +- const gchar *server); + static LmSSLResponse ssl_func_always_continue (LmSSL *ssl, + LmSSLStatus status, + gpointer user_data); + ++#ifdef HAVE_GNUTLS ++static gboolean ssl_verify_certificate (LmSSL *ssl, ++ const gchar *server); ++ + static gboolean + ssl_verify_certificate (LmSSL *ssl, const gchar *server) + { +@@ -148,13 +149,7 @@ + return TRUE; + } + +-static LmSSLResponse +-ssl_func_always_continue (LmSSL *ssl, +- LmSSLStatus status, +- gpointer user_data) +-{ +- return LM_SSL_RESPONSE_CONTINUE;; +-} ++ + + void + _lm_ssl_initialize (LmSSL *ssl) +@@ -263,6 +258,13 @@ + } + #endif + ++static LmSSLResponse ++ssl_func_always_continue (LmSSL *ssl, ++ LmSSLStatus status, ++ gpointer user_data) ++{ ++ return LM_SSL_RESPONSE_CONTINUE;; ++} + + static void + ssl_free (LmSSL *ssl) |