diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2003-12-31 13:02:42 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2003-12-31 13:02:42 +0000 |
commit | f227019d02051b86446c2bdcb3ebb98ea51ea79c (patch) | |
tree | cfc188e6b7f8b56f5d956a61290718f545d50263 | |
parent | 788c430a28150dc76aa0eed401a5f939d3fcf256 (diff) | |
download | pkgsrc-f227019d02051b86446c2bdcb3ebb98ea51ea79c.tar.gz |
Update to 0.83
# Version 0.83 (released 2003-12-31) hilights:
* Mainly bugfixes.
* Added some features especially useful for public servers.
(Like server-client pinging)
-rw-r--r-- | chat/bitlbee/Makefile | 4 | ||||
-rw-r--r-- | chat/bitlbee/distinfo | 7 | ||||
-rw-r--r-- | chat/bitlbee/patches/patch-aa | 13 |
3 files changed, 19 insertions, 5 deletions
diff --git a/chat/bitlbee/Makefile b/chat/bitlbee/Makefile index 15f97f2bf9e..8b6fe2ede8f 100644 --- a/chat/bitlbee/Makefile +++ b/chat/bitlbee/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2003/12/05 23:05:58 xtraeme Exp $ +# $NetBSD: Makefile,v 1.6 2003/12/31 13:02:42 xtraeme Exp $ # -DISTNAME= bitlbee-0.82 +DISTNAME= bitlbee-0.83 CATEGORIES= chat MASTER_SITES= http://get.bitlbee.org/src/ diff --git a/chat/bitlbee/distinfo b/chat/bitlbee/distinfo index df0d1faec6e..bb316baec0b 100644 --- a/chat/bitlbee/distinfo +++ b/chat/bitlbee/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.2 2003/12/05 23:05:58 xtraeme Exp $ +$NetBSD: distinfo,v 1.3 2003/12/31 13:02:42 xtraeme Exp $ -SHA1 (bitlbee-0.82.tar.gz) = 68c4efba710db785158f35e71fe8ed35d0b08d0e -Size (bitlbee-0.82.tar.gz) = 375607 bytes +SHA1 (bitlbee-0.83.tar.gz) = f553b7b2f5dcc9d453602b99015a1573b3c63bad +Size (bitlbee-0.83.tar.gz) = 380672 bytes +SHA1 (patch-aa) = 981221178175c171914bf4ae6121633f4708a278 diff --git a/chat/bitlbee/patches/patch-aa b/chat/bitlbee/patches/patch-aa new file mode 100644 index 00000000000..af9635a66c1 --- /dev/null +++ b/chat/bitlbee/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2003/12/31 13:02:42 xtraeme Exp $ + +--- bitlbee.c.orig 2003-12-31 13:58:26.000000000 +0100 ++++ bitlbee.c 2003-12-31 13:58:41.000000000 +0100 +@@ -50,7 +50,7 @@ + memset( &sig, 0, sizeof( sig ) ); + sig.sa_handler = sighandler; + sigaction( SIGPIPE, &sig, &old ); +- sig.sa_flags = SA_ONESHOT; ++ sig.sa_flags = SA_RESETHAND; + sigaction( SIGINT, &sig, &old ); + sigaction( SIGILL, &sig, &old ); + sigaction( SIGBUS, &sig, &old ); |