From: Michael Jeanson Date: Thu, 12 Nov 2015 16:27:47 +0000 (-0500) Subject: Fix build on non-Linux Debian ports X-Git-Tag: v0.10.0~61 X-Git-Url: https://git.lttng.org/?p=urcu.git;a=commitdiff_plain;h=81593390d63393f14f2d41523797636bdad19ae5 Fix build on non-Linux Debian ports Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/urcu/syscall-compat.h b/urcu/syscall-compat.h index 288cfaf..0e9f26c 100644 --- a/urcu/syscall-compat.h +++ b/urcu/syscall-compat.h @@ -29,7 +29,7 @@ #if defined(__ANDROID__) || defined(__sun__) #include -#elif defined(__linux__) +#elif defined(__linux__) || defined(__GLIBC__) #include #else #error "Add platform support to urcu/syscall-compat.h"