upgrade to gaim 0.71
This commit is contained in:
parent
8df5cb0c0a
commit
a4a653aa3a
@ -1,6 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.46 2003/09/30 01:04:15 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.47 2003/10/12 02:20:43 brad Exp $
|
||||
|
||||
DISTNAME= gaim-0.70
|
||||
DISTNAME= gaim-0.71
|
||||
CATEGORIES= net
|
||||
|
||||
# GPL
|
||||
@ -17,7 +17,8 @@ MAINTAINER= Brad Smith <brad@openbsd.org>
|
||||
|
||||
MODULES= gettext
|
||||
|
||||
LIB_DEPENDS+= gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2
|
||||
LIB_DEPENDS+= gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 \
|
||||
gnutls::security/gnutls
|
||||
BUILD_DEPENDS+= :pkgconfig-*:devel/pkgconfig
|
||||
|
||||
USE_X11= Yes
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (gaim-0.70.tar.gz) = bea0c12ad4229be893b4b28ee6e4e929
|
||||
RMD160 (gaim-0.70.tar.gz) = 74b355e082a812ada80a531afe5c635d9cd6a30f
|
||||
SHA1 (gaim-0.70.tar.gz) = 36eff37c86abcaaf7a78bdefacf8e4b84738d085
|
||||
MD5 (gaim-0.71.tar.gz) = 7efd5ea5ddf61371745533f878c6675d
|
||||
RMD160 (gaim-0.71.tar.gz) = 17fc6e61a1a43c4b97a83e6917062259bfd81451
|
||||
SHA1 (gaim-0.71.tar.gz) = 3a4e1e7c07c9c7fa847d36568c5db73bda535b15
|
||||
|
@ -1,19 +0,0 @@
|
||||
$OpenBSD: patch-src_protocols_yahoo_yahoo_c,v 1.1 2003/09/30 01:04:15 brad Exp $
|
||||
--- src/protocols/yahoo/yahoo.c.orig 2003-09-29 19:42:37.000000000 -0400
|
||||
+++ src/protocols/yahoo/yahoo.c 2003-09-29 19:43:57.000000000 -0400
|
||||
@@ -1161,10 +1161,12 @@ static void yahoo_process_auth_new(GaimC
|
||||
|
||||
times++;
|
||||
}
|
||||
-
|
||||
+
|
||||
/* Dump magic key into a char for SHA1 action. */
|
||||
-
|
||||
- memcpy(&magic_key_char[0], &value, sizeof(int));
|
||||
+ magic_key_char[0] = value & 0xff;
|
||||
+ magic_key_char[1] = (value >> 8) & 0xff;
|
||||
+ magic_key_char[2] = (value >> 16) & 0xff;
|
||||
+ magic_key_char[3] = (value >> 24) & 0xff;
|
||||
|
||||
/* Get password and crypt hashes as per usual. */
|
||||
md5_init(&ctx);
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.18 2003/09/30 01:04:15 brad Exp $
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.19 2003/10/12 02:20:44 brad Exp $
|
||||
lib/gaim/autorecon.so
|
||||
lib/gaim/docklet.so
|
||||
lib/gaim/gaim-remote.so
|
||||
@ -17,6 +17,9 @@ lib/gaim/libyahoo.so
|
||||
lib/gaim/libzephyr.so
|
||||
lib/gaim/notify.so
|
||||
lib/gaim/spellchk.so
|
||||
lib/gaim/ssl-gnutls.so
|
||||
@comment lib/gaim/ssl-nss.so
|
||||
lib/gaim/ssl.so
|
||||
lib/gaim/statenotify.so
|
||||
lib/gaim/ticker.so
|
||||
lib/gaim/timestamp.so
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.23 2003/09/26 23:57:57 brad Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.24 2003/10/12 02:20:44 brad Exp $
|
||||
bin/gaim
|
||||
bin/gaim-remote
|
||||
include/gaim-remote/remote-socket.h
|
||||
@ -21,6 +21,9 @@ include/gaim-remote/remote.h
|
||||
@comment lib/gaim/libzephyr.la
|
||||
@comment lib/gaim/notify.la
|
||||
@comment lib/gaim/spellchk.la
|
||||
@comment lib/gaim/ssl-gnutls.la
|
||||
@comment lib/gaim/ssl-nss.la
|
||||
@comment lib/gaim/ssl.la
|
||||
@comment lib/gaim/statenotify.la
|
||||
@comment lib/gaim/ticker.la
|
||||
@comment lib/gaim/timestamp.la
|
||||
|
Loading…
x
Reference in New Issue
Block a user