diff options
author | Jens Rehsack <rehsack@gmail.com> | 2015-10-16 19:29:38 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-10-19 10:12:53 -0200 |
commit | 2dcff5266a6c1ed39e49b24b8d2984a165ad9c35 (patch) | |
tree | 86757e1611e29bc17a3decf678f2c5e25c2ed0a6 /recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch | |
parent | a73939323984fca1e919d3408d3301ccdbceac9c (diff) | |
download | meta-java-2dcff5266a6c1ed39e49b24b8d2984a165ad9c35.tar.gz |
openjdk-6: remove
Since OpenJDK-6 is not maintained anymore, it's more reasonable to move to OpenJDK-8 instead
of sticking at unmaintained, upstream not supported VM version.
Signed-off-by: Jens Rehsack <sno@netbsd.org>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch')
-rw-r--r-- | recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch b/recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch deleted file mode 100644 index e47ee50..0000000 --- a/recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | Index: openjdk/hotspot/src/share/vm/shark/llvmHeaders.hpp | ||
2 | =================================================================== | ||
3 | --- openjdk/hotspot/src/share/vm/shark/llvmHeaders.hpp 2011-11-18 20:38:09.000000000 +0100 | ||
4 | +++ openjdk/hotspot/src/share/vm/shark/llvmHeaders.hpp 2011-11-18 21:03:15.781644337 +0100 | ||
5 | @@ -38,7 +38,11 @@ | ||
6 | #include <llvm/ModuleProvider.h> | ||
7 | #endif | ||
8 | #include <llvm/Support/IRBuilder.h> | ||
9 | +#if SHARK_LLVM_VERSION >= 29 | ||
10 | +#include <llvm/Support/Threading.h> | ||
11 | +#else | ||
12 | #include <llvm/System/Threading.h> | ||
13 | +#endif | ||
14 | #include <llvm/Target/TargetSelect.h> | ||
15 | #include <llvm/Type.h> | ||
16 | #include <llvm/ExecutionEngine/JITMemoryManager.h> | ||
17 | @@ -47,8 +51,12 @@ | ||
18 | #include <llvm/ExecutionEngine/JIT.h> | ||
19 | #include <llvm/ADT/StringMap.h> | ||
20 | #include <llvm/Support/Debug.h> | ||
21 | +#if SHARK_LLVM_VERSION >= 29 | ||
22 | +#include <llvm/Support/Host.h> | ||
23 | +#else | ||
24 | #include <llvm/System/Host.h> | ||
25 | #endif | ||
26 | +#endif | ||
27 | |||
28 | #include <map> | ||
29 | |||