pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/lopster Fix compile problem on current, based on a...
details: https://anonhg.NetBSD.org/pkgsrc/rev/c10edbaa1a9d
branches: trunk
changeset: 523351:c10edbaa1a9d
user: veego <veego%pkgsrc.org@localhost>
date: Sat Jan 06 18:20:28 2007 +0000
description:
Fix compile problem on current, based on an 2 year old patch from the
sourceforge cvs repository. Bump PKGREVISION.
diffstat:
net/lopster/Makefile | 4 ++--
net/lopster/distinfo | 3 ++-
net/lopster/patches/patch-ad | 22 ++++++++++++++++++++++
3 files changed, 26 insertions(+), 3 deletions(-)
diffs (53 lines):
diff -r 4a9dea30e46d -r c10edbaa1a9d net/lopster/Makefile
--- a/net/lopster/Makefile Sat Jan 06 17:45:26 2007 +0000
+++ b/net/lopster/Makefile Sat Jan 06 18:20:28 2007 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.20 2006/04/22 16:44:25 joerg Exp $
+# $NetBSD: Makefile,v 1.21 2007/01/06 18:20:28 veego Exp $
#
DISTNAME= lopster-1.2.2
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=lopster/}
diff -r 4a9dea30e46d -r c10edbaa1a9d net/lopster/distinfo
--- a/net/lopster/distinfo Sat Jan 06 17:45:26 2007 +0000
+++ b/net/lopster/distinfo Sat Jan 06 18:20:28 2007 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.6 2006/04/17 18:27:19 rpaulo Exp $
+$NetBSD: distinfo,v 1.7 2007/01/06 18:20:28 veego Exp $
SHA1 (lopster-1.2.2.tar.gz) = 27655baa659e748406326bcac4e6b94b8982f258
RMD160 (lopster-1.2.2.tar.gz) = 60b236962d3b3cf998a56aa7b087381349b9e610
Size (lopster-1.2.2.tar.gz) = 630325 bytes
SHA1 (patch-ab) = 8a1c769b579d74f6e54b1d0e8fbe9b38066c0ba8
SHA1 (patch-ac) = bab2e1cba16d44fa036d099f4c39713592fa1e8b
+SHA1 (patch-ad) = 7129a55bd4fbfb5702586b9fac99028b473a5d6c
diff -r 4a9dea30e46d -r c10edbaa1a9d net/lopster/patches/patch-ad
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/lopster/patches/patch-ad Sat Jan 06 18:20:28 2007 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ad,v 1.4 2007/01/06 18:20:28 veego Exp $
+
+Patch from sourceforge cvs tree. revision 1.48
+
+--- src/log.c.orig 2004-01-11 16:50:30.000000000 +0100
++++ src/log.c 2005-05-23 00:27:48.000000000 +0200
+@@ -147,8 +147,13 @@
+ g_free(log->description);
+ g_free(log);
+ }
+- g_list_free(net?net->logs:other_logs);
+- net?net->logs:other_logs = NULL;
++ if (net) {
++ g_list_free(net->logs);
++ net->logs = NULL;
++ } else {
++ g_list_free(other_logs);
++ other_logs = NULL;
++ }
+ }
+
+ void log_file_destroy(log_file_t* lf) {
Home |
Main Index |
Thread Index |
Old Index