diff options
author | Ganesh Ajjanagadde | 2015-10-03 07:41:00 -0500 |
---|---|---|
committer | Ronald S. Bultje | 2015-10-04 12:15:16 -0400 |
commit | 26e8895b7395ed180dcb7e30465058c45050b5e2 (patch) | |
tree | 0febc0d9c6c8f12f6e7329bf2f41fbf1a1698da7 /libavformat/img2dec.c | |
parent | c3e8de1c248f8c742dd9e61a0c71ee56bba22c28 (diff) |
all: add _DEFAULT_SOURCE locally wherever needed
Glibc 2.20 onwards generates a deprecation warning for usage of _BSD_SOURCE and _SVID_SOURCE.
The solution from man feature_test_macros is to define both _DEFAULT_SOURCE and the old macros.
This solution is on the lines of the one in commit af1818276ef271af98e2e2bbabb4dc875b4fa7d8.
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/img2dec.c')
-rw-r--r-- | libavformat/img2dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c index 16975792ee..0cbcf4a9dc 100644 --- a/libavformat/img2dec.c +++ b/libavformat/img2dec.c @@ -20,6 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#define _DEFAULT_SOURCE #define _BSD_SOURCE #include <sys/stat.h> #include "libavutil/avstring.h" |