]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: look for gettid() definition where getpid() is defined
authorLennart Poettering <lennart@poettering.net>
Mon, 25 Dec 2017 11:35:28 +0000 (12:35 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 25 Dec 2017 11:35:28 +0000 (12:35 +0100)
Hopefully, should gettid() show up one day in glibc it'll show up where
getpid() is defined too.

meson.build

index 9911afb0e7e9b229795153fe3ed9f0a0987889ae..9fc45abc0274defedd63ffdb25dba39d37f18caa 100644 (file)
@@ -455,7 +455,8 @@ endforeach
 
 foreach ident : [
         ['memfd_create',      '''#include <sys/mman.h>'''],
-        ['gettid',            '''#include <sys/types.h>'''],
+        ['gettid',            '''#include <sys/types.h>
+                                 #include <unistd.h>'''],
         ['pivot_root',        '''#include <stdlib.h>
                                  #include <unistd.h>'''],     # no known header declares pivot_root
         ['name_to_handle_at', '''#include <sys/types.h>