From: Davide Gerhard Date: Thu, 28 Jan 2021 07:33:55 +0000 (+0100) Subject: pa_mac_core.c: add missing definition to fix build on older systems X-Git-Tag: v19.7.0~29 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=813b281826399ad0b774d61435cebbc4e00f5d4a;p=portaudio pa_mac_core.c: add missing definition to fix build on older systems thanks to @kencu --- diff --git a/src/hostapi/coreaudio/pa_mac_core.c b/src/hostapi/coreaudio/pa_mac_core.c index cac2018..402c512 100644 --- a/src/hostapi/coreaudio/pa_mac_core.c +++ b/src/hostapi/coreaudio/pa_mac_core.c @@ -71,6 +71,10 @@ #include "pa_mac_core_utilities.h" #include "pa_mac_core_blocking.h" +#ifndef MAC_OS_X_VERSION_10_6 +#define MAC_OS_X_VERSION_10_6 1060 +#endif + #ifdef __cplusplus extern "C"