From 825e463a170c7004c63030dc484b2b2de869227b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 8 Jul 2017 13:18:39 +0200 Subject: build: Add feature test macros for glibc 2.19+ glibc introduced _DEFAULT_SOURCE in version 2.19 to replace _BSD_SOURCE and _SVID_SOURCE, which were deprecated in version 2.20. Add _DEFAULT_SOURCE where the latter two are used to be forwards-compatible and avoid warnings about the use of deprecated definitions. --- libswscale/utils.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libswscale/utils.c') diff --git a/libswscale/utils.c b/libswscale/utils.c index 248a8081ff..6b17955f54 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -20,6 +20,7 @@ #include "config.h" +#define _DEFAULT_SOURCE #define _SVID_SOURCE // needed for MAP_ANONYMOUS #include #include -- cgit v1.2.3