blob: e636adc556353ced17eb00945b06c76d447f3dea [file] [log] [blame]
Brad Bishop0a921262019-09-24 07:40:45 -04001From 97914aeab52b4d0ea0ab9e5ff985a1c5cddb0fa1 Mon Sep 17 00:00:00 2001
2From: Vincent Prince <vincent.prince.fr@gmail.com>
3Date: Mon, 16 Sep 2019 13:41:39 +0200
4Subject: [PATCH 06/10] IntelRDFPMathLib20U1: Check for __DEFINED_wchar_t
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
6This is defined by musl if wchar_t is already defined
7
8avoids errors like
9
10src/third_party/IntelRDFPMathLib20U1/LIBRARY/src/bid_functions.h:46:15: error: typedef redefinition with different types
11 ('int' vs 'unsigned int')
12typedef int wchar_t;
13
14Signed-off-by: Khem Raj <raj.khem@gmail.com>
Brad Bishop0a921262019-09-24 07:40:45 -040015Signed-off-by: Vincent Prince <vincent.prince.fr@gmail.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016---
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017 src/third_party/IntelRDFPMathLib20U1/LIBRARY/src/bid_functions.h | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
Brad Bishop0a921262019-09-24 07:40:45 -040020diff --git a/src/third_party/IntelRDFPMathLib20U1/LIBRARY/src/bid_functions.h b/src/third_party/IntelRDFPMathLib20U1/LIBRARY/src/bid_functions.h
21index 56775bc..be96a85 100755
22--- a/src/third_party/IntelRDFPMathLib20U1/LIBRARY/src/bid_functions.h
23+++ b/src/third_party/IntelRDFPMathLib20U1/LIBRARY/src/bid_functions.h
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080024@@ -43,7 +43,7 @@
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026 #if 0 // MongoDB Modification -- just `#include <stddef.h>`
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027 // Fix system header issue on Sun solaris and define required type by ourselves
28-#if !defined(_WCHAR_T) && !defined(_WCHAR_T_DEFINED) && !defined(__QNX__)
29+#if !defined(_WCHAR_T) && !defined(_WCHAR_T_DEFINED) && !defined(__QNX__) && !defined(__DEFINED_wchar_t)
30 typedef int wchar_t;
31 #endif
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032 #else
Brad Bishop0a921262019-09-24 07:40:45 -040033--
342.7.4
35