diff options
Diffstat (limited to 'net-im/loudmouth/files')
-rw-r--r-- | net-im/loudmouth/files/patch-configure | 28 | ||||
-rw-r--r-- | net-im/loudmouth/files/patch-loudmouth_Makefile.in | 12 | ||||
-rw-r--r-- | net-im/loudmouth/files/patch-loudmouth_lm-error.c | 11 | ||||
-rw-r--r-- | net-im/loudmouth/files/patch-loudmouth_lm-ssl-gnutls.c | 28 |
4 files changed, 0 insertions, 79 deletions
diff --git a/net-im/loudmouth/files/patch-configure b/net-im/loudmouth/files/patch-configure deleted file mode 100644 index 2c37af283331..000000000000 --- a/net-im/loudmouth/files/patch-configure +++ /dev/null @@ -1,28 +0,0 @@ ---- configure.orig 2009-08-17 03:50:55.000000000 -0400 -+++ configure 2009-08-17 03:50:59.000000000 -0400 -@@ -21983,12 +21983,14 @@ fi - if test x$libgnutls_config_prefix != x ; then - libgnutls_config_args="$libgnutls_config_args --prefix=$libgnutls_config_prefix" - if test x${LIBGNUTLS_CONFIG+set} != xset ; then -- LIBGNUTLS_CONFIG=$libgnutls_config_prefix/bin/libgnutls-config -+ LIBGNUTLS_CONFIG=pkg-config - fi - fi - -+ libgnutls_config_args="$libgnutls_config_args gnutls" -+ - # Extract the first word of "libgnutls-config", so it can be a program name with args. --set dummy libgnutls-config; ac_word=$2 -+set dummy pkg-config; ac_word=$2 - { echo "$as_me:$LINENO: checking for $ac_word" >&5 - echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } - if test "${ac_cv_path_LIBGNUTLS_CONFIG+set}" = set; then -@@ -22037,7 +22039,7 @@ echo $ECHO_N "checking for libgnutls - v - else - LIBGNUTLS_CFLAGS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --cflags` - LIBGNUTLS_LIBS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --libs` -- libgnutls_config_version=`$LIBGNUTLS_CONFIG $libgnutls_config_args --version` -+ libgnutls_config_version=`$LIBGNUTLS_CONFIG $libgnutls_config_args --modversion` - - - ac_save_CFLAGS="$CFLAGS" diff --git a/net-im/loudmouth/files/patch-loudmouth_Makefile.in b/net-im/loudmouth/files/patch-loudmouth_Makefile.in deleted file mode 100644 index 99c8782e6ced..000000000000 --- a/net-im/loudmouth/files/patch-loudmouth_Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- loudmouth/Makefile.in.orig 2008-07-06 15:44:25.000000000 -0400 -+++ loudmouth/Makefile.in 2008-07-06 15:43:53.000000000 -0400 -@@ -306,8 +306,7 @@ libloudmouthinclude_HEADERS = \ - - libloudmouth_1_la_LIBADD = \ - $(LOUDMOUTH_LIBS) \ -- $(LIBIDN_LIBS) \ -- -lresolv -+ $(LIBIDN_LIBS) - - libloudmouth_1_la_LDFLAGS = \ - -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ diff --git a/net-im/loudmouth/files/patch-loudmouth_lm-error.c b/net-im/loudmouth/files/patch-loudmouth_lm-error.c deleted file mode 100644 index 61f65fce2447..000000000000 --- a/net-im/loudmouth/files/patch-loudmouth_lm-error.c +++ /dev/null @@ -1,11 +0,0 @@ ---- loudmouth/lm-error.c.orig 2012-05-22 10:05:29.000000000 +0200 -+++ loudmouth/lm-error.c 2012-05-22 10:05:41.000000000 +0200 -@@ -19,7 +19,7 @@ - */ - - #include <config.h> --#include <glib/gerror.h> -+#include <glib.h> - #include "lm-error.h" - - /** diff --git a/net-im/loudmouth/files/patch-loudmouth_lm-ssl-gnutls.c b/net-im/loudmouth/files/patch-loudmouth_lm-ssl-gnutls.c deleted file mode 100644 index 5a202430c684..000000000000 --- a/net-im/loudmouth/files/patch-loudmouth_lm-ssl-gnutls.c +++ /dev/null @@ -1,28 +0,0 @@ ---- loudmouth/lm-ssl-gnutls.c.orig 2010-04-17 15:56:39.000000000 -0400 -+++ loudmouth/lm-ssl-gnutls.c 2010-04-17 15:56:43.000000000 -0400 -@@ -32,7 +32,7 @@ - - #include <gnutls/x509.h> - --#define CA_PEM_FILE "/etc/ssl/certs/ca-certificates.crt" -+#define CA_PEM_FILE "%%LOCALBASE%%/share/certs/ca-root-nss.crt" - - struct _LmSSL { - LmSSLBase base; -@@ -200,6 +200,7 @@ _lm_ssl_begin (LmSSL *ssl, gint fd, cons - { GNUTLS_CRT_X509, GNUTLS_CRT_OPENPGP, 0 }; - const int compression_priority[] = - { GNUTLS_COMP_DEFLATE, GNUTLS_COMP_NULL, 0 }; -+ gnutls_priority_t priorities_cache; - - gnutls_init (&ssl->gnutls_session, GNUTLS_CLIENT); - gnutls_set_default_priority (ssl->gnutls_session); -@@ -213,6 +214,8 @@ _lm_ssl_begin (LmSSL *ssl, gint fd, cons - - gnutls_transport_set_ptr (ssl->gnutls_session, - (gnutls_transport_ptr_t)(glong) fd); -+ gnutls_priority_init (&priorities_cache, "NONE:+VERS-TLS1.0:+AES-128-CBC:+RSA:+SHA1:+COMP-NULL:NORMAL:%COMPAT", NULL); -+ gnutls_priority_set (ssl->gnutls_session, priorities_cache); - - ret = gnutls_handshake (ssl->gnutls_session); - |