pacho 15/06/20 09:59:11
Added: libgda-5.2.4-format-security.patch
libgda-5.2.4-jre18.patch
Log:
Version bump, fix java detection (#450004 by Juergen Rose and Tom Wijsman
(TomWij)), enable vala (#507022 by Markus Moll), fix compilation with
format-security (#517610 by Agostino Sarubbo)
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key
A188FBD4)
Revision Changes Path
1.1 gnome-extra/libgda/files/libgda-5.2.4-format-security.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/files/libgda-5.2.4-format-security.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/files/libgda-5.2.4-format-security.patch?rev=1.1&content-type=text/plain
Index: libgda-5.2.4-format-security.patch
===================================================================
>From 68af249e1c36cbac2e39903b0fc357e3ad2bf1ee Mon Sep 17 00:00:00 2001
From: Vivien Malerba <[email protected]>
Date: Wed, 16 Apr 2014 14:59:50 +0200
Subject: [PATCH] Markup message correction
---
libgda-ui/demos/ddl_queries.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libgda-ui/demos/ddl_queries.c b/libgda-ui/demos/ddl_queries.c
index a47630f..4b29377 100644
--- a/libgda-ui/demos/ddl_queries.c
+++ b/libgda-ui/demos/ddl_queries.c
@@ -475,9 +475,9 @@ show_sql (G_GNUC_UNUSED GtkButton *button, DemoData *data)
else
msg = g_strdup_printf ("<b>SQL:</b>\n%s", sql);
- dlg = gtk_message_dialog_new_with_markup (GTK_WINDOW
(data->top_window),
- GTK_DIALOG_MODAL,
- msg_type,
GTK_BUTTONS_CLOSE, msg);
+ dlg = gtk_message_dialog_new (GTK_WINDOW (data->top_window),
+ GTK_DIALOG_MODAL, msg_type,
GTK_BUTTONS_CLOSE, NULL);
+ gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (dlg), msg);
g_free (sql);
g_free (msg);
--
1.9.0
1.1 gnome-extra/libgda/files/libgda-5.2.4-jre18.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/files/libgda-5.2.4-jre18.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/files/libgda-5.2.4-jre18.patch?rev=1.1&content-type=text/plain
Index: libgda-5.2.4-jre18.patch
===================================================================
--- libgda-5.2.2/configure.orig 2014-05-17 14:58:33.206028742 +0200
+++ libgda-5.2.2/configure 2014-05-17 14:58:45.937790443 +0200
@@ -23200,6 +23259,11 @@
JTYPE="Sun JRE 1.7"
JFLAGS="-Xlint:unchecked -Xlint:deprecation"
;;
+ JRE1.8.*)
+ try_java=true
+ JTYPE="Sun JRE 1.8"
+ JFLAGS="-Xlint:unchecked -Xlint:deprecation"
+ ;;
JREgcj-4*)
try_java=true
JTYPE="GCJ"