Skip to content

Commit

Permalink
Update to 1.0.17
Browse files Browse the repository at this point in the history
Change log:


v1.0.17 -- 23 Aug 2016
----------------------
Note: This release is not binary compatible with previous releases.
It is source compatible.

- MingW compile fixes (thanks to Florian Niebel)
- properly use winsock2 (thanks to Kau)
- a few fixes for uclibc++ compatibility (thanks to Erik Horemans)
- Message: removed bogus hard-coded namespace to fix component use



v1.0.16 -- 16 Jul 2016
----------------------
- PubSubManager: properly include publish options (thanks to Iban Ulov)
- PubSubManager: properly parse subscriptions in ctor (thanks to Joe Best)
- Resource: fixed high memory usage when receiving presence stanzas
  (#259) (thanks to Manuel)



v1.0.15 -- 25 Apr 2016
----------------------
- Error: fix copy ctor (thanks to Olivier Tchilinguirian)
- ClientBase: properly fix handling of MUC invitation declines
  (wrong in 1.0.14) (thanks to Martin Hillmeier and Matias Snellingen)
  (#248)
- MUCRoom: handle SendRoomConfig (thanks to Matias Snellingen) (#253)
- soversion bump, missed that for 1.0.14 (thanks to Vincent Cheng)
- TLSGNUTLSClient: fixed off-by-one error in certificate verification
- IPv6 fixes



v1.0.14 -- 11 Aug 2015
----------------------
Note: This release is not binary compatible with previous releases.
It is source compatible.

- IOData: make it possible to pass more than one element as in/out/error data
- Client: fix resetting of presence status text
- TLSSChannel: fix memory leak (thanks to Alexander Weisner)
- Error: added setAppError() to set application-specific error message
- PubSub::Item: added setPayload(), setID()
- Adhoc: return clone of plugin
- PubSub::Manager: fix finding of subscription type (thanks to BillHoo)
- ChatStateFilter: fix enable logic (thanks to Ivan Shmakov)
- MessageEvent: added parsing of <id/> (thanks to Ivan Shmakov)
- MessageEvent: added id() (thanks to Ivan Shmakov)
- ClientBase: handle MUC invitation declines properly (thanks to
  Matias Snellingen)
- DNS: IPv6 fix (thanks to garimacoe) (#249)
- DelayedDelivery: propagate internal state properly (#251)
- PubSub::Manager: fix GetSubscriberList and GetAffiliateList
  • Loading branch information
schnoebe committed Aug 30, 2016
1 parent bcfc99a commit f2512b2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
5 changes: 2 additions & 3 deletions chat/gloox/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.14 2016/03/05 11:28:07 jperkin Exp $
# $NetBSD: Makefile,v 1.15 2016/08/30 15:20:47 schnoebe Exp $

DISTNAME= gloox-1.0.13
PKGREVISION= 1
DISTNAME= gloox-1.0.17
CATEGORIES= chat
MASTER_SITES= http://camaya.net/download/
EXTRACT_SUFX= .tar.bz2
Expand Down
13 changes: 6 additions & 7 deletions chat/gloox/distinfo
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
$NetBSD: distinfo,v 1.8 2015/11/03 01:20:19 agc Exp $
$NetBSD: distinfo,v 1.9 2016/08/30 15:20:47 schnoebe Exp $

SHA1 (gloox-1.0.13.tar.bz2) = 735c0507f4ac45e6990528fab6afc45f9cabcc3a
RMD160 (gloox-1.0.13.tar.bz2) = d10cebe8962211c4bd070eb847076fc7dc56ccc7
SHA512 (gloox-1.0.13.tar.bz2) = 9f9773a5c3d2ae8a4eec6e8365c8578c089004d0f5101c2e8a8bf96ac8e8b6a08cf4e92f93afb8d07af0e8cc2c238c12f4f8df75a81c2a06dfb039c1d4ae850a
Size (gloox-1.0.13.tar.bz2) = 675842 bytes
SHA1 (gloox-1.0.17.tar.bz2) = 1bee3ef9e8f1a098032227a7ce13014444014d9e
RMD160 (gloox-1.0.17.tar.bz2) = 1051a978ad1c5462c43b56302cf323ad333c0d34
SHA512 (gloox-1.0.17.tar.bz2) = 8595586da391fa23f54eff7c8eb514e7000d3569eac3846edc28da02ec2da409f46013de93dd6d4b5185965675fc22ff2c96f031afa581e2d9243469b1b419f2
Size (gloox-1.0.17.tar.bz2) = 698239 bytes
SHA1 (patch-configure) = b14cc132665cbcb722589007c36767c0ddfab25f
SHA1 (patch-src_connectiontcpbase.cpp) = de9f367b91de7b4efd9ac7a3da463d3d32e5bdf0
SHA1 (patch-src_connectiontcpserver.cpp) = 720129dfcdff5a7ebb70bbf378c9ca3e5dfaabae
SHA1 (patch-src_connectiontcpserver.cpp) = 17ad7a3b1a9ba47153b72e8b924052e3faf3d09f
SHA1 (patch-src_dns.cpp) = dfc538e9a059b06b6222c3dffe879105701d504c
SHA1 (patch-src_examples_e2ee__client.cpp) = 3a28030733fca789769c9361fe21b586aebe1370
SHA1 (patch-src_examples_e2ee__server.cpp) = eb8c22427def85387b9bf88b665feb1315df878f
Expand Down
21 changes: 12 additions & 9 deletions chat/gloox/patches/patch-src_connectiontcpserver.cpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
$NetBSD: patch-src_connectiontcpserver.cpp,v 1.2 2011/11/25 21:31:13 joerg Exp $
$NetBSD: patch-src_connectiontcpserver.cpp,v 1.3 2016/08/30 15:20:47 schnoebe Exp $

--- src/connectiontcpserver.cpp.orig 2009-10-12 16:40:41.000000000 +0000
Make sure string.h is included for memset and friends.
Assume it's needed for all non-_WIN32_CE operating systems.
(hmm, this should probably be determined by configure, and handled in config.h)
--- src/connectiontcpserver.cpp.orig 2016-08-23 13:55:51.000000000 +0000
+++ src/connectiontcpserver.cpp
@@ -23,6 +23,8 @@
#include "mutexguard.h"
#include "util.h"
@@ -55,6 +55,7 @@
+#include <string.h>
+
#ifdef __MINGW32__
# include <winsock.h>
#ifndef _WIN32_WCE
# include <sys/types.h>
+# include <string.h>
#endif
// remove for 1.1

0 comments on commit f2512b2

Please sign in to comment.