Menu

#3 Build Failure with GTK3

1.0
closed
nobody
None
2021-12-10
2019-06-28
No

Environment:

  • OS: Debian 9.9
  • CC: gcc 6.3.0
  • GTK: 3.22.11

Build of lusus failed with many deprecation warnings and an error:

/opt/src/luscus_0.8.6/gv_notebook.c:1080:47: error: called object 'vbox_inner' is not a function or function pointer
         gtk_box_set_homogeneous(GTK_BOX(hbox),vbox_inner TRUE);
                                               ^~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:178:34: note: declared here
   GtkWidget *vbox_outer, *hbox, *vbox_inner;
                                  ^~~~~~~~~~

The steps and whole messages are as follows:

$ mkdir _build
$ cd _build
$ cmake ..
$ make
Scanning dependencies of target luscus
[  2%] Building C object CMakeFiles/luscus.dir/main.c.o
[  5%] Building C object CMakeFiles/luscus.dir/gtk_gui.c.o
/opt/src/luscus_0.8.6/gtk_gui.c: In function 'Init_Gui':
/opt/src/luscus_0.8.6/gtk_gui.c:4476:3: warning: 'gdk_color_parse' is deprecated: Use 'gdk_rgba_parse' instead [-Wdeprecated-declarations]
   gdk_color_parse("white", &white);
   ^~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gdk/gdkcairo.h:26:0,
                 from /usr/include/gtk-3.0/gdk/gdk.h:33,
                 from /usr/include/gtk-3.0/gtk/gtk.h:30,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h:79:11: note: declared here
 gboolean  gdk_color_parse     (const gchar    *spec,
           ^~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gtk_gui.c:4513:3: warning: 'gtk_widget_modify_base' is deprecated: Use 'CSS style classes' instead [-Wdeprecated-declarations]
   gtk_widget_modify_base(eventbox, GTK_STATE_NORMAL, &white);
   ^~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:761:13: note: declared here
 void        gtk_widget_modify_base        (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gtk_gui.c:4514:3: warning: 'gtk_widget_modify_fg' is deprecated: Use 'gtk_widget_override_color' instead [-Wdeprecated-declarations]
   gtk_widget_modify_fg(eventbox, GTK_STATE_NORMAL, &white);
   ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:749:13: note: declared here
 void        gtk_widget_modify_fg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gtk_gui.c:4515:3: warning: 'gtk_widget_modify_bg' is deprecated: Use 'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
   gtk_widget_modify_bg(eventbox, GTK_STATE_NORMAL, &white);
   ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
 void        gtk_widget_modify_bg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gtk_gui.c:4524:3: warning: 'gtk_widget_modify_base' is deprecated: Use 'CSS style classes' instead [-Wdeprecated-declarations]
   gtk_widget_modify_base(eventbox, GTK_STATE_NORMAL, &white);
   ^~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:761:13: note: declared here
 void        gtk_widget_modify_base        (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gtk_gui.c:4525:3: warning: 'gtk_widget_modify_fg' is deprecated: Use 'gtk_widget_override_color' instead [-Wdeprecated-declarations]
   gtk_widget_modify_fg(eventbox, GTK_STATE_NORMAL, &white);
   ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:749:13: note: declared here
 void        gtk_widget_modify_fg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gtk_gui.c:4526:3: warning: 'gtk_widget_modify_bg' is deprecated: Use 'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
   gtk_widget_modify_bg(eventbox, GTK_STATE_NORMAL, &white);
   ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
 void        gtk_widget_modify_bg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gtk_gui.c:4543:3: warning: 'gtk_widget_set_double_buffered' is deprecated [-Wdeprecated-declarations]
   gtk_widget_set_double_buffered(drawingarea, FALSE);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtkapplication.h:27:0,
                 from /usr/include/gtk-3.0/gtk/gtkwindow.h:33,
                 from /usr/include/gtk-3.0/gtk/gtkdialog.h:32,
                 from /usr/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
                 from /usr/include/gtk-3.0/gtk/gtk.h:31,
                 from /opt/src/luscus_0.8.6/gtk_gui.c:5:
/usr/include/gtk-3.0/gtk/gtkwidget.h:883:23: note: declared here
 void                  gtk_widget_set_double_buffered    (GtkWidget    *widget,
                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[  7%] Building C object CMakeFiles/luscus.dir/gv_menubar.c.o
/opt/src/luscus_0.8.6/gv_menubar.c: In function 'make_menubar':
/opt/src/luscus_0.8.6/gv_menubar.c:40:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_OPEN, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:40:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_OPEN, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:46:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item_save = gtk_image_menu_item_new_from_stock(GTK_STOCK_SAVE, ag);
   ^~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:46:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item_save = gtk_image_menu_item_new_from_stock(GTK_STOCK_SAVE, ag);
   ^~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:52:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SAVE_AS, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:52:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SAVE_AS, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:62:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_CLOSE, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:62:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_CLOSE, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:72:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_QUIT, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:72:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_QUIT, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:87:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_undo = gtk_image_menu_item_new_from_stock(GTK_STOCK_UNDO, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:87:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_undo = gtk_image_menu_item_new_from_stock(GTK_STOCK_UNDO, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:126:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:126:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:133:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:133:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:140:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:140:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:146:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:146:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:154:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:154:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:160:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:160:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:167:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:167:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_COLOR, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:177:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_FONT, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:177:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_FONT, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:262:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_MEDIA_PLAY, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:262:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_MEDIA_PLAY, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:300:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_FULLSCREEN, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:300:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_FULLSCREEN, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:377:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_HELP, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:377:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_HELP, ag);
   ^~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:387:3: warning: 'gtk_image_menu_item_new_from_stock' is deprecated: Use 'gtk_menu_item_new' instead [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_ABOUT, ag);
   ^~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:265:0,
                 from /opt/src/luscus_0.8.6/gv_menubar.c:4:
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:84:12: note: declared here
 GtkWidget* gtk_image_menu_item_new_from_stock    (const gchar      *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_menubar.c:387:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   menu_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_ABOUT, ag);
   ^~~~~~~~~
[ 10%] Building C object CMakeFiles/luscus.dir/gv_system.c.o
[ 12%] Building C object CMakeFiles/luscus.dir/gv_notebook.c.o
/opt/src/luscus_0.8.6/gv_notebook.c: In function 'make_notebook':
/opt/src/luscus_0.8.6/gv_notebook.c:269:3: warning: 'gtk_scrolled_window_add_with_viewport' is deprecated: Use 'gtk_container_add' instead [-Wdeprecated-declarations]
   gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), vbox_freqs);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:183:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkscrolledwindow.h:186:13: note: declared here
 void        gtk_scrolled_window_add_with_viewport (GtkScrolledWindow *scrolled_window,
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:307:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button_add_atom = gtk_button_new_from_stock(GTK_STOCK_ADD);
   ^~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:307:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button_add_atom = gtk_button_new_from_stock(GTK_STOCK_ADD);
   ^~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:313:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button_remove_atom = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
   ^~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:313:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button_remove_atom = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
   ^~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:327:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button_undo = gtk_button_new_from_stock(GTK_STOCK_UNDO);
   ^~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:327:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button_undo = gtk_button_new_from_stock(GTK_STOCK_UNDO);
   ^~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:546:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_CLEAR, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:546:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_CLEAR, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:555:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_SORT_ASCENDING, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:555:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_SORT_ASCENDING, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:589:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_SELECT_ALL, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:589:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_SELECT_ALL, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:630:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button_watch = gtk_button_new_from_stock(GTK_STOCK_ADD);
   ^~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:630:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button_watch = gtk_button_new_from_stock(GTK_STOCK_ADD);
   ^~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:637:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button_unwatch = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
   ^~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:637:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button_unwatch = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
   ^~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:668:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button_add_dummy = gtk_button_new_from_stock(GTK_STOCK_ADD);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:668:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button_add_dummy = gtk_button_new_from_stock(GTK_STOCK_ADD);
   ^~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:674:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
   ^~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:674:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button = gtk_button_new_from_stock(GTK_STOCK_REMOVE);
   ^~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:688:3: warning: 'gtk_table_new' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
   table_fragments = gtk_table_new(5, 4, TRUE);
   ^~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:119:12: note: declared here
 GtkWidget* gtk_table_new       (guint  rows,
            ^~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:706:5: warning: 'gtk_table_attach' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
     gtk_table_attach(GTK_TABLE(table_fragments), button, ix, ix+1, iy, iy+1, GTK_FILL, GTK_FILL, 1, 1);
     ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:127:9: note: declared here
 void    gtk_table_attach       (GtkTable        *table,
         ^~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:706:5: warning: 'gtk_table_get_type' is deprecated [-Wdeprecated-declarations]
     gtk_table_attach(GTK_TABLE(table_fragments), button, ix, ix+1, iy, iy+1, GTK_FILL, GTK_FILL, 1, 1);
     ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:117:10: note: declared here
 GType    gtk_table_get_type       (void) G_GNUC_CONST;
          ^~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:892:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button_clear_drawed = gtk_button_new_from_stock(GTK_STOCK_CLEAR);
   ^~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:892:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button_clear_drawed = gtk_button_new_from_stock(GTK_STOCK_CLEAR);
   ^~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:917:3: warning: 'gtk_scrolled_window_add_with_viewport' is deprecated: Use 'gtk_container_add' instead [-Wdeprecated-declarations]
   gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), vbox_3Dobject);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:183:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkscrolledwindow.h:186:13: note: declared here
 void        gtk_scrolled_window_add_with_viewport (GtkScrolledWindow *scrolled_window,
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:964:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button = gtk_button_new_from_stock(GTK_STOCK_DELETE);
   ^~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:964:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button = gtk_button_new_from_stock(GTK_STOCK_DELETE);
   ^~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:969:3: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
   button = gtk_button_new_from_stock(GTK_STOCK_UNDELETE);
   ^~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:969:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   button = gtk_button_new_from_stock(GTK_STOCK_UNDELETE);
   ^~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1049:7: warning: 'gtk_scrolled_window_add_with_viewport' is deprecated: Use 'gtk_container_add' instead [-Wdeprecated-declarations]
       gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), vbox_inner);
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:183:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkscrolledwindow.h:186:13: note: declared here
 void        gtk_scrolled_window_add_with_viewport (GtkScrolledWindow *scrolled_window,
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1080:47: error: called object 'vbox_inner' is not a function or function pointer
         gtk_box_set_homogeneous(GTK_BOX(hbox),vbox_inner TRUE);
                                               ^~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:178:34: note: declared here
   GtkWidget *vbox_outer, *hbox, *vbox_inner;
                                  ^~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1120:7: warning: 'gtk_button_new_from_stock' is deprecated: Use 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
       button = gtk_button_new_from_stock(GTK_STOCK_EXECUTE);
       ^~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:54:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
 GtkWidget*     gtk_button_new_from_stock    (const gchar    *stock_id);
                ^~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1120:7: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
       button = gtk_button_new_from_stock(GTK_STOCK_EXECUTE);
       ^~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1196:3: warning: 'gtk_table_new' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
   table = gtk_table_new(3, 3, TRUE);
   ^~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:119:12: note: declared here
 GtkWidget* gtk_table_new       (guint  rows,
            ^~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1199:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_UP, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1199:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_UP, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1203:3: warning: 'gtk_table_attach' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 1,2, 0,1, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:127:9: note: declared here
 void    gtk_table_attach       (GtkTable        *table,
         ^~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1203:3: warning: 'gtk_table_get_type' is deprecated [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 1,2, 0,1, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:117:10: note: declared here
 GType    gtk_table_get_type       (void) G_GNUC_CONST;
          ^~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1207:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_FORWARD, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1207:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_FORWARD, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1211:3: warning: 'gtk_table_attach' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 2,3, 1,2, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:127:9: note: declared here
 void    gtk_table_attach       (GtkTable        *table,
         ^~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1211:3: warning: 'gtk_table_get_type' is deprecated [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 2,3, 1,2, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:117:10: note: declared here
 GType    gtk_table_get_type       (void) G_GNUC_CONST;
          ^~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1215:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_BACK, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1215:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_BACK, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1219:3: warning: 'gtk_table_attach' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 0,1, 1,2, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:127:9: note: declared here
 void    gtk_table_attach       (GtkTable        *table,
         ^~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1219:3: warning: 'gtk_table_get_type' is deprecated [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 0,1, 1,2, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:117:10: note: declared here
 GType    gtk_table_get_type       (void) G_GNUC_CONST;
          ^~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1223:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_DOWN, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1223:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GO_DOWN, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1227:3: warning: 'gtk_table_attach' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 1,2, 2,3, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:127:9: note: declared here
 void    gtk_table_attach       (GtkTable        *table,
         ^~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1227:3: warning: 'gtk_table_get_type' is deprecated [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 1,2, 2,3, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:117:10: note: declared here
 GType    gtk_table_get_type       (void) G_GNUC_CONST;
          ^~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1236:3: warning: 'gtk_table_attach' is deprecated: Use 'GtkGrid' instead [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 1,2, 1,2, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:127:9: note: declared here
 void    gtk_table_attach       (GtkTable        *table,
         ^~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1236:3: warning: 'gtk_table_get_type' is deprecated [-Wdeprecated-declarations]
   gtk_table_attach(GTK_TABLE(table), button, 1,2, 1,2, GTK_SHRINK, GTK_SHRINK, 3, 3);
   ^~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:276:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtktable.h:117:10: note: declared here
 GType    gtk_table_get_type       (void) G_GNUC_CONST;
          ^~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1253:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_ZOOM_OUT, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1253:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_ZOOM_OUT, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1261:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_ZOOM_100, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1261:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_ZOOM_100, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1269:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_ZOOM_IN, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1269:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_ZOOM_IN, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1336:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GOTO_FIRST, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1336:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GOTO_FIRST, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1344:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_MEDIA_PLAY, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1344:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_MEDIA_PLAY, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1360:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GOTO_LAST, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1360:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   icon = gtk_image_new_from_stock(GTK_STOCK_GOTO_LAST, GTK_ICON_SIZE_BUTTON);
   ^~~~
/opt/src/luscus_0.8.6/gv_notebook.c:1475:3: warning: 'gtk_scrolled_window_add_with_viewport' is deprecated: Use 'gtk_container_add' instead [-Wdeprecated-declarations]
   gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), vbox_watched);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:183:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkscrolledwindow.h:186:13: note: declared here
 void        gtk_scrolled_window_add_with_viewport (GtkScrolledWindow *scrolled_window,
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c: In function 'luscus_gtk_update_3Dobject_info':
/opt/src/luscus_0.8.6/gv_notebook.c:2972:5: warning: 'gtk_widget_modify_bg' is deprecated: Use 'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
     gtk_widget_modify_bg(GTK_WIDGET(gtk_3d_desc[j].button), GTK_STATE_NORMAL, &color);
     ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
 void        gtk_widget_modify_bg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:2988:5: warning: 'gtk_widget_modify_bg' is deprecated: Use 'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
     gtk_widget_modify_bg(GTK_WIDGET(gtk_3d_desc[j].button), GTK_STATE_NORMAL, &color);
     ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
 void        gtk_widget_modify_bg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:3003:5: warning: 'gtk_widget_modify_bg' is deprecated: Use 'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
     gtk_widget_modify_bg(GTK_WIDGET(gtk_3d_desc[j].button), GTK_STATE_NORMAL, &color);
     ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
 void        gtk_widget_modify_bg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:3018:5: warning: 'gtk_widget_modify_bg' is deprecated: Use 'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
     gtk_widget_modify_bg(GTK_WIDGET(gtk_3d_desc[j].button), GTK_STATE_NORMAL, &color);
     ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
 void        gtk_widget_modify_bg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:3034:5: warning: 'gtk_widget_modify_bg' is deprecated: Use 'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
     gtk_widget_modify_bg(GTK_WIDGET(gtk_3d_desc[j].button), GTK_STATE_NORMAL, &color);
     ^~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
 void        gtk_widget_modify_bg          (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:3058:5: warning: 'gtk_widget_modify_text' is deprecated: Use 'CSS style classes' instead [-Wdeprecated-declarations]
     gtk_widget_modify_text(GTK_WIDGET(gtk_3d_desc[j].button), GTK_STATE_NORMAL, &color);
     ^~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtk.h:273:0,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:757:13: note: declared here
 void        gtk_widget_modify_text        (GtkWidget            *widget,
             ^~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c: In function 'geo_play_button_play':
/opt/src/luscus_0.8.6/gv_notebook.c:3157:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   if (mode == 0) image = gtk_image_new_from_stock(GTK_STOCK_MEDIA_PAUSE, GTK_ICON_SIZE_BUTTON);
   ^~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:3157:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   if (mode == 0) image = gtk_image_new_from_stock(GTK_STOCK_MEDIA_PAUSE, GTK_ICON_SIZE_BUTTON);
   ^~
/opt/src/luscus_0.8.6/gv_notebook.c:3158:3: warning: 'gtk_image_new_from_stock' is deprecated: Use 'gtk_image_new_from_icon_name' instead [-Wdeprecated-declarations]
   else image = gtk_image_new_from_stock(GTK_STOCK_MEDIA_PLAY, GTK_ICON_SIZE_BUTTON);
   ^~~~
In file included from /usr/include/gtk-3.0/gtk/gtkentry.h:42:0,
                 from /usr/include/gtk-3.0/gtk/gtktreeview.h:29,
                 from /usr/include/gtk-3.0/gtk/gtkcombobox.h:27,
                 from /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h:29,
                 from /usr/include/gtk-3.0/gtk/gtk.h:42,
                 from /opt/src/luscus_0.8.6/gv_notebook.c:3:
/usr/include/gtk-3.0/gtk/gtkimage.h:122:12: note: declared here
 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
            ^~~~~~~~~~~~~~~~~~~~~~~~
/opt/src/luscus_0.8.6/gv_notebook.c:3158:3: warning: 'GtkStock' is deprecated [-Wdeprecated-declarations]
   else image = gtk_image_new_from_stock(GTK_STOCK_MEDIA_PLAY, GTK_ICON_SIZE_BUTTON);
   ^~~~
CMakeFiles/luscus.dir/build.make:158: recipe for target 'CMakeFiles/luscus.dir/gv_notebook.c.o' failed
make[2]: *** [CMakeFiles/luscus.dir/gv_notebook.c.o] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/luscus.dir/all' failed
make[1]: *** [CMakeFiles/luscus.dir/all] Error 2
Makefile:127: recipe for target 'all' failed
make: *** [all] Error 2

Discussion

  • Valera Veryazov

    Valera Veryazov - 2021-12-10

    The problem fixed by the latest commit

     
  • Valera Veryazov

    Valera Veryazov - 2021-12-10
    • status: open --> closed
     
  • Valera Veryazov

    Valera Veryazov - 2021-12-10

    The problem fixed by the latest commit

     

Log in to post a comment.