summaryrefslogtreecommitdiffstats
path: root/src/gbm
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2015-01-16 21:54:54 -0800
committerKristian Høgsberg <krh@bitplanet.net>2015-01-16 21:54:54 -0800
commit8c6018e9bcdd3067d35fa942f0c5b7e229d837d0 (patch)
tree2db7e7ad24e9e64eada01d9b0504211f4aeb5288 /src/gbm
parent9075823c17280d36ca2ba2e98ec93fb097801593 (diff)
downloadexternal_mesa3d-8c6018e9bcdd3067d35fa942f0c5b7e229d837d0.zip
external_mesa3d-8c6018e9bcdd3067d35fa942f0c5b7e229d837d0.tar.gz
external_mesa3d-8c6018e9bcdd3067d35fa942f0c5b7e229d837d0.tar.bz2
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 <krh@bitplanet.net>
Diffstat (limited to 'src/gbm')
-rw-r--r--src/gbm/main/gbm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gbm/main/gbm.c b/src/gbm/main/gbm.c
index c39cbfa..c046b1a 100644
--- a/src/gbm/main/gbm.c
+++ b/src/gbm/main/gbm.c
@@ -26,6 +26,7 @@
*/
#define _BSD_SOURCE
+#define _DEFAULT_SOURCE
#include <stddef.h>
#include <stdio.h>