From aaf93c608bb7591f0a5411c221a3ad3fbd8efdfd Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Mon, 4 Jan 2016 17:31:57 -0500 Subject: [PATCH] Fix: missing _GNU_SOURCE define O_CLOEXEC requires _GNU_SOURCE. Signed-off-by: Jonathan Rajotte Signed-off-by: Mathieu Desnoyers --- liblttng-ust/lttng-ust-elf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/liblttng-ust/lttng-ust-elf.c b/liblttng-ust/lttng-ust-elf.c index dcae966c..e9062690 100644 --- a/liblttng-ust/lttng-ust-elf.c +++ b/liblttng-ust/lttng-ust-elf.c @@ -16,6 +16,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#define _GNU_SOURCE #include #include #include -- 2.34.1