From a70bf4a9e3e1c03ff1cc2d0db228a383943c54db Mon Sep 17 00:00:00 2001 From: Cody P Schafer Date: Fri, 18 Nov 2016 10:25:13 -0500 Subject: openjdk-7: ignore the readdir_r deprecation already ignored in openjdk-8 Without this, icedtea7-native (used to bootstrap openjdk) fails to build on my host system due to deprecation warnings being treated as errors. I haven't observed the same issue with openjdk-7 itself, but it seems likely to affect it as well, so I've added the -Wno-error flag there too. Signed-off-by: Cody P Schafer Signed-off-by: Maxin B. John --- recipes-core/icedtea/openjdk-7-release-03b147.inc | 4 ++++ recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/recipes-core/icedtea/openjdk-7-release-03b147.inc b/recipes-core/icedtea/openjdk-7-release-03b147.inc index 0685729..fe18ee5 100644 --- a/recipes-core/icedtea/openjdk-7-release-03b147.inc +++ b/recipes-core/icedtea/openjdk-7-release-03b147.inc @@ -113,3 +113,7 @@ export DISTRIBUTION_PATCHES = " \ patches/icedtea-jdk-unzip.patch \ ${CLEAN_X11_DISTRIBUTION_PATCH} \ " + +# readdir_r was deprecated in glibc-2.24. Ignore the error for now +# NOTE: When updating the recipe, please check if this is still needed +CFLAGS_append = " -Wno-error=deprecated-declarations" 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 711f572..eba353e 100644 --- a/recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb +++ b/recipes-core/openjdk/openjdk-7_99b00-2.6.5.bb @@ -64,3 +64,7 @@ DISTRIBUTION_PATCHES = "\ " export DISTRIBUTION_PATCHES + +# readdir_r was deprecated in glibc-2.24. Ignore the error for now +# NOTE: When updating the recipe, please check if this is still needed +CFLAGS_append = " -Wno-error=deprecated-declarations" -- cgit v1.2.3-54-g00ecf