From 44bd70feafddf53b476acaa4093dee8c8668a599 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Sun, 7 Jun 2020 18:47:57 +0200 Subject: [PATCH] babl: s/__GNU_SOURCE/_GNU_SOURCE/ fixing issue #59 --- babl/babl-mutex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babl/babl-mutex.h b/babl/babl-mutex.h index 77cb798..f5dcefb 100644 --- a/babl/babl-mutex.h +++ b/babl/babl-mutex.h @@ -20,7 +20,7 @@ #define _BABL_MUTEX_H #ifndef _WIN32 -#define __GNU_SOURCE 1 +#define _GNU_SOURCE 1 #include #else #include -- 2.30.2