mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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.
This commit is contained in:
parent
0f5ad12ba2
commit
825e463a17
@ -21,6 +21,7 @@
|
||||
*/
|
||||
|
||||
/* needed by inet_aton() */
|
||||
#define _DEFAULT_SOURCE
|
||||
#define _SVID_SOURCE
|
||||
|
||||
#include "config.h"
|
||||
|
@ -24,6 +24,7 @@
|
||||
* UDP protocol
|
||||
*/
|
||||
|
||||
#define _DEFAULT_SOURCE
|
||||
#define _BSD_SOURCE /* Needed for using struct ip_mreq with recent glibc */
|
||||
|
||||
#include "avformat.h"
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#define _DEFAULT_SOURCE
|
||||
#define _SVID_SOURCE // needed for MAP_ANONYMOUS
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user