Merge pull request #3930 from ffontaine/master

Extras/VHACD/inc/vhacdMutex.h: fix musl build
This commit is contained in:
erwincoumans 2021-09-20 14:38:30 -07:00 committed by GitHub
commit ce26271923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,7 +69,7 @@
#include <pthread.h>
#endif
#if defined(__APPLE__)
#if defined(__APPLE__) || !defined(__GLIBC__)
#define PTHREAD_MUTEX_RECURSIVE_NP PTHREAD_MUTEX_RECURSIVE
#endif