patch to remove a doubled ';' (because gcc 4.0 complains about it)
This commit is contained in:
parent
e5084c4636
commit
96cf528291
2 changed files with 14 additions and 1 deletions
|
@ -67,6 +67,7 @@ cd ${tmpdir}
|
|||
if [ ! -d $gtkmm_product ]; then
|
||||
tar xfj ${gtkmm_tar}
|
||||
cd ${gtkmm_product}
|
||||
# patch here
|
||||
# not submitted; already fixed in version 2.8.1
|
||||
patch -p1 < ${etcdir}/remove-extra-semicolon.patch
|
||||
fi
|
||||
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
diff -u gtkmm-2.6.5/gtk/gtkmm/settings.h gtkmm-2.6.5-remove-extra-semicolon/gtk/gtkmm/settings.h
|
||||
--- gtkmm-2.6.5/gtk/gtkmm/settings.h 2005-10-18 09:12:13.000000000 +0200
|
||||
+++ gtkmm-2.6.5-remove-extra-semicolon/gtk/gtkmm/settings.h 2005-11-29 16:25:02.000000000 +0100
|
||||
@@ -98,7 +98,7 @@
|
||||
* @return A Gtk::Settings object. If there is no default
|
||||
* screen, then returns <tt>0</tt>.
|
||||
*/
|
||||
- static Glib::RefPtr<Settings> get_default();;
|
||||
+ static Glib::RefPtr<Settings> get_default();
|
||||
|
||||
|
||||
/** Gets the Gtk::Settings object for @a screen , creating it if necessary.
|
Loading…
Add table
Add a link
Reference in a new issue