From: Andrey Volk Date: Fri, 14 Jul 2017 16:59:42 +0000 (+0300) Subject: FS-10501: [mod_spandsp] Fix building spandsp lib on windows. X-Git-Tag: v1.8.0~361^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40668f6b1c1ac32ab65e4823bdc6378f8c7ce693;p=thirdparty%2Ffreeswitch.git FS-10501: [mod_spandsp] Fix building spandsp lib on windows. --- 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)