diff options
author | 2019-12-19 15:47:00 +0200 | |
---|---|---|
committer | 2019-12-19 15:47:00 +0200 | |
commit | 89d17b4f3dfd4f6503ce48e206b211c3bfb8dcee (patch) | |
tree | 960c530ac28c12dfea0bbeee14796f0258cda20c /include/rin | |
parent | 00ec4d4cd53c684d65c69c1b5419556fe295d62c (diff) | |
download | librin-89d17b4f3dfd4f6503ce48e206b211c3bfb8dcee.tar.gz librin-89d17b4f3dfd4f6503ce48e206b211c3bfb8dcee.tar.bz2 librin-89d17b4f3dfd4f6503ce48e206b211c3bfb8dcee.zip |
meson: simplify build scripts, prune some options.
Also inadvertently fixed a bug with defining _GNU_SOURCE at the wrong
time, which could have possibly led to unexpected build failures down
the line.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'include/rin')
-rw-r--r-- | include/rin/compat.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/rin/compat.h b/include/rin/compat.h index 4ea777d..03bed37 100644 --- a/include/rin/compat.h +++ b/include/rin/compat.h @@ -29,7 +29,6 @@ # if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 29) # include <sys/types.h> # else -# define _GNU_SOURCE # include <sys/syscall.h> # define gettid() (syscall(SYS_gettid)) # endif |