From a9e528b31559b519470c0aa4c1629cb8e7816600 Mon Sep 17 00:00:00 2001 From: Joakim Soderberg Date: Thu, 23 Jan 2014 11:36:57 +0100 Subject: [PATCH] __USE_GNU -> _GNU_SOURCE --- lib/libwebsockets.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libwebsockets.h b/lib/libwebsockets.h index 25e04aba1..2fd78b18e 100644 --- a/lib/libwebsockets.h +++ b/lib/libwebsockets.h @@ -65,8 +65,8 @@ typedef SSIZE_T ssize_t; #else // NOT WIN32 /* to get ppoll() */ -#ifndef __USE_GNU -#define __USE_GNU +#ifndef _GNU_SOURCE +#define _GNU_SOURCE #endif #include #include