Mercurial > pidgin
changeset 1551:497a074fa1c8
[gaim-migrate @ 1561]
fun stuff
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 09 Mar 2001 09:58:35 +0000 |
parents | 001a79aec218 |
children | b669f48f0990 |
files | ChangeLog configure.in gaim.spec.in plugins/jabber/jabber.c |
diffstat | 4 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Mar 09 07:52:18 2001 +0000 +++ b/ChangeLog Fri Mar 09 09:58:35 2001 +0000 @@ -1,5 +1,9 @@ GAIM: The Pimpin' Penguin IM Clone thats good for the soul! +version 0.11.0-pre7: + * Can build RPMs as non-root + * New yahoo library + version 0.11.0-pre6 (03/06/2001): * Fixed bug with NAS support * Napster plugin is included again
--- a/configure.in Fri Mar 09 07:52:18 2001 +0000 +++ b/configure.in Fri Mar 09 09:58:35 2001 +0000 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/aim.c) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE([gaim], [0.11.0pre6]) +AM_INIT_AUTOMAKE([gaim], [0.11.0pre7]) dnl Checks for programs. AM_PROG_LIBTOOL
--- a/gaim.spec.in Fri Mar 09 07:52:18 2001 +0000 +++ b/gaim.spec.in Fri Mar 09 09:58:35 2001 +0000 @@ -69,7 +69,7 @@ make %install -make prefix=$RPM_BUILD_ROOT%{prefix} sysconfdir=$RPM_BUILD_ROOT%{sysconfdir} install-strip +make DESTDIR=$RPM_BUILD_ROOT prefix=%{prefix} sysconfdir=%{sysconfdir} install-strip %files %defattr(-,root,root)
--- a/plugins/jabber/jabber.c Fri Mar 09 07:52:18 2001 +0000 +++ b/plugins/jabber/jabber.c Fri Mar 09 09:58:35 2001 +0000 @@ -328,7 +328,7 @@ buf[len] = '\0'; debug_printf("input: %s\n", buf); XML_Parse(j->parser, buf, len, 0); - } else if (len < 0) { + } else if (len <= 0) { STATE_EVT(JCONN_STATE_OFF); gjab_stop(j); }