diff options
-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.patch | 22 |
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 \ | |||
3 | patterns for concurrent communication software" | 3 | patterns for concurrent communication software" |
4 | LICENSE = "ACE-TAO-CIAO" | 4 | LICENSE = "ACE-TAO-CIAO" |
5 | HOMEPAGE = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html" | 5 | HOMEPAGE = "http://www.dre.vanderbilt.edu/~schmidt/ACE.html" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=96ef88a5529594698e8ceabdd47df92c" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d2c090e9c730fd91677782d8e2091d77" |
7 | 7 | ||
8 | DEPENDS += "openssl gperf-native" | 8 | DEPENDS += "openssl gperf-native" |
9 | 9 | ||
10 | SRC_URI = "https://github.com/DOCGroup/ACE_TAO/releases/download/ACE%2BTAO-6_5_8/ACE-${PV}.tar.bz2 \ | 10 | SRC_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 | ||
14 | SRC_URI[md5sum] = "a6ba6a944612fe0696c90cbb5c3078ee" | 15 | SRC_URI[sha256sum] = "90de437926928e98e9fd9132c7c3e886ca79f25567adeccbc24a5996f230d8e2" |
15 | SRC_URI[sha256sum] = "cda2a960dbb9970a907663627711b2e2b14b3484a2859ae936370bcad0b16923" | ||
16 | 16 | ||
17 | COMPATIBLE_HOST_libc-musl = "null" | 17 | COMPATIBLE_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 @@ | |||
1 | glibc >= 2.32 has removed sys/sysctl.h see | ||
2 | |||
3 | https://sourceware.org/git/?p=glibc.git;a=commit;h=076f09afbac1aa57756faa7a8feadb7936a724e4 | ||
4 | |||
5 | This check therefore ensures that its only used on linux when glibc has support for it | ||
6 | |||
7 | Upstream-Status: Pending | ||
8 | |||
9 | Signed-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) | ||