From 0c265b1fb5049180800c0697440f468b8add79c8 Mon Sep 17 00:00:00 2001 From: Naveen Saini Date: Thu, 15 Aug 2019 16:44:45 +0800 Subject: ace: fix glibc build failure Recent glibc v2.30 dropped XSI STREAMS declarations, which causing below build failure. poky/build/tmp/work/corei7-64-poky-linux/ace/6.5.3-r0/ACE_wrappers/ace/os_include/os_stropts.h:56:17: fatal error: stropts.h: No such file or directory | 56 | # include /**/ | | ^~~~~~~~~~~ | compilation terminated. Signed-off-by: Naveen Saini Signed-off-by: Anuj Mittal --- recipes-bsp/ace/files/config_linux.patch | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 recipes-bsp/ace/files/config_linux.patch (limited to 'recipes-bsp/ace/files/config_linux.patch') diff --git a/recipes-bsp/ace/files/config_linux.patch b/recipes-bsp/ace/files/config_linux.patch new file mode 100644 index 00000000..323a63eb --- /dev/null +++ b/recipes-bsp/ace/files/config_linux.patch @@ -0,0 +1,30 @@ +config-linux.h: fix glibc build failure + +Recent glibc v2.30 dropped XSI STREAMS declarations, +which causing below build failure. + +poky/build/tmp/work/corei7-64-poky-linux/ace/6.5.3-r0/ACE_wrappers/ace/os_include/os_stropts.h:56:17: fatal error: stropts.h: No such file or directory +| 56 | # include /**/ +| | ^~~~~~~~~~~ +| compilation terminated. + +Added GLIBC checks for affected versions. + +For more information about glibc v2.30 change, please check: +https://sourceware.org/git/?p=glibc.git;a=commit;h=a0a0dc83173ce11ff45105fd32e5d14356cdfb9c + +Upstream-Status: Submitted [https://github.com/DOCGroup/ACE_TAO/pull/939] + +Signed-off-by: Naveen Saini + +--- ACE_wrappers_original/ace/config-linux.h 2018-11-19 17:45:53.163139000 +0800 ++++ ACE_wrappers/ace/config-linux.h 2019-08-13 17:04:17.620866464 +0800 +@@ -295,7 +295,7 @@ + + // Starting with FC9 rawhide this file is not available anymore but + // this define is set +-#if defined _XOPEN_STREAMS && _XOPEN_STREAMS == -1 ++#if (defined(__GLIBC__) && (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 30)) || (defined _XOPEN_STREAMS && _XOPEN_STREAMS == -1) + # define ACE_LACKS_STROPTS_H + # define ACE_LACKS_STRRECVFD + #endif -- cgit v1.2.3-54-g00ecf