[oe-commits] [meta-openembedded] 01/03: grpc: don't use unexisting gettid function on glibc 2.29, it has been implemented only in 2.30

git at git.openembedded.org git at git.openembedded.org
Fri Sep 6 15:41:25 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 0c05d498776d49991756718774ece13af837819b
Author: Gianfranco Costamagna <costamagna.gianfranco at gmail.com>
AuthorDate: Fri Sep 6 14:36:26 2019 +0200

    grpc: don't use unexisting gettid function on glibc 2.29, it has been implemented only in 2.30
    
    https://sourceware.org/git/?p=glibc.git;a=commit;h=1d0fc213824eaa2a8f8c4385daaa698ee8fb7c92
    Signed-off-by: Francesco Mocci <francesco.mocci at abinsula.com>
    Signed-off-by: Gianfranco Costamagna <locutusofborg at debian.org>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 .../grpc/grpc/0001-Define-gettid-only-for-glibc-2.30.patch            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-networking/recipes-devtools/grpc/grpc/0001-Define-gettid-only-for-glibc-2.30.patch b/meta-networking/recipes-devtools/grpc/grpc/0001-Define-gettid-only-for-glibc-2.30.patch
index c6afff2..4f9b115 100644
--- a/meta-networking/recipes-devtools/grpc/grpc/0001-Define-gettid-only-for-glibc-2.30.patch
+++ b/meta-networking/recipes-devtools/grpc/grpc/0001-Define-gettid-only-for-glibc-2.30.patch
@@ -20,7 +20,7 @@ index 561276f0c2..25a74864a1 100644
  #include <time.h>
  #include <unistd.h>
  
-+#if defined(__GLIBC__) && (__GLIBC_MINOR__ >= 29)
++#if defined(__GLIBC__) && (__GLIBC_MINOR__ >= 30)
 +#include <unistd.h>
 +#else
  static long gettid(void) { return syscall(__NR_gettid); }
@@ -38,7 +38,7 @@ index 08116b3ab5..d3d3025111 100644
  
 -#ifndef NDEBUG
 +#if !defined(DEBUG)
-+#if defined(__GLIBC__) && (__GLIBC_MINOR__ >= 29)
++#if defined(__GLIBC__) && (__GLIBC_MINOR__ >= 30)
 +#include <unistd.h>
 +#else
  static long gettid(void) { return syscall(__NR_gettid); }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list