summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-connectivity/ace/ace_6.5.10.bb (renamed from meta-oe/recipes-connectivity/ace/ace_6.5.8.bb)8
-rw-r--r--meta-oe/recipes-connectivity/ace/files/no_sysctl.patch22
2 files changed, 26 insertions, 4 deletions
diff --git a/meta-oe/recipes-connectivity/ace/ace_6.5.8.bb b/meta-oe/recipes-connectivity/ace/ace_6.5.10.bb
index e35bce7f3c..df194f95a0 100644
--- a/meta-oe/recipes-connectivity/ace/ace_6.5.8.bb
+++ b/meta-oe/recipes-connectivity/ace/ace_6.5.10.bb
@@ -3,16 +3,16 @@ DESCRIPTION = "C++ network programming framework that implements many core \
3patterns for concurrent communication software" 3patterns for concurrent communication software"
4LICENSE = "ACE-TAO-CIAO" 4LICENSE = "ACE-TAO-CIAO"
5HOMEPAGE = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html" 5HOMEPAGE = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html"
6LIC_FILES_CHKSUM = "file://COPYING;md5=96ef88a5529594698e8ceabdd47df92c" 6LIC_FILES_CHKSUM = "file://COPYING;md5=d2c090e9c730fd91677782d8e2091d77"
7 7
8DEPENDS += "openssl gperf-native" 8DEPENDS += "openssl gperf-native"
9 9
10SRC_URI = "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-6_5_8/ACE-${PV}.tar.bz2 \ 10SRC_URI = "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-6_5_10/ACE-${PV}.tar.bz2 \
11 file://ace_config.patch \ 11 file://ace_config.patch \
12 file://no_sysctl.patch \
12 " 13 "
13 14
14SRC_URI[md5sum] = "a6ba6a944612fe0696c90cbb5c3078ee" 15SRC_URI[sha256sum] = "90de437926928e98e9fd9132c7c3e886ca79f25567adeccbc24a5996f230d8e2"
15SRC_URI[sha256sum] = "cda2a960dbb9970a907663627711b2e2b14b3484a2859ae936370bcad0b16923"
16 16
17COMPATIBLE_HOST_libc-musl = "null" 17COMPATIBLE_HOST_libc-musl = "null"
18 18
diff --git a/meta-oe/recipes-connectivity/ace/files/no_sysctl.patch b/meta-oe/recipes-connectivity/ace/files/no_sysctl.patch
new file mode 100644
index 0000000000..278893114c
--- /dev/null
+++ b/meta-oe/recipes-connectivity/ace/files/no_sysctl.patch
@@ -0,0 +1,22 @@
1glibc >= 2.32 has removed sys/sysctl.h see
2
3https://sourceware.org/git/?p=glibc.git;a=commit;h=076f09afbac1aa57756faa7a8feadb7936a724e4
4
5This check therefore ensures that its only used on linux when glibc has support for it
6
7Upstream-Status: Pending
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10--- a/ace/config-linux.h
11+++ b/ace/config-linux.h
12@@ -20,6 +20,10 @@
13
14 #include "ace/config-linux-common.h"
15
16+#if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 32)
17+# define ACE_LACKS_SYS_SYSCTL_H
18+#endif
19+
20 #define ACE_HAS_BYTESEX_H
21
22 #if (defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) >= 500)