head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.2 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.1.0.4 pkgsrc-2012Q4-base:1.1 pkgsrc-2012Q3:1.1.0.2 pkgsrc-2012Q3-base:1.1; locks; strict; comment @// @; 1.2 date 2013.01.27.00.18.29; author wiz; state dead; branches; next 1.1; 1.1 date 2012.07.09.19.06.54; author joerg; state Exp; branches; next ; desc @@ 1.2 log @Remove nucleo and metisse. Nucleo doesn't build against any ffmpeg in pkgsrc, and the last release 0.7.6 (this was 0.7.5) is from 2009, so development seems to have stopped. @ text @$NetBSD: patch-nucleo_network_xmpp_XmppConnection.cxx,v 1.1 2012/07/09 19:06:54 joerg Exp $ --- nucleo/network/xmpp/XmppConnection.cxx.orig 2012-07-06 13:25:25.000000000 +0000 +++ nucleo/network/xmpp/XmppConnection.cxx @@@@ -616,14 +616,16 @@@@ namespace nucleo { // ----------------------------------------------------------------------------------------- XmlParser::InBox::iterator - XmppConnection::waitFor(long milliseconds, cistring tagname, ...) { + XmppConnection::waitFor(long milliseconds, const char *tagname_, ...) { if (!connection) return inbox.end() ; + cistring tagname(tagname_); + waiting++ ; // Stop notifying observers right now std::list attribs ; va_list ap ; - va_start(ap,tagname) ; + va_start(ap,tagname_) ; for (char *key=va_arg(ap, char*); key; key=va_arg(ap, char*)) attribs.push_back(XmlStructure::KeyValuePair(key, va_arg(ap, char*))) ; va_end(ap) ; @ 1.1 log @Using non-POD types as arguments for variadic functions is invalid. @ text @d1 1 a1 1 $NetBSD$ @