-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Alexpux/MINGW-packages
- Loading branch information
Showing
20 changed files
with
125 additions
and
83 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
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
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
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
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
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,27 @@ | ||
From 556ba2e45435717a4502e6c77b7af1e5daee8936 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B8=CC=86=20=D0=9F?= | ||
=?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=BE=D0=B2?= <alexey.pawlow@gmail.com> | ||
Date: Sun, 9 Oct 2016 17:33:44 +0300 | ||
Subject: [PATCH] Allow to use bessel and complex functions without undefining | ||
__STRICT_ANSI__ | ||
|
||
--- | ||
mingw-w64-headers/crt/math.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/mingw-w64-headers/crt/math.h b/mingw-w64-headers/crt/math.h | ||
index b06ca79..d3617d0 100644 | ||
--- a/mingw-w64-headers/crt/math.h | ||
+++ b/mingw-w64-headers/crt/math.h | ||
@@ -263,7 +263,7 @@ extern "C" { | ||
#define EDOM 33 | ||
#define ERANGE 34 | ||
|
||
-#ifndef __STRICT_ANSI__ | ||
+#if !defined(__STRICT_ANSI__) || defined(_POSIX_C_SOURCE) || defined(_POSIX_SOURCE) || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) | ||
|
||
#ifndef _COMPLEX_DEFINED | ||
#define _COMPLEX_DEFINED | ||
-- | ||
2.9.0 | ||
|
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,29 @@ | ||
From 64a57f7c387f201094076120bfecf59719a95aea Mon Sep 17 00:00:00 2001 | ||
From: Dan Moodie <dtmoodie@gmail.com> | ||
Date: Mon, 28 Dec 2015 10:27:10 -0500 | ||
Subject: [PATCH] Support for opengl2 in vtk 7.1 | ||
|
||
--- | ||
cmake/OpenCVDetectVTK.cmake | 9 ++++++++- | ||
1 file changed, 8 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/cmake/OpenCVDetectVTK.cmake b/cmake/OpenCVDetectVTK.cmake | ||
index 66dcdd0..e75aef8 100644 | ||
--- a/cmake/OpenCVDetectVTK.cmake | ||
+++ b/cmake/OpenCVDetectVTK.cmake | ||
@@ -3,7 +3,14 @@ if(NOT WITH_VTK) | ||
endif() | ||
|
||
# VTK 6.x components | ||
-find_package(VTK QUIET COMPONENTS vtkRenderingOpenGL vtkInteractionStyle vtkRenderingLOD vtkIOPLY vtkFiltersTexture vtkRenderingFreeType vtkIOExport NO_MODULE) | ||
+find_package(VTK QUIET COMPONENTS vtkInteractionStyle vtkRenderingLOD vtkIOPLY vtkFiltersTexture vtkRenderingFreeType vtkIOExport NO_MODULE) | ||
+IF(VTK_FOUND) | ||
+ IF(VTK_RENDERING_BACKEND) #in vtk 7, the rendering backend is exported as a var. | ||
+ find_package(VTK QUIET COMPONENTS vtkRendering${VTK_RENDERING_BACKEND} vtkInteractionStyle vtkRenderingLOD vtkIOPLY vtkFiltersTexture vtkRenderingFreeType vtkIOExport NO_MODULE) | ||
+ ELSE(VTK_RENDERING_BACKEND) | ||
+ find_package(VTK QUIET COMPONENTS vtkRenderingOpenGL vtkInteractionStyle vtkRenderingLOD vtkIOPLY vtkFiltersTexture vtkRenderingFreeType vtkIOExport NO_MODULE) | ||
+ ENDIF(VTK_RENDERING_BACKEND) | ||
+ENDIF(VTK_FOUND) | ||
|
||
# VTK 5.x components | ||
if(NOT VTK_FOUND) |
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
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
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
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,11 @@ | ||
--- OpenShadingLanguage-Release-1.7.4/CMakeLists.txt.orig 2016-10-09 22:50:19.369197900 +0300 | ||
+++ OpenShadingLanguage-Release-1.7.4/CMakeLists.txt 2016-10-09 22:50:44.078611200 +0300 | ||
@@ -344,7 +344,7 @@ | ||
set (DEFAULT_BIN_INSTALL_DIR "bin") | ||
set (DEFAULT_LIB_INSTALL_DIR "lib") | ||
set (DEFAULT_INCLUDE_INSTALL_DIR "include/OSL") | ||
-if (UNIX AND NOT SELF_CONTAINED_INSTALL_TREE) | ||
+if ((UNIX OR MINGW) AND NOT SELF_CONTAINED_INSTALL_TREE) | ||
# Try to be well-behaved and install into reasonable places according to | ||
# the "standard" unix directory heirarchy | ||
# TODO: Figure out how to get the correct python directory |
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
Oops, something went wrong.