From f17a221cd8b326f9dd48a391a0988455674f77bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Sat, 27 Aug 2016 11:32:19 +0200 Subject: [PATCH] use _DEFAULT_SOURCE instead of _BSD_SOURCE Change-Id: Iecd6f2b4d31cd8f64f1c7ed491650a9b2a35be28 --- include/lighttpd/settings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/lighttpd/settings.h b/include/lighttpd/settings.h index a9c471e..b43d7c6 100644 --- a/include/lighttpd/settings.h +++ b/include/lighttpd/settings.h @@ -38,8 +38,8 @@ # ifndef _GNU_SOURCE # define _GNU_SOURCE 1 # endif -# ifndef _BSD_SOURCE -# define _BSD_SOURCE 1 +# ifndef _DEFAULT_SOURCE +# define _DEFAULT_SOURCE 1 # endif #endif