From: Kristian Høgsberg Date: Sat, 17 Jan 2015 05:54:54 +0000 (-0800) Subject: gbm: Define _DEFAULT_SOURCE to avoid warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c6018e9bcdd3067d35fa942f0c5b7e229d837d0;p=mesa.git gbm: Define _DEFAULT_SOURCE to avoid warning glibc 2.19 introduced _DEFUAULT_SOURCE as a replacement for _BSD_SOURCE, and deprecates _BSD_SOURCE with an annoying warning. Defining both is how you're supposed to transition so let's do that. It gets rid of the warning and we can figure out when/if we can drop _BSD_SOURCE later. Signed-off-by: Kristian Høgsberg --- diff --git a/src/gbm/main/gbm.c b/src/gbm/main/gbm.c index c39cbfa7403..c046b1ad7c8 100644 --- a/src/gbm/main/gbm.c +++ b/src/gbm/main/gbm.c @@ -26,6 +26,7 @@ */ #define _BSD_SOURCE +#define _DEFAULT_SOURCE #include #include