diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-04-10 23:25:40 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-04-10 23:25:40 +0000 |
commit | fa3670698e4e31a396d4efb323d9be174c810d50 (patch) | |
tree | d5cbe48bd18f288037ec56ef28e25ef30d6ed93f | |
parent | 674d61d84b2b754057be95038462b97ad83f759f (diff) | |
download | buildroot-novena-fa3670698e4e31a396d4efb323d9be174c810d50.tar.gz buildroot-novena-fa3670698e4e31a396d4efb323d9be174c810d50.zip |
fix for newer gcc
-rw-r--r-- | package/ltt/ltt-gcc4.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package/ltt/ltt-gcc4.patch b/package/ltt/ltt-gcc4.patch new file mode 100644 index 000000000..4e709d687 --- /dev/null +++ b/package/ltt/ltt-gcc4.patch @@ -0,0 +1,23 @@ +--- orig/TraceToolkit-0.9.5/Visualizer/MainWindow.c 2002-04-15 19:23:49.000000000 -0700
++++ TraceToolkit-0.9.5/Visualizer/MainWindow.c 2006-04-05 16:04:47.000000000 -0700
+@@ -28,6 +28,7 @@
+ #include <string.h>
+ #include <fcntl.h>
+ #include <unistd.h>
++#include <stdlib.h>
+ #include <sys/stat.h>
+ #include <gdk/gdkkeysyms.h>
+
+@@ -3146,8 +3147,10 @@
+
+ /* FORCEFULLY disconnect event handlers from the notebook widget */
+ /* I didn't find any cleaner way to do this. K.Y. 9/5/2000 */
+- GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->key_press_event) = NULL,
+- GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->focus_in_event) = NULL,
++ gtk_type_free(GTK_TYPE_SIGNAL,
++ GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->key_press_event));
++ gtk_type_free(GTK_TYPE_SIGNAL,
++ GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->focus_in_event));
+
+ /* Connect the key press event */
+ gtk_signal_connect(GTK_OBJECT(pmSysView->Window->MWindow),
|