changeset 2866:89430c9d091b icedtea-2.7.0pre05

S8150954, PR2867, RH1176206: AWT Robot not compatible with GNOME Shell 2016-04-16 Andrew John Hughes <gnu.andrew@member.fsf.org> S8150954, PR2867, RH1176206: AWT Robot not compatible with GNOME Shell * NEWS: Fix wrong bug ID used for PR2867. 2016-03-24 Andrew John Hughes <gnu.andrew@member.fsf.org> S8150954, PR2867, RH1176206: AWT Robot not compatible with GNOME Shell * INSTALL: Update X11 dependency documentation. * configure.ac: Add check for libXcomposite as required by fix for PR2867. Correct variables used by xproto check.
author Andrew John Hughes <gnu_andrew@member.fsf.org>
date Sun, 17 Apr 2016 01:19:06 +0100
parents 21237eb24ba1
children b80abb979a20
files ChangeLog INSTALL NEWS configure.ac
diffstat 4 files changed, 28 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Apr 17 00:38:08 2016 +0100
+++ b/ChangeLog	Sun Apr 17 01:19:06 2016 +0100
@@ -1,5 +1,22 @@
 2016-04-16  Andrew John Hughes  <gnu.andrew@member.fsf.org>
 
+	S8150954, PR2867, RH1176206: AWT Robot not
+	compatible with GNOME Shell
+	* NEWS: Fix wrong bug ID used for PR2867.
+
+2016-03-24  Andrew John Hughes  <gnu.andrew@member.fsf.org>
+
+	S8150954, PR2867, RH1176206: AWT Robot not
+	compatible with GNOME Shell
+	* INSTALL: Update X11 dependency documentation.
+	* configure.ac: Add check
+	for libXcomposite as required by fix
+	for PR2867. Correct variables used by
+	xproto check.
+
+2016-04-16  Andrew John Hughes  <gnu.andrew@member.fsf.org>
+
+	Bump to icedtea-2.7.0pre05.
 	* Makefile.am:
 	(CORBA_CHANGESET): Update to icedtea-2.7.0pre05.
 	(JAXP_CHANGESET): Likewise.
--- a/INSTALL	Sun Apr 17 00:38:08 2016 +0100
+++ b/INSTALL	Sun Apr 17 01:19:06 2016 +0100
@@ -11,7 +11,7 @@
   - GNU libgcj 4.4.0 (or equivalent class library based on GNU Classpath >= 0.95) (--enable-bootstrap mode only, the default)
   - IcedTea6 or IcedTea7
 CUPS
-libX11 (libXp, libXtst, libXi, libXt, libXinerama)
+libX11 (xproto, libX11, libXext, libXtst, libXi, libXt, libXinerama, libXrender, libXcomposite, libXau, libXdmcp)
 Freetype2
 patch
 sed
--- a/NEWS	Sun Apr 17 00:38:08 2016 +0100
+++ b/NEWS	Sun Apr 17 01:19:06 2016 +0100
@@ -34,7 +34,7 @@
   - S8028727, PR2814: [parfait] warnings from b116 for jdk.src.share.native.sun.security.ec: JNI pending exceptions
   - S8048512, PR2814: Uninitialised memory in jdk/src/share/native/sun/security/ec/ECC_JNI.cpp
   - S8071705, PR2819, RH1182694: Java application menu misbehaves when running multiple screen stacked vertically
-  - S8150954, PR2866, RH1176206: AWT Robot not compatible with GNOME Shell
+  - S8150954, PR2867, RH1176206: AWT Robot not compatible with GNOME Shell
 * Bug fixes
   - PR2803: Make system CUPS optional
   - PR2886: Location of 'stap' executable is hard-coded
--- a/configure.ac	Sun Apr 17 00:38:08 2016 +0100
+++ b/configure.ac	Sun Apr 17 01:19:06 2016 +0100
@@ -237,8 +237,8 @@
   AC_MSG_ERROR([Could not find Xproto headers - \
   Try installing xorg-x11-proto-devel.])
 fi
-AC_SUBST(XT_CFLAGS)
-AC_SUBST(XT_LIBS)
+AC_SUBST(XPROTO_CFLAGS)
+AC_SUBST(XPROTO_LIBS)
 
 dnl Check for libXt headers and libraries.
 PKG_CHECK_MODULES(XT, xt,[XT_FOUND=yes],[XT_FOUND=no])
@@ -278,6 +278,13 @@
 Try installing libXrender-devel.])
 fi
 
+PKG_CHECK_MODULES(XCOMPOSITE, xcomposite, [XCOMPOSITE_FOUND=yes], [XCOMPOSITE_FOUND=no])
+if test "x${XCOMPOSITE_FOUND}" = xno
+then AC_MSG_ERROR([Could not find Xcomposite extension.  Try installing libXcomposite-devel.])
+fi
+AC_SUBST(XCOMPOSITE_CFLAGS)
+AC_SUBST(XCOMPOSITE_LIBS)
+
 AC_CHECK_HEADER([sys/sdt.h], [SDT_H_FOUND='yes'],
                 [SDT_H_FOUND='no';
                    AC_MSG_WARN([systemtap support needs sys/sdt.h header])])