diff options
Diffstat (limited to 'recipes-core/icedtea')
3 files changed, 87 insertions, 53 deletions
diff --git a/recipes-core/icedtea/icedtea7-native.inc b/recipes-core/icedtea/icedtea7-native.inc index b0b9419..d6f8fd7 100644 --- a/recipes-core/icedtea/icedtea7-native.inc +++ b/recipes-core/icedtea/icedtea7-native.inc | |||
@@ -16,24 +16,28 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} | |||
16 | PACKAGECONFIG[x11] = ",--disable-headful,libx11-native xorgproto-native libxt-native libxext-native libxrender-native" | 16 | PACKAGECONFIG[x11] = ",--disable-headful,libx11-native xorgproto-native libxt-native libxext-native libxrender-native" |
17 | 17 | ||
18 | OEMAKE_BUILD_HEADLESS_ONLY = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', 'BUILD_HEADLESS_ONLY=1', d)}" | 18 | OEMAKE_BUILD_HEADLESS_ONLY = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', 'BUILD_HEADLESS_ONLY=1', d)}" |
19 | CFLAGS_append = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', ' -DHEADLESS=true', d)}" | 19 | CFLAGS:append = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', ' -DHEADLESS=true', d)}" |
20 | 20 | ||
21 | # Disable dead store elimination and set C++ standard to C++98. | 21 | # Disable dead store elimination and set C++ standard to C++98. |
22 | # There are dead stores in the JVM that would be pretty hard to | 22 | # There are dead stores in the JVM that would be pretty hard to |
23 | # remove, so disable the optimisation in the compiler. | 23 | # remove, so disable the optimisation in the compiler. |
24 | CFLAGS_append = " -fno-tree-dse" | 24 | CFLAGS:append = " -std=gnu++98 -fno-tree-dse -fno-tree-vectorize" |
25 | CXXFLAGS_append = " -fno-tree-dse" | 25 | CXXFLAGS:append = " -std=gnu++98 -fno-tree-dse" |
26 | CXX_append = " -std=gnu++98" | ||
27 | 26 | ||
28 | # WORKAROUND: ignore errors from new compilers | 27 | # WORKAROUND: ignore errors from new compilers |
29 | CFLAGS_append = " -Wno-error=stringop-overflow -Wno-error=return-type" | 28 | CFLAGS:append = " -Wno-error=stringop-overflow -Wno-error=return-type" |
29 | |||
30 | # oe.utils.get_host_compiler_version returns "gcc, 9.2" and we want -> "9" | ||
31 | HOST_COMPILER_MAJOR="${@oe.utils.get_host_compiler_version(d)[1].split(".", 2)[0]}" | ||
32 | CFLAGS:append = " ${@oe.utils.less_or_equal('HOST_COMPILER_MAJOR', '8', '', ' -Wno-error=format-overflow', d)}" | ||
30 | 33 | ||
31 | # Explicitly pass -fcommon since GCC 10 defaults to -fno-common for C sources | 34 | # Explicitly pass -fcommon since GCC 10 defaults to -fno-common for C sources |
32 | CFLAGS_append = " -fcommon" | 35 | CFLAGS:append = " -fcommon" |
33 | 36 | ||
34 | inherit native java autotools pkgconfig | 37 | inherit java autotools pkgconfig |
35 | inherit openjdk-build-helper | 38 | inherit openjdk-build-helper |
36 | inherit python3native | 39 | inherit python3native |
40 | inherit native | ||
37 | 41 | ||
38 | JAVA_HOME[unexport] = "1" | 42 | JAVA_HOME[unexport] = "1" |
39 | 43 | ||
@@ -61,43 +65,41 @@ B = "${S}/build" | |||
61 | # openjdk looks in /usr/include and /usr/lib for freetype by default. | 65 | # openjdk looks in /usr/include and /usr/lib for freetype by default. |
62 | export ALT_FREETYPE_HEADERS_PATH = "${STAGING_INCDIR}/freetype2" | 66 | export ALT_FREETYPE_HEADERS_PATH = "${STAGING_INCDIR}/freetype2" |
63 | export ALT_FREETYPE_LIB_PATH = "${STAGING_LIBDIR}" | 67 | export ALT_FREETYPE_LIB_PATH = "${STAGING_LIBDIR}" |
68 | export ALT_CUPS_HEADERS_PATH = "${STAGING_INCDIR}" | ||
64 | 69 | ||
65 | # libfreetype.so.6 is copied from STAGING_LIBDIR | 70 | # libfreetype.so.6 is copied from STAGING_LIBDIR |
66 | # which is already stripped. | 71 | # which is already stripped. |
67 | INSANE_SKIP_${PN} = "already-stripped" | 72 | INSANE_SKIP:${PN} = "already-stripped" |
68 | 73 | ||
69 | EXTRA_OECONF = "\ | 74 | EXTRA_OECONF = "\ |
70 | --with-parallel-jobs=${@openjdk_build_helper_get_parallel_make(d)} \ | 75 | --with-parallel-jobs=${@openjdk_build_helper_get_parallel_make(d)} \ |
71 | \ | 76 | --disable-tests \ |
72 | --disable-tests \ | 77 | --disable-hotspot-tests \ |
73 | --disable-hotspot-tests \ | 78 | --disable-langtools-tests \ |
74 | --disable-langtools-tests \ | 79 | --disable-jdk-tests \ |
75 | --disable-jdk-tests \ | 80 | --disable-pulse-java \ |
76 | --disable-pulse-java \ | 81 | --disable-docs \ |
77 | --disable-docs \ | 82 | --disable-nss \ |
78 | --disable-nss \ | 83 | --disable-system-lcms \ |
79 | --disable-system-lcms \ | 84 | --disable-system-gtk \ |
80 | --disable-system-gtk \ | 85 | --with-jdk-home=${WORKDIR}/fake-jdk \ |
81 | \ | 86 | --with-javac=${STAGING_BINDIR_NATIVE}/javac \ |
82 | --with-jdk-home=${WORKDIR}/fake-jdk \ | 87 | --with-rhino=${STAGING_DATADIR_NATIVE}/java/rhino.jar \ |
83 | --with-javac=${STAGING_BINDIR_NATIVE}/javac \ | 88 | --with-openjdk-src-zip=${DL_DIR}/${OPENJDK_FILE_DOWNLOAD} \ |
84 | --with-rhino=${STAGING_DATADIR_NATIVE}/java/rhino.jar \ | 89 | --with-hotspot-src-zip=${DL_DIR}/${HOTSPOT_FILE_DOWNLOAD} \ |
85 | \ | 90 | --with-corba-src-zip=${DL_DIR}/${CORBA_FILE_DOWNLOAD} \ |
86 | --with-openjdk-src-zip=${DL_DIR}/${OPENJDK_FILE} \ | 91 | --with-jaxp-src-zip=${DL_DIR}/${JAXP_FILE_DOWNLOAD} \ |
87 | --with-hotspot-src-zip=${DL_DIR}/${HOTSPOT_FILE} \ | 92 | --with-jaxws-src-zip=${DL_DIR}/${JAXWS_FILE_DOWNLOAD} \ |
88 | --with-corba-src-zip=${DL_DIR}/${CORBA_FILE} \ | 93 | --with-jdk-src-zip=${DL_DIR}/${JDK_FILE_DOWNLOAD} \ |
89 | --with-jaxp-src-zip=${DL_DIR}/${JAXP_FILE} \ | 94 | --with-langtools-src-zip=${DL_DIR}/${LANGTOOLS_FILE_DOWNLOAD} \ |
90 | --with-jaxws-src-zip=${DL_DIR}/${JAXWS_FILE} \ | 95 | ac_cv_path_UNZIP_BIN="${STAGING_BINDIR_NATIVE}/unzip" \ |
91 | --with-jdk-src-zip=${DL_DIR}/${JDK_FILE} \ | 96 | " |
92 | --with-langtools-src-zip=${DL_DIR}/${LANGTOOLS_FILE} \ | ||
93 | ac_cv_path_UNZIP_BIN="${STAGING_BINDIR_NATIVE}/unzip" \ | ||
94 | " | ||
95 | 97 | ||
96 | JDK_DIR = "icedtea7-native" | 98 | JDK_DIR = "icedtea7-native" |
97 | 99 | ||
98 | JDK_INSTALL_DIR = "${D}/${libdir_jvm}/${JDK_DIR}" | 100 | JDK_INSTALL_DIR = "${D}/${libdir_jvm}/${JDK_DIR}" |
99 | 101 | ||
100 | do_configure_prepend() { | 102 | do_configure:prepend() { |
101 | arch="${@openjdk_build_helper_get_icedtea_arch(d)}" | 103 | arch="${@openjdk_build_helper_get_icedtea_arch(d)}" |
102 | libarch="${@openjdk_build_helper_get_icedtea_arch(d)}" | 104 | libarch="${@openjdk_build_helper_get_icedtea_arch(d)}" |
103 | 105 | ||
@@ -128,7 +130,7 @@ do_configure_prepend() { | |||
128 | 130 | ||
129 | POST_CONFIGURE_CLEAN_X11 = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', 'rm openjdk*/jdk/src/solaris/classes/sun/awt/X11/*.java', d)}" | 131 | POST_CONFIGURE_CLEAN_X11 = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', 'rm openjdk*/jdk/src/solaris/classes/sun/awt/X11/*.java', d)}" |
130 | 132 | ||
131 | do_configure_append() { | 133 | do_configure:append() { |
132 | oe_runmake patch-fsg | 134 | oe_runmake patch-fsg |
133 | 135 | ||
134 | for F in openjdk/jdk/make/common/shared/Compiler-gcc.gmk ; | 136 | for F in openjdk/jdk/make/common/shared/Compiler-gcc.gmk ; |
diff --git a/recipes-core/icedtea/openjdk-7-03b147/icedtea-jdk-replace-sys-sysctl.patch b/recipes-core/icedtea/openjdk-7-03b147/icedtea-jdk-replace-sys-sysctl.patch new file mode 100644 index 0000000..1c7a585 --- /dev/null +++ b/recipes-core/icedtea/openjdk-7-03b147/icedtea-jdk-replace-sys-sysctl.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | --- openjdk/jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c | ||
2 | +++ openjdk/jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c | ||
3 | @@ -35,7 +35,7 @@ | ||
4 | #endif | ||
5 | #ifdef __linux__ | ||
6 | #include <unistd.h> | ||
7 | -#include <sys/sysctl.h> | ||
8 | +#include <linux/sysctl.h> | ||
9 | #include <sys/utsname.h> | ||
10 | #include <netinet/ip.h> | ||
11 | |||
12 | --- openjdk/jdk/src/solaris/native/java/net/PlainSocketImpl.c | ||
13 | +++ openjdk/jdk/src/solaris/native/java/net/PlainSocketImpl.c | ||
14 | @@ -43,7 +43,7 @@ | ||
15 | #endif | ||
16 | #ifdef __linux__ | ||
17 | #include <unistd.h> | ||
18 | -#include <sys/sysctl.h> | ||
19 | +#include <linux/sysctl.h> | ||
20 | #endif | ||
21 | |||
22 | #include "jvm.h" | ||
diff --git a/recipes-core/icedtea/openjdk-7-release-03b147.inc b/recipes-core/icedtea/openjdk-7-release-03b147.inc index 9816c0c..16bf592 100644 --- a/recipes-core/icedtea/openjdk-7-release-03b147.inc +++ b/recipes-core/icedtea/openjdk-7-release-03b147.inc | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | |||
5 | FILESPATH =. "${FILE_DIRNAME}/openjdk-7-03b147:" | 5 | FILESPATH =. "${FILE_DIRNAME}/openjdk-7-03b147:" |
6 | 6 | ||
7 | # Force arm mode for now | 7 | # Force arm mode for now |
8 | ARM_INSTRUCTION_SET_armv4t = "ARM" | 8 | ARM_INSTRUCTION_SET:armv4t = "ARM" |
9 | 9 | ||
10 | ICEDTEA_URI = "http://icedtea.wildebeest.org/download/source/${ICEDTEA}.tar.gz;name=iced" | 10 | ICEDTEA_URI = "http://icedtea.wildebeest.org/download/source/${ICEDTEA}.tar.gz;name=iced" |
11 | 11 | ||
@@ -13,50 +13,58 @@ ICEDTEA_PREFIX = "icedtea7-forest-2.1" | |||
13 | ICEDTEA_HG_URL = "http://icedtea.classpath.org/hg/release/${ICEDTEA_PREFIX}" | 13 | ICEDTEA_HG_URL = "http://icedtea.classpath.org/hg/release/${ICEDTEA_PREFIX}" |
14 | 14 | ||
15 | OPENJDK_CHANGESET = "22cc03983e20" | 15 | OPENJDK_CHANGESET = "22cc03983e20" |
16 | OPENJDK_FILE = "${OPENJDK_CHANGESET}.tar.bz2" | 16 | OPENJDK_FILE_UPSTREAM = "${OPENJDK_CHANGESET}.tar.bz2" |
17 | OPENJDK_URI = "${ICEDTEA_HG_URL}/archive/${OPENJDK_FILE};name=openjdk;unpack=false" | 17 | OPENJDK_FILE_DOWNLOAD = "openjdk-${OPENJDK_CHANGESET}.tar.bz2" |
18 | OPENJDK_URI = "${ICEDTEA_HG_URL}/archive/${OPENJDK_FILE_UPSTREAM};name=openjdk;unpack=false;downloadfilename=${OPENJDK_FILE_DOWNLOAD}" | ||
18 | SRC_URI[openjdk.md5sum] = "f98b0f7a69f9427a5b3775dddddc89cb" | 19 | SRC_URI[openjdk.md5sum] = "f98b0f7a69f9427a5b3775dddddc89cb" |
19 | SRC_URI[openjdk.sha256sum] = "758227833982371e3a94def84226a947f8dbbd176517f313b8cb96840bdea41e" | 20 | SRC_URI[openjdk.sha256sum] = "758227833982371e3a94def84226a947f8dbbd176517f313b8cb96840bdea41e" |
20 | 21 | ||
21 | HOTSPOT_CHANGESET = "8b7c4c5f6ba9" | 22 | HOTSPOT_CHANGESET = "8b7c4c5f6ba9" |
22 | HOTSPOT_FILE = "${HOTSPOT_CHANGESET}.tar.gz" | 23 | HOTSPOT_FILE_UPSTREAM = "${HOTSPOT_CHANGESET}.tar.gz" |
23 | HOTSPOT_URI = "${ICEDTEA_HG_URL}/hotspot/archive/${HOTSPOT_FILE};name=hotspot;unpack=false" | 24 | HOTSPOT_FILE_DOWNLOAD = "hotspot-${HOTSPOT_CHANGESET}.tar.gz" |
25 | HOTSPOT_URI = "${ICEDTEA_HG_URL}/hotspot/archive/${HOTSPOT_FILE_UPSTREAM};name=hotspot;unpack=false;downloadfilename=${HOTSPOT_FILE_DOWNLOAD}" | ||
24 | SRC_URI[hotspot.md5sum] = "cb45a8f19d77acc1f4f48e75e36a27fe" | 26 | SRC_URI[hotspot.md5sum] = "cb45a8f19d77acc1f4f48e75e36a27fe" |
25 | SRC_URI[hotspot.sha256sum] = "22866990d143e76ced94b76defa3051e5e5d9a51fd272d63daa0df272d6406a2" | 27 | SRC_URI[hotspot.sha256sum] = "22866990d143e76ced94b76defa3051e5e5d9a51fd272d63daa0df272d6406a2" |
26 | 28 | ||
27 | CORBA_CHANGESET = "5617f6c5cc94" | 29 | CORBA_CHANGESET = "5617f6c5cc94" |
28 | CORBA_FILE = "${CORBA_CHANGESET}.tar.gz" | 30 | CORBA_FILE_UPSTREAM = "${CORBA_CHANGESET}.tar.gz" |
29 | CORBA_URI = "${ICEDTEA_HG_URL}/corba/archive/${CORBA_FILE};name=corba;unpack=false" | 31 | CORBA_FILE_DOWNLOAD = "corba-${CORBA_CHANGESET}.tar.gz" |
32 | CORBA_URI = "${ICEDTEA_HG_URL}/corba/archive/${CORBA_FILE_UPSTREAM};name=corba;unpack=false;downloadfilename=${CORBA_FILE_DOWNLOAD}" | ||
30 | SRC_URI[corba.md5sum] = "920f1a788a7fdef29a5cd70892331251" | 33 | SRC_URI[corba.md5sum] = "920f1a788a7fdef29a5cd70892331251" |
31 | SRC_URI[corba.sha256sum] = "963915483530f311ff313635f79ed11ea7ce5a1c0dbee5d1acb1994132857fa3" | 34 | SRC_URI[corba.sha256sum] = "963915483530f311ff313635f79ed11ea7ce5a1c0dbee5d1acb1994132857fa3" |
32 | 35 | ||
33 | JAXP_CHANGESET = "7a8825b15df6" | 36 | JAXP_CHANGESET = "7a8825b15df6" |
34 | JAXP_FILE = "${JAXP_CHANGESET}.tar.gz" | 37 | JAXP_FILE_UPSTREAM = "${JAXP_CHANGESET}.tar.gz" |
35 | JAXP_URI = "${ICEDTEA_HG_URL}/jaxp/archive/${JAXP_FILE};name=jaxp;unpack=false" | 38 | JAXP_FILE_DOWNLOAD = "jaxp-${JAXP_CHANGESET}.tar.gz" |
39 | JAXP_URI = "${ICEDTEA_HG_URL}/jaxp/archive/${JAXP_FILE_UPSTREAM};name=jaxp;unpack=false;downloadfilename=${JAXP_FILE_DOWNLOAD}" | ||
36 | SRC_URI[jaxp.md5sum] = "a0982b6df79739127871e355a40ca5a6" | 40 | SRC_URI[jaxp.md5sum] = "a0982b6df79739127871e355a40ca5a6" |
37 | SRC_URI[jaxp.sha256sum] = "297c8dbeed5afa5395b6be06b17282d53f8a888c2909074dfc1605afc0daf1c2" | 41 | SRC_URI[jaxp.sha256sum] = "297c8dbeed5afa5395b6be06b17282d53f8a888c2909074dfc1605afc0daf1c2" |
38 | 42 | ||
39 | JAXWS_CHANGESET = "7edfbfe974f2" | 43 | JAXWS_CHANGESET = "7edfbfe974f2" |
40 | JAXWS_FILE = "${JAXWS_CHANGESET}.tar.gz" | 44 | JAXWS_FILE_UPSTREAM = "${JAXWS_CHANGESET}.tar.gz" |
41 | JAXWS_URI = "${ICEDTEA_HG_URL}/jaxws/archive/${JAXWS_FILE};name=jaxws;unpack=false" | 45 | JAXWS_FILE_DOWNLOAD = "jaxws-${JAXWS_CHANGESET}.tar.gz" |
46 | JAXWS_URI = "${ICEDTEA_HG_URL}/jaxws/archive/${JAXWS_FILE_UPSTREAM};name=jaxws;unpack=false;downloadfilename=${JAXWS_FILE_DOWNLOAD}" | ||
42 | SRC_URI[jaxws.md5sum] = "2deecec809ea8e38835678889c2bc3ac" | 47 | SRC_URI[jaxws.md5sum] = "2deecec809ea8e38835678889c2bc3ac" |
43 | SRC_URI[jaxws.sha256sum] = "823ca6b8fd780bf1b1565a90cfc8ec6f0ee422a5d25ffb20b1ce0272dc4955aa" | 48 | SRC_URI[jaxws.sha256sum] = "823ca6b8fd780bf1b1565a90cfc8ec6f0ee422a5d25ffb20b1ce0272dc4955aa" |
44 | 49 | ||
45 | JDK_CHANGESET = "d5ddeffc4651" | 50 | JDK_CHANGESET = "d5ddeffc4651" |
46 | JDK_FILE = "${JDK_CHANGESET}.tar.gz" | 51 | JDK_FILE_UPSTREAM = "${JDK_CHANGESET}.tar.gz" |
47 | JDK_URI = "${ICEDTEA_HG_URL}/jdk/archive/${JDK_FILE};name=jdk;unpack=false" | 52 | JDK_FILE_DOWNLOAD = "jdk-${JDK_CHANGESET}.tar.gz" |
53 | JDK_URI = "${ICEDTEA_HG_URL}/jdk/archive/${JDK_FILE_UPSTREAM};name=jdk;unpack=false;downloadfilename=${JDK_FILE_DOWNLOAD}" | ||
48 | SRC_URI[jdk.md5sum] = "27c28d6be213df818490e69f12efe475" | 54 | SRC_URI[jdk.md5sum] = "27c28d6be213df818490e69f12efe475" |
49 | SRC_URI[jdk.sha256sum] = "e83e6234842376147a4c32451f23d629ba107e908ebdb0f367657f9cc6c1be98" | 55 | SRC_URI[jdk.sha256sum] = "e83e6234842376147a4c32451f23d629ba107e908ebdb0f367657f9cc6c1be98" |
50 | 56 | ||
51 | LANGTOOLS_CHANGESET = "b534c4c6cd9b" | 57 | LANGTOOLS_CHANGESET = "b534c4c6cd9b" |
52 | LANGTOOLS_FILE = "${LANGTOOLS_CHANGESET}.tar.gz" | 58 | LANGTOOLS_FILE_UPSTREAM = "${LANGTOOLS_CHANGESET}.tar.gz" |
53 | LANGTOOLS_URI = "${ICEDTEA_HG_URL}/langtools/archive/${LANGTOOLS_FILE};name=langtools;unpack=false" | 59 | LANGTOOLS_FILE_DOWNLOAD = "langtools-${LANGTOOLS_CHANGESET}.tar.gz" |
60 | LANGTOOLS_URI = "${ICEDTEA_HG_URL}/langtools/archive/${LANGTOOLS_FILE_UPSTREAM};name=langtools;unpack=false;downloadfilename=${LANGTOOLS_FILE_DOWNLOAD}" | ||
54 | SRC_URI[langtools.md5sum] = "16b72f3fea8ac4e5b50de693e87f9c53" | 61 | SRC_URI[langtools.md5sum] = "16b72f3fea8ac4e5b50de693e87f9c53" |
55 | SRC_URI[langtools.sha256sum] = "c77dd42d83f06d18fa8aa65c93d137608a2e02cf24b68fc10d7b1c0bcc12a93c" | 62 | SRC_URI[langtools.sha256sum] = "c77dd42d83f06d18fa8aa65c93d137608a2e02cf24b68fc10d7b1c0bcc12a93c" |
56 | 63 | ||
57 | CACAO_VERSION = "a567bcb7f589" | 64 | CACAO_VERSION = "a567bcb7f589" |
58 | CACAO_FILE = "${CACAO_VERSION}.tar.gz" | 65 | CACAO_FILE_UPSTREAM = "${CACAO_VERSION}.tar.gz" |
59 | CACAO_URI = "http://icedtea.wildebeest.org/download/drops/cacao/${CACAO_FILE};name=cacao;unpack=false" | 66 | CACAO_FILE_DOWNLOAD = "cacao-${CACAO_VERSION}.tar.gz" |
67 | CACAO_URI = "http://icedtea.wildebeest.org/download/drops/cacao/${CACAO_FILE_UPSTREAM};name=cacao;unpack=false;downloadfilename=${CACAO_FILE_DOWNLOAD}" | ||
60 | SRC_URI[cacao.md5sum] = "ec1def7f0d3d25e9e7da47c480f26a73" | 68 | SRC_URI[cacao.md5sum] = "ec1def7f0d3d25e9e7da47c480f26a73" |
61 | SRC_URI[cacao.sha256sum] = "d49f79debc131a5694cae6ab3ba2864e7f3249ee8d9dc09aae8afdd4dc6b09f9" | 69 | SRC_URI[cacao.sha256sum] = "d49f79debc131a5694cae6ab3ba2864e7f3249ee8d9dc09aae8afdd4dc6b09f9" |
62 | 70 | ||
@@ -93,6 +101,7 @@ OPENJDK_PATCHES = " \ | |||
93 | file://icedtea-jdk-unzip.patch;apply=no \ | 101 | file://icedtea-jdk-unzip.patch;apply=no \ |
94 | file://icedtea-hotspot-handle-gcc7-format-overflow.patch;apply=no \ | 102 | file://icedtea-hotspot-handle-gcc7-format-overflow.patch;apply=no \ |
95 | file://icedtea-hotspot-fix-prefix_relocInfo-declaration.patch;apply=no \ | 103 | file://icedtea-hotspot-fix-prefix_relocInfo-declaration.patch;apply=no \ |
104 | file://icedtea-jdk-replace-sys-sysctl.patch;apply=no \ | ||
96 | " | 105 | " |
97 | 106 | ||
98 | OPENJDK_HEADLESS_PATCHES = " \ | 107 | OPENJDK_HEADLESS_PATCHES = " \ |
@@ -118,9 +127,10 @@ export DISTRIBUTION_PATCHES = " \ | |||
118 | patches/icedtea-jdk-unzip.patch \ | 127 | patches/icedtea-jdk-unzip.patch \ |
119 | patches/icedtea-hotspot-handle-gcc7-format-overflow.patch \ | 128 | patches/icedtea-hotspot-handle-gcc7-format-overflow.patch \ |
120 | patches/icedtea-hotspot-fix-prefix_relocInfo-declaration.patch \ | 129 | patches/icedtea-hotspot-fix-prefix_relocInfo-declaration.patch \ |
130 | patches/icedtea-jdk-replace-sys-sysctl.patch \ | ||
121 | ${CLEAN_X11_DISTRIBUTION_PATCH} \ | 131 | ${CLEAN_X11_DISTRIBUTION_PATCH} \ |
122 | " | 132 | " |
123 | 133 | ||
124 | # readdir_r was deprecated in glibc-2.24. Ignore the error for now | 134 | # readdir_r was deprecated in glibc-2.24. Ignore the error for now |
125 | # NOTE: When updating the recipe, please check if this is still needed | 135 | # NOTE: When updating the recipe, please check if this is still needed |
126 | CFLAGS_append = " -Wno-error=deprecated-declarations" | 136 | CFLAGS:append = " -Wno-error=deprecated-declarations" |