diff options
author | Alexander Nedotsukov <bland@FreeBSD.org> | 2005-10-13 05:38:06 +0000 |
---|---|---|
committer | Alexander Nedotsukov <bland@FreeBSD.org> | 2005-10-13 05:38:06 +0000 |
commit | feac2a1be7737dde55630d91d520c6e9019d0099 (patch) | |
tree | fda35a4eec977e4883079f0344ddbf9b4f4157cd /devel/libglademm/files | |
parent | 5d6782e8fe2dff275b4bf2a26eb667fa84585c0f (diff) |
- Update to 2.1.3
- Strict up C++ to avoid build falures in dependants. [1]
Reported by: Alexander Best <arundel@h3c.de> [1]
Notes
Notes:
svn path=/head/; revision=145211
Diffstat (limited to 'devel/libglademm/files')
-rw-r--r-- | devel/libglademm/files/patch-configure | 10 | ||||
-rw-r--r-- | devel/libglademm/files/patch-libglade__libglademm__xml.h | 11 |
2 files changed, 11 insertions, 10 deletions
diff --git a/devel/libglademm/files/patch-configure b/devel/libglademm/files/patch-configure deleted file mode 100644 index 8c117297dcb6..000000000000 --- a/devel/libglademm/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Wed May 21 15:52:43 2003 -+++ configure Wed May 21 15:53:07 2003 -@@ -7854,6 +7854,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/devel/libglademm/files/patch-libglade__libglademm__xml.h b/devel/libglademm/files/patch-libglade__libglademm__xml.h new file mode 100644 index 000000000000..470271746be5 --- /dev/null +++ b/devel/libglademm/files/patch-libglade__libglademm__xml.h @@ -0,0 +1,11 @@ +--- libglade/libglademm/xml.h.orig Tue Oct 11 11:18:23 2005 ++++ libglade/libglademm/xml.h Tue Oct 11 11:18:51 2005 +@@ -240,7 +240,7 @@ + //If there is already a C++ instance, then return it again: + if(pObjectBase) + { +- widget = dynamic_cast<T_Widget*>( Glib::wrap(pCWidget) ); ++ widget = dynamic_cast<T_Widget*>( Glib::wrap((GtkWidget*)pCWidget) ); + + //The dynamic cast checks that it is of the correct type. + //Somebody might be trying to call get_widget_derived() after already calling get_widget(), |