GnuTLS LZO support was removed in version 3.0.0. Based on the patch by Andreas Metzler <ametz...@debian.org>: http://sources.debian.net/src/wmbiff/0.4.27-2.3/debian/patches/15_no_more_LZO.diff/
For more information, see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638736 --- wmbiff/wmbiff/gnutls-common.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wmbiff/wmbiff/gnutls-common.c b/wmbiff/wmbiff/gnutls-common.c index 4f3cc7a..17c8f7e 100644 --- a/wmbiff/wmbiff/gnutls-common.c +++ b/wmbiff/wmbiff/gnutls-common.c @@ -4,7 +4,6 @@ #include <stdlib.h> #include <string.h> #include <gnutls/gnutls.h> -#include <gnutls/extra.h> #include <gnutls/x509.h> #include <gnutls/openpgp.h> #include <time.h> @@ -513,7 +512,6 @@ void print_list(void) printf("Compression methods:"); printf(" ZLIB"); - printf(", LZO"); printf(", NULL\n"); } @@ -641,8 +639,6 @@ void parse_comp(char **comp, int ncomp, int *comp_priority) comp_priority[j++] = GNUTLS_COMP_NULL; if (strncasecmp(comp[i], "ZLI", 3) == 0) comp_priority[j++] = GNUTLS_COMP_ZLIB; - if (strncasecmp(comp[i], "LZO", 3) == 0) - comp_priority[j++] = GNUTLS_COMP_LZO; } comp_priority[j] = 0; } -- 2.1.0 -- To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.