summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb')
-rw-r--r--recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb12
1 files changed, 11 insertions, 1 deletions
diff --git a/recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb b/recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb
index eba353e..aa165f5 100644
--- a/recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb
+++ b/recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb
@@ -51,6 +51,9 @@ ICEDTEAPATCHES = "\
51 file://icedtea-xawt-crosscompile-fix.patch;apply=no \ 51 file://icedtea-xawt-crosscompile-fix.patch;apply=no \
52 file://icedtea-jdk-unzip.patch;apply=no \ 52 file://icedtea-jdk-unzip.patch;apply=no \
53 file://icedtea-dtrace-std_h.patch;apply=no \ 53 file://icedtea-dtrace-std_h.patch;apply=no \
54 file://icedtea-hotspot-fix-string-literal-marcos.patch;apply=no \
55 file://icedtea-flags-to-compile-with-GCC-6.patch;apply=no \
56 file://icedtea-specify-overloaded-variant-of-fmod.patch;apply=no \
54" 57"
55 58
56DISTRIBUTION_PATCHES = "\ 59DISTRIBUTION_PATCHES = "\
@@ -61,10 +64,17 @@ DISTRIBUTION_PATCHES = "\
61 patches/icedtea-xawt-crosscompile-fix.patch \ 64 patches/icedtea-xawt-crosscompile-fix.patch \
62 patches/icedtea-jdk-unzip.patch \ 65 patches/icedtea-jdk-unzip.patch \
63 patches/icedtea-dtrace-std_h.patch \ 66 patches/icedtea-dtrace-std_h.patch \
67 patches/icedtea-hotspot-fix-string-literal-marcos.patch \
68 patches/icedtea-flags-to-compile-with-GCC-6.patch \
69 patches/icedtea-specify-overloaded-variant-of-fmod.patch \
64" 70"
65 71
66export DISTRIBUTION_PATCHES 72export DISTRIBUTION_PATCHES
67 73
68# readdir_r was deprecated in glibc-2.24. Ignore the error for now 74# readdir_r was deprecated in glibc-2.24. Ignore the error for now
75#
76# Furthermore shifting negative values produces an error in current gcc versions
77# to avoid this error add -fpermissive
78#
69# NOTE: When updating the recipe, please check if this is still needed 79# NOTE: When updating the recipe, please check if this is still needed
70CFLAGS_append = " -Wno-error=deprecated-declarations" 80CFLAGS_append = " -Wno-error=deprecated-declarations -Wno-error=narrowing -fpermissive"