-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add patch to fix build on MacOS Ventura
- Loading branch information
1 parent
962682b
commit 373602c
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/src/third-party/IntelRDFPMathLib20U2/LIBRARY/float128/dpml_exception.c b/src/third-party/IntelRDFPMathLib20U2/LIBRARY/float128/dpml_exception.c | ||
index d061a4c..916b41d 100755 | ||
--- a/src/third-party/IntelRDFPMathLib20U2/LIBRARY/float128/dpml_exception.c | ||
+++ b/src/third-party/IntelRDFPMathLib20U2/LIBRARY/float128/dpml_exception.c | ||
@@ -132,6 +132,7 @@ | ||
!defined(wnt) | ||
|
||
# include <sys/signal.h> | ||
+# include <signal.h> | ||
# define DPML_SIGNAL(p) raise(SIGFPE) | ||
|
||
#else | ||
diff --git a/src/third-party/IntelRDFPMathLib20U2/LIBRARY/src/bid_internal.h b/src/third-party/IntelRDFPMathLib20U2/LIBRARY/src/bid_internal.h | ||
index cd08ea7..1892637 100755 | ||
--- a/src/third-party/IntelRDFPMathLib20U2/LIBRARY/src/bid_internal.h | ||
+++ b/src/third-party/IntelRDFPMathLib20U2/LIBRARY/src/bid_internal.h | ||
@@ -30,6 +30,8 @@ | ||
#ifndef __BIDECIMAL_H | ||
#define __BIDECIMAL_H | ||
|
||
+#include <stdlib.h> | ||
+ | ||
#define _CRT_SECURE_NO_DEPRECATE | ||
#if defined(_MSC_VER) && !defined(__INTEL_COMPILER) | ||
# pragma warning( disable: 4996 ) |