diff options
author | salo <salo@pkgsrc.org> | 2002-11-21 15:40:14 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2002-11-21 15:40:14 +0000 |
commit | c41dd0cca9f09711250023556cdf2f109c759abb (patch) | |
tree | 123b68e0916f9e9c45d84a56814fc40a187fee20 /chat/silc-client/patches | |
parent | 176416a827486bb67189c91d09cfeccd480cbe31 (diff) | |
download | pkgsrc-c41dd0cca9f09711250023556cdf2f109c759abb.tar.gz |
update to version 0.9.8
Changes between 0.9.5.1 and 0.9.8
=================================
* Added STATS command.
* Added Requested Attributes support.
* Added -details option to WHOIS command to support the requested
attributes. By default it requests all attributes.
* Added implementation of VCard (RFC 2426) which can be used as
part of Requested Attributes in WHOIS command.
* Added ATTR command which is used to manage user's Requested
Attributes sending and values for WHOIS command.
* Added support for saving the requested attributes in WHOIS to
directory.
* Added support for auto-passphrase authentication from the config
file during connecting which was not implemented yet.
* Added shared library complation support.
* Added support for encrypted private key files. Now passphrase
must be provided when new key pair is created and prompted when
loading the private key.
* Added -P option which can be used to change the passphrase of
the private key.
* UTF-8 decode the topic in TOPIC command reply and LIST command
reply.
* Added manpage for silc(1).
* Fixed string formatting crashbug in lib/silccore/silcattrs.c
* Fixed double free in RSA public key set function.
* Fixed a bug in authentication protocol failure handling which
was processing wrong callback context.
* Merged DISCONNECT fix, and autoconn port fix from Irssi CVS.
* Merged c0ffee's /set heartbeat patch and fixed the heartbeat
sending.
* Fixed connection closing in client library to not crash.
* Fixed the INVITE command to not crash client when given without
nickname argument.
Diffstat (limited to 'chat/silc-client/patches')
-rw-r--r-- | chat/silc-client/patches/patch-aa | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/chat/silc-client/patches/patch-aa b/chat/silc-client/patches/patch-aa index 358c924d35a..b3fc5272db3 100644 --- a/chat/silc-client/patches/patch-aa +++ b/chat/silc-client/patches/patch-aa @@ -1,27 +1,33 @@ -$NetBSD: patch-aa,v 1.7 2002/05/03 21:51:57 hubertf Exp $ +$NetBSD: patch-aa,v 1.8 2002/11/21 15:40:15 salo Exp $ ---- Makefile.in.orig Tue Apr 16 18:30:05 2002 -+++ Makefile.in Wed May 1 15:18:56 2002 -@@ -531,7 +531,6 @@ +--- Makefile.in.orig Wed Nov 6 16:40:28 2002 ++++ Makefile.in Wed Nov 13 01:14:19 2002 +@@ -697,10 +697,7 @@ -mkdir -p $(modulesdir) -mkdir -p $(helpdir) -mkdir -p $(docdir) - -mkdir -p $(logsdir) + -mkdir -p $(manualdir)/man1 +- -mkdir -p $(manualdir)/man5 +- -mkdir -p $(manualdir)/man8 generate-server-key: -@if test '!' -f $(etcdir)/silcd.pub ; then \ -@@ -544,8 +543,7 @@ +@@ -713,11 +710,8 @@ doc-install: - $(INSTALL_DATA) $(srcdir)/doc/CodingStyle $(docdir)/ - $(INSTALL_DATA) $(srcdir)/doc/FAQ $(docdir)/ -- $(INSTALL_DATA) $(srcdir)/doc/example_* $(docdir)/ -- $(INSTALL_DATA) $(srcdir)/doc/*.txt $(docdir)/ -+ $(INSTALL_DATA) $(srcdir)/irssi/silc.conf $(docdir)/silc.conf.default - $(INSTALL_DATA) $(srcdir)/COPYING $(docdir)/ - $(INSTALL_DATA) $(srcdir)/CHANGES $(docdir)/ - $(INSTALL_DATA) $(srcdir)/CREDITS $(docdir)/ -@@ -565,13 +563,6 @@ - $(INSTALL_DATA) $(srcdir)/doc/examples/cell* $(docdir)/examples/ + -$(INSTALL_DATA) $(srcdir)/doc/CodingStyle $(docdir)/ + -$(INSTALL_DATA) $(srcdir)/doc/FAQ $(docdir)/ +- -$(INSTALL_DATA) $(srcdir)/doc/example_* $(docdir)/ +- -$(INSTALL_DATA) $(srcdir)/doc/*.txt $(docdir)/ ++ -$(INSTALL_DATA) $(srcdir)/irssi/silc.conf $(docdir)/silc.conf.default + -$(INSTALL_DATA) $(srcdir)/doc/silc.1 $(manualdir)/man1 +- -$(INSTALL_DATA) $(srcdir)/doc/silcd.8 $(manualdir)/man8; +- -$(INSTALL_DATA) $(srcdir)/doc/silcd.conf.5 $(manualdir)/man5; + -$(INSTALL_DATA) $(srcdir)/COPYING $(docdir)/ + -$(INSTALL_DATA) $(srcdir)/CHANGES $(docdir)/ + -$(INSTALL_DATA) $(srcdir)/CREDITS $(docdir)/ +@@ -737,13 +731,6 @@ + -$(INSTALL_DATA) $(srcdir)/doc/examples/silc* $(docdir)/examples/ etc-install: - -@if test '!' -f $(etcdir)/silcd.conf ; then \ @@ -31,6 +37,6 @@ $NetBSD: patch-aa,v 1.7 2002/05/03 21:51:57 hubertf Exp $ - $(etcdir)/silcalgs.conf; \ - chmod go= $(etcdir)/silcd.conf; \ - fi - -@if test '!' -f $(etcdir)/silc.conf ; then \ - $(INSTALL_DATA) $(srcdir)/irssi/silc.conf \ - $(etcdir)/silc.conf; \ + -@if test '!' -d $(srcdir)/irssi ; then \ + if test '!' -f $(etcdir)/silc.conf ; then \ + $(INSTALL_DATA) $(srcdir)/irssi/silc.conf \ |