Your message dated Wed, 28 Sep 2005 08:10:31 +0200
with message-id <[EMAIL PROTECTED]>
and subject line closing bugs: package no longer in the archive
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 6 Aug 2005 20:24:06 +0000
>From [EMAIL PROTECTED] Sat Aug 06 13:24:06 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp-2.opaltelecom.net [62.24.128.69]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E1VDC-0002p3-00; Sat, 06 Aug 2005 13:24:06 -0700
Received: from [84.13.17.15] (helo=[192.168.2.104])
by smtp-2.opaltelecom.net with esmtp (Exim 3.36 #1)
id 1E1VDA-00084T-00
for [EMAIL PROTECTED]; Sat, 06 Aug 2005 21:24:04 +0100
Subject: FTBFS with gcc 4.0
From: =?ISO-8859-1?Q?R=E9gis?= Boudin <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Content-Type: multipart/mixed; boundary="=-L//SOuMlI1hO7ibc3z9O"
Date: Sat, 06 Aug 2005 21:23:40 +0100
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
X-Mailer: Evolution 2.2.3
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
--=-L//SOuMlI1hO7ibc3z9O
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Package: sylpheed-claws-vcalendar-plugin
Version: 0.9-1
Severity: serious
Tags: patch
Hi,
sylpheed-claws-vcalendar-plugin ftbfs with gcc 4.0
Attached are a couple of patches :
-fixing gcc 4.0 errors
-updating config.{sub,guess} and disabling building of shared library
and python bindings for libical
-setting 2 variables as static in libical, this could be tried to fix
#300573
HTH
Regards
Regis
--
"While a monkey can be a manager, it takes a human to be an engineer"
Erik Zapletal
--=-L//SOuMlI1hO7ibc3z9O
Content-Disposition: attachment; filename=debian_rules.patch
Content-Type: text/x-patch; name=debian_rules.patch; charset=UTF-8
Content-Transfer-Encoding: 7bit
diff -urN sylpheed-claws-vcalendar-plugin-0.9_orig/debian/rules
sylpheed-claws-vcalendar-plugin-0.9/debian/rules
--- sylpheed-claws-vcalendar-plugin-0.9_orig/debian/rules 2005-07-28
22:47:25.354564872 +0100
+++ sylpheed-claws-vcalendar-plugin-0.9/debian/rules 2005-07-28
23:42:08.724416784 +0100
@@ -30,7 +30,8 @@
touch build-stamp
libical-build-install:
- cd $(ICAL) && ./configure --prefix=$(CURDIR)/$(ICALINST)
+ cd $(ICAL) && ./configure --prefix=$(CURDIR)/$(ICALINST) \
+ --disable-shared --enable-python-bindings=no
cd $(ICAL) && $(MAKE)
cd $(ICAL) && $(MAKE) install
touch libical-build-install
@@ -54,9 +55,11 @@
-$(MAKE) distclean
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
cp -f /usr/share/misc/config.sub config.sub
+ cp -f /usr/share/misc/config.sub $(ICAL)/config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess
+ cp -f /usr/share/misc/config.guess $(ICAL)/config.guess
endif
dh_clean
--=-L//SOuMlI1hO7ibc3z9O
Content-Disposition: attachment; filename=gcc-4_fix.patch
Content-Type: text/x-patch; name=gcc-4_fix.patch; charset=UTF-8
Content-Transfer-Encoding: 7bit
diff -urN
sylpheed-claws-vcalendar-plugin-0.9_orig/libical-0.23/src/libical/icalderivedparameter.c.in
sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalderivedparameter.c.in
---
sylpheed-claws-vcalendar-plugin-0.9_orig/libical-0.23/src/libical/icalderivedparameter.c.in
2001-04-01 21:08:19.000000000 +0100
+++
sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalderivedparameter.c.in
2005-07-28 22:51:34.874632056 +0100
@@ -55,7 +55,7 @@
};
-extern struct icalparameter_kind_map parameter_map[];
+static struct icalparameter_kind_map parameter_map[];
const char* icalparameter_kind_to_string(icalparameter_kind kind)
@@ -129,7 +129,7 @@
};
-extern struct icalparameter_map icalparameter_map[];
+static struct icalparameter_map icalparameter_map[];
const char* icalparameter_enum_to_string(int e)
diff -urN
sylpheed-claws-vcalendar-plugin-0.9_orig/libical-0.23/src/libical/icalderivedproperty.c.in
sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalderivedproperty.c.in
---
sylpheed-claws-vcalendar-plugin-0.9_orig/libical-0.23/src/libical/icalderivedproperty.c.in
2001-04-01 21:08:19.000000000 +0100
+++
sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalderivedproperty.c.in
2005-07-28 22:54:12.743632320 +0100
@@ -59,7 +59,7 @@
};
-extern struct icalproperty_map property_map[];
+static struct icalproperty_map property_map[];
const char* icalproperty_kind_to_string(icalproperty_kind kind)
{
@@ -139,7 +139,7 @@
const char* str;
};
-extern struct icalproperty_enum_map enum_map[];
+static struct icalproperty_enum_map enum_map[];
const char* icalproperty_enum_to_string(int e)
diff -urN
sylpheed-claws-vcalendar-plugin-0.9_orig/libical-0.23/src/libical/icalderivedvalue.c.in
sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalderivedvalue.c.in
---
sylpheed-claws-vcalendar-plugin-0.9_orig/libical-0.23/src/libical/icalderivedvalue.c.in
2001-04-01 21:08:19.000000000 +0100
+++
sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalderivedvalue.c.in
2005-07-28 22:58:29.722565584 +0100
@@ -60,7 +60,7 @@
char name[20];
};
-extern struct icalvalue_kind_map value_map[];
+static struct icalvalue_kind_map value_map[];
const char* icalvalue_kind_to_string(icalvalue_kind kind)
{
--=-L//SOuMlI1hO7ibc3z9O
Content-Disposition: attachment; filename=static_ical.patch
Content-Type: text/x-patch; name=static_ical.patch; charset=UTF-8
Content-Transfer-Encoding: 7bit
diff -urN
sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalmemory.c
sylpheed-claws-vcalendar-plugin-0.9.work/libical-0.23/src/libical/icalmemory.c
--- sylpheed-claws-vcalendar-plugin-0.9/libical-0.23/src/libical/icalmemory.c
2001-02-09 07:31:08.000000000 +0000
+++
sylpheed-claws-vcalendar-plugin-0.9.work/libical-0.23/src/libical/icalmemory.c
2005-08-06 21:06:40.704174128 +0100
@@ -68,8 +68,8 @@
/* HACK. Not threadsafe */
void* buffer_ring[BUFFER_RING_SIZE];
-int buffer_pos = -1;
-int initialized = 0;
+static int buffer_pos = -1;
+static int initialized = 0;
/* Add an existing buffer to the buffer ring */
void icalmemory_add_tmp_buffer(void* buf)
--=-L//SOuMlI1hO7ibc3z9O--
---------------------------------------
Received: (at 321675-done) by bugs.debian.org; 28 Sep 2005 06:11:02 +0000
>From [EMAIL PROTECTED] Tue Sep 27 23:11:02 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp.telecable.es [212.89.0.19]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1EKV9i-0004v4-00; Tue, 27 Sep 2005 23:11:02 -0700
Received: (qmail 6154 invoked from network); 28 Sep 2005 06:10:29 -0000
Received: from unknown (HELO localhost.localdomain) ([83.97.217.145])
(envelope-sender <[EMAIL PROTECTED]>)
by mail.telecable.es (qmail-ldap-1.03) with SMTP
for <[EMAIL PROTECTED]>; 28 Sep 2005 06:10:29 -0000
Date: Wed, 28 Sep 2005 08:10:31 +0200
From: Ricardo Mones <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: closing bugs: package no longer in the archive
Message-ID: <[EMAIL PROTECTED]>
X-Mailer: Sylpheed-Claws 1.9.14cvs49 (GTK+ 2.6.10; x86_64-unknown-linux-gnu)
X-Face:
;%Ws3L$.3^vnZGdjc-N\sIaOI1)zEJW{~f!E|WLg0}[]]#'p=~f7uZT=?r!{yZ#g!<nVG9?8YC!2>4qH7(VA}AFiACRfNW5?[XLG3Bx#.BX9A|\yVgr]v:QIn*b,#vUS30QH!*1]:ah(_DioSgsy(K{(Vno,2ED
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no
version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2
Hi,
The sylpheed-claws-vcalendar-plugin package has been now removed from
Debian archive [1].
Alternatively you can try sylpheed-claws-gtk-vcalendar-plugin, already in
NEW queue, targeted for the GTK2 version of Sylpheed Claws (package
sylpheed-claws-gtk2).
regards,
[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330368
--
Ricardo Mones Lastra - [EMAIL PROTECTED]
Centro de Inteligencia Artificial, Universidad de Oviedo en Gijon
33271 Asturias, SPAIN. - http://www.aic.uniovi.es/mones
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]