mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 05:36:31 +01:00
Fix windows builds (stacktrace pthread debug)
This commit is contained in:
parent
46251c2068
commit
c92dfed706
2 changed files with 9 additions and 7 deletions
|
|
@ -30,8 +30,11 @@
|
|||
#include "pbd/libpbd_visibility.h"
|
||||
#include "pbd/timing.h"
|
||||
|
||||
#if defined(COMPILER_MSVC) && !defined(PTW32_VERSION)
|
||||
#include <ardourext/pthread.h> // Gets us 'PTW32_VERSION'
|
||||
/* check for PTW32_VERSION */
|
||||
#ifdef COMPILER_MSVC
|
||||
#include <ardourext/pthread.h>
|
||||
#else
|
||||
#include <pthread.h>
|
||||
#endif
|
||||
|
||||
namespace PBD {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue