diff options
author | salo <salo@pkgsrc.org> | 2002-11-21 15:42:45 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2002-11-21 15:42:45 +0000 |
commit | 7fa14c31b7fa4fb0a049447473d5d285a3f9cbc4 (patch) | |
tree | ec75551ef00b067aa40334f84d703462bb279f28 /chat/silc-server/Makefile | |
parent | c41dd0cca9f09711250023556cdf2f109c759abb (diff) | |
download | pkgsrc-7fa14c31b7fa4fb0a049447473d5d285a3f9cbc4.tar.gz |
update to version 0.9.8
Changes from 0.9.5 to 0.9.8
===========================
* Added support for aborting automatically pending commands
that never receives the reply (to avoid memory leaks).
* Added support for removing explicitly added client connections
in rehash and closing the client connections if they were
unconfigured in the rehash.
* Rewrote WHOIS, WHOWAS and IDENTIFY commands in the server.
* If packet processing fails (like integrity check fails)
the connection is closed now.
* Normal server now reconnects to backup router automatically
if connection is lost to it.
* Added support for replying on behalf of the user to the
Requested Attributes in WHOIS command in the server.
* Failed OPER and SILCOPER authentications are now logged.
* Added sort-of "Quality of Service" (QoS) support. Data
reception can be controlled with rate limit per second
and/or read data length limit.
* 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.
* Resumed client packet handling from server put the resumed
client on wrong list on router and caused the client not be
present on the network anymore.
* Various cleanup in error message output in config parsing code
and in server init code. Fixed error log files containing too
many newlines in some situations.
* Assure that channel key is set before sending it. May crash
server otherwise.
* Don't swtich to become primary router if we are backup if
decryption error has occurred.
* Fixed a bug in backup router IP address comparison
* Fixed a crashbug in incoming server accepting.
* Fixed packet decryption problem when backup router encrypted
channel message with wrong key during backup resuming protocol.
* Fixed memory leaks in server.
* Fixed channel key packet processing bug on backup router
during backup resuming protocol.
Diffstat (limited to 'chat/silc-server/Makefile')
-rw-r--r-- | chat/silc-server/Makefile | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/chat/silc-server/Makefile b/chat/silc-server/Makefile index bfe37b977a0..c8b3b3975fc 100644 --- a/chat/silc-server/Makefile +++ b/chat/silc-server/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2002/09/19 09:04:04 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2002/11/21 15:42:45 salo Exp $ -DISTNAME= silc-server-0.9.5 +DISTNAME= silc-server-0.9.8 CATEGORIES= chat security MASTER_SITES= http://www.silcnet.org/download/server/sources/ \ ftp://ftp.silcnet.org/silc/server/sources/ \ @@ -11,7 +11,7 @@ MASTER_SITES= http://www.silcnet.org/download/server/sources/ \ http://www.at.silcnet.org/download/server/sources/ EXTRACT_SUFX= .tar.bz2 -MAINTAINER= salo@silcnet.org +MAINTAINER= salo@netbsd.org HOMEPAGE= http://www.silcnet.org/ COMMENT= Server for the Secure Internet Live Conferencing (SILC) protocol @@ -50,6 +50,7 @@ RCD_SCRIPT_SRC.silcd= ${FILESDIR}/silcd.generic OWN_DIRS_PERMS+= /var/log/silcd ${SILCD_USER} ${SILCD_GROUP} 0700 +CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/silcd CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/silcd CONFIGURE_ARGS+= --with-etcdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-silcd-config-file=${PKG_SYSCONFDIR}/silcd.conf @@ -70,6 +71,17 @@ CONFIGURE_ARGS+= --enable-ipv6 CONFIGURE_ARGS+= --disable-asm .endif +# Temporary hack which prevents installation of static libraries +# +post-build: + for file in \ + ${WRKSRC}/lib/libsilc.la \ + ${WRKSRC}/lib/.libs/libsilc.la ; \ + do \ + ${CP} $$file $$file.orig ; \ + ${SED} "s|^old_library|#&|" $$file.orig > $$file ; \ + done + post-install: @${SED} ${FILES_SUBST_SED} ${FILESDIR}/motd.txt \ > ${PREFIX}/share/examples/silcd/motd.txt.default |