mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
fix for older glibc's
Original commit message from CVS: fix for older glibc's
This commit is contained in:
parent
1f212d7a8f
commit
c1e2b0009b
1 changed files with 4 additions and 0 deletions
|
@ -36,6 +36,10 @@
|
|||
#include "gstlog.h"
|
||||
#include "gstutils.h"
|
||||
|
||||
/* older glibc's have MAP_ANON instead of MAP_ANONYMOUS */
|
||||
#ifndef MAP_ANONYMOUS
|
||||
#define MAP_ANONYMOUS MAP_ANON
|
||||
#endif
|
||||
|
||||
#define STACK_SIZE 0x200000
|
||||
|
||||
|
|
Loading…
Reference in a new issue