mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2025-02-02 15:07:45 -05:00
Include sys/types.h before including sys/random.h for OSX
This commit is contained in:
parent
c9426f2373
commit
708e59f90b
1
NEWS
1
NEWS
@ -2,6 +2,7 @@ Changes in 1.NNN, released on YYYY-MM-DD:
|
||||
|
||||
* Fix regression when streaming formats other than Ogg (e.g. MP3). From
|
||||
zygmund2000 on Github (#30) and Roland Hermans on GitLab (#2271).
|
||||
* Fix build issue on OSX. From Mitchell Blank on GitLab (#2270).
|
||||
|
||||
|
||||
|
||||
|
@ -19,6 +19,9 @@
|
||||
#endif
|
||||
|
||||
#include <sys/stat.h>
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
# include <sys/types.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_RANDOM_H
|
||||
# include <sys/random.h>
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user