Merge pull request #4970 from jclab-joseph/pr/fix/build-alpine_2.x

Backport 2.x: Fix test code to can be built on alpine #4969
This commit is contained in:
Gilles Peskine 2021-09-24 15:04:09 +02:00 committed by GitHub
commit 7358065203
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
Bugfix
* Don't use the obsolete header path sys/fcntl.h in unit tests.
These header files cause compilation errors in musl.
Fixes #4969.

View file

@ -9,11 +9,11 @@
#endif
#if defined(MBEDTLS_PLATFORM_IS_UNIXLIKE)
#include <sys/fcntl.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#endif