From 40668f6b1c1ac32ab65e4823bdc6378f8c7ce693 Mon Sep 17 00:00:00 2001 From: Andrey Volk Date: Fri, 14 Jul 2017 19:59:42 +0300 Subject: [PATCH] FS-10501: [mod_spandsp] Fix building spandsp lib on windows. --- libs/spandsp/src/spandsp/stdbool.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/spandsp/src/spandsp/stdbool.h b/libs/spandsp/src/spandsp/stdbool.h index 492f9c2ec6..2881e83068 100644 --- a/libs/spandsp/src/spandsp/stdbool.h +++ b/libs/spandsp/src/spandsp/stdbool.h @@ -39,7 +39,9 @@ #if !defined(__cplusplus) +#ifndef _MSC_VER typedef int _Bool; +#endif typedef int bool; #define false 0 #define true (!false)