diff options
author | Jens Rehsack <rehsack@gmail.com> | 2015-12-08 14:52:51 +0100 |
---|---|---|
committer | Maxin B. John <maxin.john@intel.com> | 2015-12-08 17:43:40 +0200 |
commit | bac3b9acee5110390d15d38dacdb1622e31b2238 (patch) | |
tree | 1f39d7b8392576f19f77fb65f470391e2d15c6c1 /recipes-core/openjdk/patches-openjdk-8/openjdk8-no-genx11-in-headless.patch | |
parent | 04d5d0bf414c05ca59618d77f17ff9898aa1c566 (diff) | |
download | meta-java-bac3b9acee5110390d15d38dacdb1622e31b2238.tar.gz |
openjdk-8: add recipes for openjdk-8 and openjre-8
This adds openjdk-8 for native and target builds and allows a stripped
openjre-8 being built as well instead of trying to cherry-pick jre
components from jdk-image.
The recipes allow building openjdk-8 with or without:
* x11
* cups
* alsa/pulseaudio
and let packager enable unlimited-crypto, if desired.
To support certificate based java libraries, cacerts is created based on
ca-certificates from OE-core.
Since there can be only one PROVIDES for virtual/java-native and virtual/javac-native,
move the provides to openjdk-8-native (I think everyone agrees it's a better
choice than ecj-bootstrap-native).
Plus: Applying a fix from openjdk-9 repository which fixes build issues using gcc5
Signed-off-by: Jens Rehsack <sno@netbsd.org>
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8/openjdk8-no-genx11-in-headless.patch')
-rw-r--r-- | recipes-core/openjdk/patches-openjdk-8/openjdk8-no-genx11-in-headless.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/openjdk8-no-genx11-in-headless.patch b/recipes-core/openjdk/patches-openjdk-8/openjdk8-no-genx11-in-headless.patch new file mode 100644 index 0000000..e34305c --- /dev/null +++ b/recipes-core/openjdk/patches-openjdk-8/openjdk8-no-genx11-in-headless.patch | |||
@@ -0,0 +1,17 @@ | |||
1 | --- jdk/make/GenerateSources.gmk.orig 2015-08-24 11:23:34.720648954 +0200 | ||
2 | +++ jdk/make/GenerateSources.gmk 2015-08-24 11:24:41.376649205 +0200 | ||
3 | @@ -73,9 +73,11 @@ | ||
4 | GENSRC += $(GENSRC_OSX_ICONS) | ||
5 | endif | ||
6 | |||
7 | - ifneq ($(OPENJDK_TARGET_OS), macosx) | ||
8 | - include gensrc/GensrcX11Wrappers.gmk | ||
9 | - GENSRC += $(GENSRC_X11WRAPPERS) | ||
10 | + ifndef BUILD_HEADLESS_ONLY | ||
11 | + ifneq ($(OPENJDK_TARGET_OS), macosx) | ||
12 | + include gensrc/GensrcX11Wrappers.gmk | ||
13 | + GENSRC += $(GENSRC_X11WRAPPERS) | ||
14 | + endif | ||
15 | endif | ||
16 | endif | ||
17 | |||