JDK-8212139 : FX 8u-dev fails to build on Oracle Linux 6 after fix for JDK-8206246
  • Type: Bug
  • Component: javafx
  • Sub-Component: build
  • Affected Version: 8u202
  • Priority: P1
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2018-10-12
  • Updated: 2018-10-13
  • Resolved: 2018-10-13
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 8
8u202 inapplicableFixed
Related Reports
Relates :  
Relates :  
Description
The fix for JDK-8206246 to enable GTK3 for FX 8u has caused a fatal build failure on our production Oracle Linux 6 build machines. There are two problems that occurred:

1. OL 6 machine does not have the gtk3 packages (we need gtk3-devel). It looks like the gtk3 packages are not available for OL 6.

2. Our OL 6 machines have an older version of GTK2 so we get compilation errors (see below for three such errors).

Until we are able to upgrade to Oracle Linux 7 we will need to backout this change.

Here are three of the errors we see (they are repeated multiple times).

In file included from modules/graphics/src/main/native-glass/gtk/glass_general.h:36:0,
                 from modules/graphics/src/main/native-glass/gtk/glass_general.cpp:25:
modules/graphics/src/main/native-glass/gtk/wrapped.h:33:1: error: 'GSettingsSchemaSource' does not name a type
 GSettingsSchemaSource * wrapped_g_settings_schema_source_get_default (void);
 ^~~~~~~~~~~~~~~~~~~~~

modules/graphics/src/main/native-glass/gtk/glass_general.cpp: In function 'gint glass_gdk_visual_get_depth(GdkVisual*)':
modules/graphics/src/main/native-glass/gtk/glass_general.cpp:507:12: error: 'gdk_visual_get_depth' was not declared in this scope
     return gdk_visual_get_depth(visual);
            ^~~~~~~~~~~~~~~~~~~~

In file included from modules/graphics/src/main/native-glass/gtk/glass_key.cpp:30:0:
modules/graphics/src/main/native-glass/gtk/glass_key.cpp: In function 'void initialize_key()':
modules/graphics/src/main/native-glass/gtk/glass_general.h:54:38: error: 'GDK_KEY_Return' was not declared in this scope
 #define GLASS_GDK_KEY_CONSTANT(key) (GDK_KEY_ ## key)
                                      ^
modules/graphics/src/main/native-glass/gtk/glass_key.cpp:44:43: note: in expansion of macro 'GLASS_GDK_KEY_CONSTANT'
Comments
Changeset: ba4fb73d062b Author: kcr Date: 2018-10-12 11:55 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/ba4fb73d062b 8212139: FX 8u-dev fails to build on Oracle Linux 6 after fix for JDK-8206246 Summary: Backout the fix for JDK-8206246 Reviewed-by: prr
13-10-2018