mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 15:19:44 +02:00
Fix build on CYGWIN. (#557)
* [NYQUIST] Fix build on CYGWIN Cygwin requires to include unistd.h for building without errors. * [NYQUIST] Fix build on CYGWIN. Cygwin requires to include endian.h to build without errors.
This commit is contained in:
parent
5ba6072bbb
commit
3dfc9d6dec
@ -5,7 +5,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "switches.h"
|
||||
#if defined(UNIX) || defined(__APPLE__)
|
||||
#if defined(UNIX) || defined(__APPLE__) || defined(__CYGWIN__)
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#ifdef WIN32
|
||||
|
@ -161,7 +161,7 @@ extern long ptrtoabs();
|
||||
#endif
|
||||
|
||||
/* Linux on Pentium */
|
||||
#if defined(__linux__) || defined(__GLIBC__)
|
||||
#if defined(__linux__) || defined(__GLIBC__) || defined(__CYGWIN__)
|
||||
#define AFMT "%p"
|
||||
#include <inttypes.h>
|
||||
#include <endian.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user