------------------------------------------------------------
revno: 650
committer: Matthias Klose <[email protected]>
branch nick: openjdk8
timestamp: Fri 2015-09-04 16:45:46 +0200
message:
* Re-enable the atk bridge for releases with a fixed atk bridge.
* Really apply the 32bit detection patch. Closes: #787072.
added:
debian/accessibility-atk.properties.enabled
renamed:
debian/accessibility-atk.properties =>
debian/accessibility-atk.properties.disabled
modified:
debian/changelog
debian/rules
--
lp:~openjdk/openjdk/openjdk8
https://code.launchpad.net/~openjdk/openjdk/openjdk8
Your team Debian Java Maintainers is subscribed to branch
lp:~openjdk/openjdk/openjdk8.
To unsubscribe from this branch go to
https://code.launchpad.net/~openjdk/openjdk/openjdk8/+edit-subscription
=== renamed file 'debian/accessibility-atk.properties' => 'debian/accessibility-atk.properties.disabled'
=== added file 'debian/accessibility-atk.properties.enabled'
--- debian/accessibility-atk.properties.enabled 1970-01-01 00:00:00 +0000
+++ debian/accessibility-atk.properties.enabled 2015-09-04 14:45:46 +0000
@@ -0,0 +1,9 @@
+#
+# The following line specifies the assistive technology classes
+# that should be loaded into the Java VM when the AWT is initailized.
+# Specify multiple classes by separating them with commas.
+# Note: the line below cannot end the file (there must be at
+# a minimum a blank line following it).
+#
+assistive_technologies=org.GNOME.Accessibility.AtkWrapper
+
=== modified file 'debian/changelog'
--- debian/changelog 2015-09-03 11:46:49 +0000
+++ debian/changelog 2015-09-04 14:45:46 +0000
@@ -4,6 +4,8 @@
LP: #1448548.
* Define _alpha_ / _sh_ preprocessor macros instead of alpha / sh.
* Fix jdk gensrc build on x32.
+ * Re-enable the atk bridge for releases with a fixed atk bridge.
+ * Really apply the 32bit detection patch. Closes: #787072.
-- Matthias Klose <[email protected]> Thu, 13 Aug 2015 14:21:26 +0200
=== modified file 'debian/rules'
--- debian/rules 2015-09-03 11:26:27 +0000
+++ debian/rules 2015-09-04 14:45:46 +0000
@@ -403,6 +403,7 @@
libjpeg-fix.diff \
sparc-fixes.diff \
jdk-target-arch-define.diff \
+ jvm-detect-32bit-archs.diff \
# FIXME: update patches
#accessible-toolkit.patch # update for 8
@@ -1703,8 +1704,13 @@
done
ifeq ($(with_bridge),atk)
- cp -p debian/accessibility-atk.properties \
- $(d)/$(basedir)/jre/lib/accessibility.properties
+ ifneq (,$(filter $(distrel),lenny wheezy squeeze jessie lucid precise quantal raring saucy trusty utopic vivid))
+ cp -p debian/accessibility-atk.properties.disabled \
+ $(d)/$(basedir)/jre/lib/accessibility.properties
+ else
+ cp -p debian/accessibility-atk.properties.enabled \
+ $(d)/$(basedir)/jre/lib/accessibility.properties
+ endif
else
cp -p debian/accessibility.properties $(d)/$(basedir)/jre/lib/
endif
__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers>.
Please use
[email protected] for discussions and questions.