zmike pushed a commit to branch efl-1.22.

http://git.enlightenment.org/core/efl.git/commit/?id=727fd04740285b6760fe3535933332a10db147c6

commit 727fd04740285b6760fe3535933332a10db147c6
Author: Romain Naour <romain.na...@smile.fr>
Date:   Tue Apr 16 21:33:44 2019 +0200

    libunibreak: add missing __has_attribute definitions for old compilers
    
    __has_attribute has been introduced with gcc 5 [1].
    
    [1] https://www.gnu.org/software/gcc/gcc-5/changes.html
    
    Fixes:
    
http://autobuild.buildroot.net/results/64ab825048fac1654b0d0698740ddf857fcc0afa/build-end.log
    Signed-off-by: Cedric BAIL <cedric.b...@free.fr>
---
 src/static_libs/libunibreak/wordbreak.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/static_libs/libunibreak/wordbreak.c 
b/src/static_libs/libunibreak/wordbreak.c
index 017e0fd091..50c830c7cc 100644
--- a/src/static_libs/libunibreak/wordbreak.c
+++ b/src/static_libs/libunibreak/wordbreak.c
@@ -209,6 +209,9 @@ static void set_wordbreaks(
                 posLast = posCur;
                 break;
             }
+#ifndef __has_attribute
+# define __has_attribute(x) 0
+#endif
 #if __has_attribute(fallthrough)
            __attribute__((fallthrough));
 #endif
@@ -325,6 +328,9 @@ static void set_wordbreaks(
                 wbcSeqStart = wbcCur;
                 posLast = posCur;
             }
+#ifndef __has_attribute
+# define __has_attribute(x) 0
+#endif
 #if __has_attribute(fallthrough)
            __attribute__((fallthrough));
 #endif

-- 


Reply via email to