head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.54 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.52 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.50 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.48 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.2.0.46 pkgsrc-2009Q4-base:1.2 pkgsrc-2008Q4:1.2.0.44 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.42 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.40 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.38 pkgsrc-2008Q2-base:1.2 pkgsrc-2008Q1:1.2.0.36 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.34 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.32 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.30 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.28 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.26 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.24 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.22 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.20 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.18 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.16 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.14 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.12 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.10 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.8 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.6 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.4 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.2.0.2 pkgsrc-2003Q4-base:1.2 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.2 date 2003.08.26.09.53.39; author jmmv; state dead; branches; next 1.1; 1.1 date 2003.06.03.09.17.21; author jmmv; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2003.06.03.09.17.21; author jmmv; state Exp; branches; next ; desc @@ 1.2 log @Update to 1.4.3: malware's contributions: * SECURITY: Removed possible format string exploits. * FIXED: statistics color saving/loading. * FIXED: a possibly exploitable bug as noticed by S. Esser from e-matters. * FIXED: exception handling for CString/wxString. * FIXED: endless loop in CClientUDPSocket::OnSend(). * FIXED: fatal exception handler not to fail in early stages. * FIXED: endless loop in CListenSocket::KillAllSockets(). * FIXED: Lagloose's Shift+Doubleclick to show really only transfering sources. Update still does not work. * Decode %-escaped characters in URL within the ed2k application as suggested by __JusSx__. NetBSD team's contributions: * Work-around not to unlock mutexes not locked. * Try to increase some resource limits to the permitted maximum. * FIXED: bug with the mutex protecting calls to gethostbyname. Un-Thesis' contributions: * Added support for adding multiple ED2K links. * Added ED2K link support for GTK2. FooMan's contributions: * FIXED: for failing file access during download completion. @ text @$NetBSD: patch-ag,v 1.1 2003/06/03 09:17:21 jmmv Exp $ --- src/UDPSocket.cpp.orig 2003-05-26 05:30:05.000000000 +0200 +++ src/UDPSocket.cpp 2003-06-01 11:36:08.000000000 +0200 @@@@ -25,7 +25,7 @@@@ static pthread_attr_t attr;//=PTHREAD_CREATE_DETACHED; #if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) - static wxMutex *s_mutexProtectingGetHostByName; + static wxMutex s_mutexProtectingGetHostByName; static int convert (struct hostent *host, struct hostent *result, @@@@ -131,7 +131,7 @@@@ { struct hostent *host; - s_mutexProtectingGetHostByName->Lock(); + s_mutexProtectingGetHostByName.Lock(); host = gethostbyname (name); if (!host || @@@@ -140,7 +140,7 @@@@ result = NULL; } - s_mutexProtectingGetHostByName->Unlock(); + s_mutexProtectingGetHostByName.Unlock(); return result; } @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ @ 1.1.1.1 log @Initial import of xmule, version 1.4.0: xMule is an easy to use multi-platform client for the ED2K Peer-to-Peer Network. It was originally based on eMule, the popular windows-only client for the same network. It uses the wxWindows class library. Some of its features include Movie Preview, GTK2 Compatibility, Multi-Selection in all lists, Tray-icon, Statistics, Source Exchange, File Commenting any many more. Based on the package provided in pkgsrc-wip by Marc Recht and one provided by Pablo Méndez in private mail. Obsoletes lmule. @ text @@