- Update to 2.21.2
This commit is contained in:
parent
a188ce3308
commit
9040ef714e
@ -1 +1 @@
|
|||||||
evolution-data-server-2.21.1.tar.bz2
|
evolution-data-server-2.21.2.tar.bz2
|
||||||
|
@ -1,77 +0,0 @@
|
|||||||
diff -up evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c.implicit-function-declarations evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c
|
|
||||||
--- evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c.implicit-function-declarations 2007-10-24 02:39:44.000000000 -0400
|
|
||||||
+++ evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c 2007-10-29 11:14:13.000000000 -0400
|
|
||||||
@@ -31,6 +31,7 @@
|
|
||||||
#include <libxml/xpath.h>
|
|
||||||
#include <libxml/xpathInternals.h>
|
|
||||||
|
|
||||||
+#include <string.h>
|
|
||||||
#include <gdata-entry.h>
|
|
||||||
|
|
||||||
#define GDATA_ENTRY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GDATA_TYPE_ENTRY, GDataEntryPrivate))
|
|
||||||
@@ -812,7 +813,7 @@ build_hash_table_entries (gchar *key, gc
|
|
||||||
|
|
||||||
if (ptr->next == NULL) {
|
|
||||||
/* FIXME: Will we be needing , these nodes of entries when building them ? */
|
|
||||||
- if (!g_strcasecmp (key, "published") || !g_strcasecmp (key, "id") || !g_strcasecmp (key, "updated"))
|
|
||||||
+ if (!g_ascii_strcasecmp (key, "published") || !g_ascii_strcasecmp (key, "id") || !g_ascii_strcasecmp (key, "updated"))
|
|
||||||
break;
|
|
||||||
|
|
||||||
ptr->next = xmlNewNode (NULL, (xmlChar *)key);
|
|
||||||
@@ -1081,7 +1082,7 @@ gdata_entry_get_edit_link (GDataEntry *e
|
|
||||||
|
|
||||||
while (list) {
|
|
||||||
link = list->data;
|
|
||||||
- if (!g_strcasecmp (link->rel, "edit")) {
|
|
||||||
+ if (!g_ascii_strcasecmp (link->rel, "edit")) {
|
|
||||||
edit_link = g_strdup(link->href);
|
|
||||||
}
|
|
||||||
list = g_slist_next (list);
|
|
||||||
diff -up evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c.implicit-function-declarations evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c
|
|
||||||
--- evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c.implicit-function-declarations 2007-10-29 11:17:57.000000000 -0400
|
|
||||||
+++ evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c 2007-10-29 11:18:19.000000000 -0400
|
|
||||||
@@ -183,7 +183,7 @@ gdata_google_service_get_feed (GDataServ
|
|
||||||
|
|
||||||
if (!service_is_authenticated( GDATA_GOOGLE_SERVICE(service) )) {
|
|
||||||
status = service_authenticate(GDATA_GOOGLE_SERVICE(service));
|
|
||||||
- if (g_strcasecmp(status, "SUCCESS")) {
|
|
||||||
+ if (g_ascii_strcasecmp(status, "SUCCESS")) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -235,7 +235,7 @@ gdata_google_service_insert_entry (GData
|
|
||||||
if (!service_is_authenticated(GDATA_GOOGLE_SERVICE(service))) {
|
|
||||||
status = service_authenticate(GDATA_GOOGLE_SERVICE(service));
|
|
||||||
|
|
||||||
- if (g_strcasecmp(status,"SUCCESS"))
|
|
||||||
+ if (g_ascii_strcasecmp(status,"SUCCESS"))
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -305,7 +305,7 @@ gdata_google_service_delete_entry (GData
|
|
||||||
|
|
||||||
if (!service_is_authenticated (GDATA_GOOGLE_SERVICE(service))) {
|
|
||||||
status = (xmlChar *)service_authenticate (GDATA_GOOGLE_SERVICE(service));
|
|
||||||
- if (g_strcasecmp((gchar *)status, "SUCCESS"))
|
|
||||||
+ if (g_ascii_strcasecmp((gchar *)status, "SUCCESS"))
|
|
||||||
return ;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -350,7 +350,7 @@ gdata_google_service_update_entry (GData
|
|
||||||
|
|
||||||
if (!service_is_authenticated (GDATA_GOOGLE_SERVICE (service))) {
|
|
||||||
status = service_authenticate (GDATA_GOOGLE_SERVICE (service));
|
|
||||||
- if (g_strcasecmp (status, "SUCCESS"))
|
|
||||||
+ if (g_ascii_strcasecmp (status, "SUCCESS"))
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -410,7 +410,7 @@ gdata_google_service_update_entry_with_l
|
|
||||||
|
|
||||||
if (!service_is_authenticated (GDATA_GOOGLE_SERVICE(service))) {
|
|
||||||
status = service_authenticate (GDATA_GOOGLE_SERVICE(service));
|
|
||||||
- if (g_strcasecmp (status, "SUCCESS"))
|
|
||||||
+ if (g_ascii_strcasecmp (status, "SUCCESS"))
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
|||||||
### Abstract ###
|
### Abstract ###
|
||||||
|
|
||||||
Name: evolution-data-server
|
Name: evolution-data-server
|
||||||
Version: 2.21.1
|
Version: 2.21.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: LGPL
|
License: LGPL
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
@ -61,9 +61,6 @@ Patch18: evolution-data-server-1.10.1-camel-folder-summary-crash.patch
|
|||||||
# RH bug #243296
|
# RH bug #243296
|
||||||
Patch19: evolution-data-server-1.11.5-fix-64bit-acinclude.patch
|
Patch19: evolution-data-server-1.11.5-fix-64bit-acinclude.patch
|
||||||
|
|
||||||
# Implicit function declarations.
|
|
||||||
Patch20: evolution-data-server-2.21.1-implicit-function-declarations.patch
|
|
||||||
|
|
||||||
### Build Dependencies ###
|
### Build Dependencies ###
|
||||||
|
|
||||||
BuildRequires: GConf2-devel
|
BuildRequires: GConf2-devel
|
||||||
@ -144,7 +141,6 @@ This package contains developer documentation for %{name}.
|
|||||||
#%patch16 -p1 -b .e-passwords
|
#%patch16 -p1 -b .e-passwords
|
||||||
%patch18 -p1 -b .camel-folder-summary-crash
|
%patch18 -p1 -b .camel-folder-summary-crash
|
||||||
%patch19 -p1 -b .fix-64bit-acinclude
|
%patch19 -p1 -b .fix-64bit-acinclude
|
||||||
%patch20 -p1 -b .implicit-function-declarations
|
|
||||||
|
|
||||||
mkdir -p krb5-fakeprefix/include
|
mkdir -p krb5-fakeprefix/include
|
||||||
mkdir -p krb5-fakeprefix/lib
|
mkdir -p krb5-fakeprefix/lib
|
||||||
@ -387,7 +383,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/gtk-doc/html/libedataserverui
|
%{_datadir}/gtk-doc/html/libedataserverui
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Oct 29 2007 Matthew Barnes <mbarnes@redhat.com> - 2.21.1.1-fc9
|
* Mon Nov 12 2007 Matthew Barnes <mbarnes@redhat.com> - 2.21.2-1.fc9
|
||||||
|
- Update to 2.21.2
|
||||||
|
|
||||||
|
* Mon Oct 29 2007 Matthew Barnes <mbarnes@redhat.com> - 2.21.1-1.fc9
|
||||||
- Update to 2.21.1
|
- Update to 2.21.1
|
||||||
- Bump eds_base_version to 2.22.
|
- Bump eds_base_version to 2.22.
|
||||||
- Remove patch for RH bug #212106 (fixed upstream).
|
- Remove patch for RH bug #212106 (fixed upstream).
|
||||||
|
Loading…
Reference in New Issue
Block a user