summaryrefslogtreecommitdiff
path: root/chat/silc-client/patches
diff options
context:
space:
mode:
authorsalo <salo@pkgsrc.org>2003-01-08 23:53:53 +0000
committersalo <salo@pkgsrc.org>2003-01-08 23:53:53 +0000
commit35b6872ecabeff191f2c44004eb1ea2da56c4992 (patch)
tree803d29d7d6a5b3cdca7aec22e43b1e8d124d1480 /chat/silc-client/patches
parentee26c7d6af7041c7c81015118db27f9c423d05cf (diff)
downloadpkgsrc-35b6872ecabeff191f2c44004eb1ea2da56c4992.tar.gz
Update to version 0.9.11
IMPORTANT NOTE: This version does not include backwards support for the old style SILC private key so if you skipped 0.9.10 version you won't be able to run this client without generating new key pair. Changes between 0.9.10 and 0.9.11 ================================= * workaround a bug in GCC which causes memory exhaustion when compiling sha1 with optimizations on UltraSPARC. from openbsd * Don't display "foo appears as foo\nYou're now known as foo" messages. * Do not print the nickname in SERVER_SIGNOFF if we do not have it. Prevents asserts in Irssi core. It is possible we don't have the nick if it was just being resolved when server signoff. * Prevent endless resolving of user informations in USERS command by checking the command reply status correctly. * Don't print signed messages when sending failed. * Send adequate signal when founding a channel by joing it. * Make GETKEY to update the client entrys fingerprint too. * Fixed autonick crashbug in client library. * Fix theme abstracts parsing. * Fixed double free in SKE library error hadling when signature error occurred.
Diffstat (limited to 'chat/silc-client/patches')
-rw-r--r--chat/silc-client/patches/patch-ab39
-rw-r--r--chat/silc-client/patches/patch-ac13
2 files changed, 18 insertions, 34 deletions
diff --git a/chat/silc-client/patches/patch-ab b/chat/silc-client/patches/patch-ab
index b24a2cd64e4..a738277bbc5 100644
--- a/chat/silc-client/patches/patch-ab
+++ b/chat/silc-client/patches/patch-ab
@@ -1,22 +1,19 @@
-$NetBSD: patch-ab,v 1.7 2002/12/06 19:51:26 salo Exp $
+$NetBSD: patch-ab,v 1.8 2003/01/08 23:53:53 salo Exp $
---- lib/silcsim/Makefile.in.orig Thu Dec 5 22:39:00 2002
-+++ lib/silcsim/Makefile.in Fri Dec 6 17:48:33 2002
-@@ -561,7 +561,7 @@
- $(SIM_CIPHER_OBJS):
- @if test '!' -f lib$*.la ; then \
- $(LIBTOOL) --mode=link $(CCLD) -rpath $(silc_modulesdir) \
-- ../silccrypt/$*.lo -o lib$*.la --libtool-enable-shared; \
-+ ../silccrypt/$*.lo -o lib$*.la ; \
- cd $(srcdir) && $(LN_S) -f $(srcdir)/.libs/lib$*.so \
- $(srcdir)/$*.sim.so; \
- fi
-@@ -569,7 +569,7 @@
- $(SIM_HASH_OBJS):
- @if test '!' -f lib$*.la ; then \
- $(LIBTOOL) --mode=link $(CCLD) -rpath $(silc_modulesdir) \
-- ../silccrypt/$*.lo -o lib$*.la --libtool-enable-shared; \
-+ ../silccrypt/$*.lo -o lib$*.la ; \
- cd $(srcdir) && $(LN_S) -f $(srcdir)/.libs/lib$*.so \
- $(srcdir)/$*.sim.so; \
- fi
+--- lib/silccrypt/Makefile.in.orig Wed Jan 8 17:19:42 2003
++++ lib/silccrypt/Makefile.in Wed Jan 8 23:00:18 2003
+@@ -366,6 +366,14 @@
+ .c.obj:
+ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'`
+
++# Workaround a bug in GCC which causes momory exhaustion
++# when compiling sha1 with optimizations on UltraSPARC.
++#
++ifeq (sparc64, $(host_cpu))
++sha1.lo:
++ $(LTCOMPILE) -O0 -c -o $@ `test -f 'sha1.c' || echo '$(srcdir)/'`sha1.c
++ endif
++
+ .c.lo:
+ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+
diff --git a/chat/silc-client/patches/patch-ac b/chat/silc-client/patches/patch-ac
deleted file mode 100644
index 858b8ebf33b..00000000000
--- a/chat/silc-client/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.5 2002/12/06 19:51:26 salo Exp $
-
---- lib/silccrypt/Makefile.in.orig Thu Dec 5 22:38:58 2002
-+++ lib/silccrypt/Makefile.in Fri Dec 6 17:49:59 2002
-@@ -106,7 +106,7 @@
- CCDEPMODE = @CCDEPMODE@
-
- # Tell libtool to compile silccrypt as shared since silcsim will need it.
--CFLAGS = --libtool-enable-shared
-+#CFLAGS = --libtool-enable-shared
- CPP = @CPP@
- CPPFLAGS = @CPPFLAGS@
- CYGPATH_W = @CYGPATH_W@