From 6babeb84a5af4c01adbcb2042600819007e5094b Mon Sep 17 00:00:00 2001 From: Alexander Nedotsukov Date: Wed, 27 Aug 2003 23:31:43 +0000 Subject: Workaround gcc 2.95.x static_cast<> bug on -STABLE PR: 56030 Submitted by: Sergey Akifyev (based on) Approved by: marcus (mentor) --- x11-toolkits/libgnomeuimm/Makefile | 8 +++++- .../libgnomeuimm/files/extra-patch-old_gcc_bugs | 29 ++++++++++++++++++++++ x11-toolkits/libgnomeuimm26/Makefile | 8 +++++- .../libgnomeuimm26/files/extra-patch-old_gcc_bugs | 29 ++++++++++++++++++++++ 4 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 x11-toolkits/libgnomeuimm/files/extra-patch-old_gcc_bugs create mode 100644 x11-toolkits/libgnomeuimm26/files/extra-patch-old_gcc_bugs diff --git a/x11-toolkits/libgnomeuimm/Makefile b/x11-toolkits/libgnomeuimm/Makefile index 2c0cef2203e9..cd6bc4868e19 100644 --- a/x11-toolkits/libgnomeuimm/Makefile +++ b/x11-toolkits/libgnomeuimm/Makefile @@ -29,4 +29,10 @@ USE_LIBTOOL= yes INSTALLS_SHLIB= yes CONFIGURE_ARGS= --enable-static -.include +.include + +.if ${OSVERSION} < 500000 +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-old_gcc_bugs +.endif + +.include diff --git a/x11-toolkits/libgnomeuimm/files/extra-patch-old_gcc_bugs b/x11-toolkits/libgnomeuimm/files/extra-patch-old_gcc_bugs new file mode 100644 index 000000000000..bccb729cec94 --- /dev/null +++ b/x11-toolkits/libgnomeuimm/files/extra-patch-old_gcc_bugs @@ -0,0 +1,29 @@ +--- libgnomeui/libgnomeuimm/dateedit.cc.orig Wed Aug 27 22:24:13 2003 ++++ libgnomeui/libgnomeuimm/dateedit.cc Wed Aug 27 22:25:02 2003 +@@ -35,7 +35,7 @@ + : Gtk::HBox(GTK_HBOX(g_object_new(get_type(), (char*)0))) + { + gnome_date_edit_construct(gobj(), the_time, +- static_cast( ++ GnomeDateEditFlags( + (show_time ? DATE_EDIT_SHOW_TIME : static_cast(0)) + | (use_24_format ? DATE_EDIT_24_HR : static_cast(0)) ) ); + } +@@ -44,7 +44,7 @@ + DateEdit::DateEdit(time_t the_time, DateEditFlags flags) + : Gtk::HBox(GTK_HBOX(g_object_new(get_type(), (char*)0))) + { +- gnome_date_edit_construct(gobj(), the_time, static_cast(flags)); ++ gnome_date_edit_construct(gobj(), the_time, GnomeDateEditFlags(flags)); + } + + +@@ -254,7 +254,7 @@ + + void DateEdit::set_flags(DateEditFlags flags) + { +- gnome_date_edit_set_flags(gobj(), static_cast(flags)); ++ gnome_date_edit_set_flags(gobj(), GnomeDateEditFlags(flags)); + } + + DateEditFlags DateEdit::get_flags() const diff --git a/x11-toolkits/libgnomeuimm26/Makefile b/x11-toolkits/libgnomeuimm26/Makefile index 2c0cef2203e9..cd6bc4868e19 100644 --- a/x11-toolkits/libgnomeuimm26/Makefile +++ b/x11-toolkits/libgnomeuimm26/Makefile @@ -29,4 +29,10 @@ USE_LIBTOOL= yes INSTALLS_SHLIB= yes CONFIGURE_ARGS= --enable-static -.include +.include + +.if ${OSVERSION} < 500000 +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-old_gcc_bugs +.endif + +.include diff --git a/x11-toolkits/libgnomeuimm26/files/extra-patch-old_gcc_bugs b/x11-toolkits/libgnomeuimm26/files/extra-patch-old_gcc_bugs new file mode 100644 index 000000000000..bccb729cec94 --- /dev/null +++ b/x11-toolkits/libgnomeuimm26/files/extra-patch-old_gcc_bugs @@ -0,0 +1,29 @@ +--- libgnomeui/libgnomeuimm/dateedit.cc.orig Wed Aug 27 22:24:13 2003 ++++ libgnomeui/libgnomeuimm/dateedit.cc Wed Aug 27 22:25:02 2003 +@@ -35,7 +35,7 @@ + : Gtk::HBox(GTK_HBOX(g_object_new(get_type(), (char*)0))) + { + gnome_date_edit_construct(gobj(), the_time, +- static_cast( ++ GnomeDateEditFlags( + (show_time ? DATE_EDIT_SHOW_TIME : static_cast(0)) + | (use_24_format ? DATE_EDIT_24_HR : static_cast(0)) ) ); + } +@@ -44,7 +44,7 @@ + DateEdit::DateEdit(time_t the_time, DateEditFlags flags) + : Gtk::HBox(GTK_HBOX(g_object_new(get_type(), (char*)0))) + { +- gnome_date_edit_construct(gobj(), the_time, static_cast(flags)); ++ gnome_date_edit_construct(gobj(), the_time, GnomeDateEditFlags(flags)); + } + + +@@ -254,7 +254,7 @@ + + void DateEdit::set_flags(DateEditFlags flags) + { +- gnome_date_edit_set_flags(gobj(), static_cast(flags)); ++ gnome_date_edit_set_flags(gobj(), GnomeDateEditFlags(flags)); + } + + DateEditFlags DateEdit::get_flags() const -- cgit v1.2.3