diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2015-08-12 17:03:53 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-08-18 18:54:06 -0300 |
commit | e07c4666d008f2ec0c0dcfe28f9ea5c7d649f0fe (patch) | |
tree | f51fe961b5cf37a5a2ecdc83e5908d37d0c9e113 | |
parent | 66c97ae7461f4c1a13917131787bb76dc34e6b6f (diff) | |
download | meta-java-e07c4666d008f2ec0c0dcfe28f9ea5c7d649f0fe.tar.gz |
openjdk-7-common: explicitely disable PCSC and SCTP
PCSC default value was changed to true and SCTP was added during the 2.6.0
IcedTea release so disable them both explicitely in openjdk-7-common.inc
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-core/openjdk/openjdk-7-common.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/recipes-core/openjdk/openjdk-7-common.inc b/recipes-core/openjdk/openjdk-7-common.inc index 5b0ac7c..837f0b8 100644 --- a/recipes-core/openjdk/openjdk-7-common.inc +++ b/recipes-core/openjdk/openjdk-7-common.inc | |||
@@ -121,6 +121,13 @@ EXTRA_OECONF = " \ | |||
121 | --with-cc-for-build=${BUILD_CC} \ | 121 | --with-cc-for-build=${BUILD_CC} \ |
122 | " | 122 | " |
123 | 123 | ||
124 | # PCSC default value was changed to true and SCTP was added during the 2.6.0 | ||
125 | # release so we disable them both explicitely here | ||
126 | EXTRA_OECONF += " \ | ||
127 | --disable-system-pcsc \ | ||
128 | --disable-system-sctp \ | ||
129 | " | ||
130 | |||
124 | do_configure_prepend() { | 131 | do_configure_prepend() { |
125 | echo "Configure with parallel-jobs: ${JDK_JOBS}" | 132 | echo "Configure with parallel-jobs: ${JDK_JOBS}" |
126 | 133 | ||