mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
dev-db/mysql-workbench: fix compilation with recent glibmm, fixing bug 600376
Package-Manager: Portage-2.3.5, Repoman-2.3.1
This commit is contained in:
38
dev-db/mysql-workbench/files/mysql-workbench-6.3.4-gtk.patch
Normal file
38
dev-db/mysql-workbench/files/mysql-workbench-6.3.4-gtk.patch
Normal file
@@ -0,0 +1,38 @@
|
||||
Last-Update: 2016-11-13
|
||||
Forwarded: not-needed
|
||||
Author: Dmitry Smirnov <onlyjob@debian.org>
|
||||
Bug-Debian: https://bugs.debian.org/839356
|
||||
Description: fix FTBFS
|
||||
|
||||
--- mysql-workbench-6.3.4+dfsg.orig/library/forms/gtk/src/lf_popover.cpp
|
||||
+++ mysql-workbench-6.3.4+dfsg/library/forms/gtk/src/lf_popover.cpp
|
||||
@@ -380,7 +380,7 @@ void PopoverWidget::show_popover(const i
|
||||
if (_style == mforms::PopoverStyleTooltip)
|
||||
{
|
||||
Glib::RefPtr<Gdk::Window> wnd = this->get_window();
|
||||
- if (wnd != 0)
|
||||
+ if (wnd)
|
||||
{
|
||||
int xx;
|
||||
int yy;
|
||||
@@ -396,7 +396,7 @@ void PopoverWidget::show_popover(const i
|
||||
{
|
||||
Gdk::ModifierType mask;
|
||||
Glib::RefPtr<Gdk::Display> dsp = Gdk::Display::get_default();
|
||||
- if (dsp != 0)
|
||||
+ if (dsp)
|
||||
dsp->get_pointer(x, y, mask);
|
||||
}
|
||||
|
||||
--- mysql-workbench-6.3.4+dfsg.orig/library/forms/gtk/src/lf_popup.cpp
|
||||
+++ mysql-workbench-6.3.4+dfsg/library/forms/gtk/src/lf_popup.cpp
|
||||
@@ -81,7 +81,8 @@ void PopupImpl::on_screen_changed(const
|
||||
{
|
||||
d("\n");
|
||||
Glib::RefPtr<Gdk::Colormap> colormap = screen->get_rgba_colormap();
|
||||
- _have_rgba = colormap;
|
||||
+ if (colormap)
|
||||
+ _have_rgba = true;
|
||||
|
||||
if (!_have_rgba)
|
||||
colormap = screen->get_rgb_colormap();
|
||||
@@ -74,7 +74,8 @@ src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}-6.2.3-CMakeLists.patch" \
|
||||
"${FILESDIR}/${PN}-6.2.5-wbcopytables.patch" \
|
||||
"${FILESDIR}/${PN}-6.3.3-mysql_options4.patch" \
|
||||
"${FILESDIR}/${PN}-6.3.4-cxx11.patch"
|
||||
"${FILESDIR}/${PN}-6.3.4-cxx11.patch" \
|
||||
"${FILESDIR}/${PN}-6.3.4-gtk.patch"
|
||||
|
||||
sed -i -e '/target_link_libraries/ s/sqlparser.grt/sqlparser.grt sqlparser/' \
|
||||
modules/db.mysql.sqlparser/CMakeLists.txt
|
||||
|
||||
Reference in New Issue
Block a user