summarylogtreecommitdiffstats
path: root/openexr3.patch
blob: 3cd09316c8723ad89a6d1420240772c46ce033cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
diff --git a/cmake/modules/FindOpenEXR.cmake b/cmake/modules/FindOpenEXR.cmake
index 287342e9d..a2f7b4c62 100644
--- a/cmake/modules/FindOpenEXR.cmake
+++ b/cmake/modules/FindOpenEXR.cmake
@@ -1,93 +1,138 @@
-
-#
-# This source file is part of appleseed.
-# Visit https://appleseedhq.net/ for additional information and resources.
-#
-# This software is released under the MIT license.
-#
-# Copyright (c) 2013-2018 Esteban Tovagliari, The appleseedhq Organization
+# - Find OpenEXR library
+# Find the native OpenEXR includes and library
+# This module defines
+#  OPENEXR_INCLUDE_DIRS, where to find ImfXdr.h, etc. Set when
+#                        OPENEXR_INCLUDE_DIR is found.
+#  OPENEXR_LIBRARIES, libraries to link against to use OpenEXR.
+#  OPENEXR_ROOT_DIR, The base directory to search for OpenEXR.
+#                    This can also be an environment variable.
+#  OPENEXR_FOUND, If false, do not try to use OpenEXR.
 #
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
+# For individual library access these advanced settings are available
+#  OPENEXR_HALF_LIBRARY, Path to Half library
+#  OPENEXR_IEX_LIBRARY, Path to Half library
+#  OPENEXR_ILMIMF_LIBRARY, Path to Ilmimf library
+#  OPENEXR_ILMTHREAD_LIBRARY, Path to IlmThread library
+#  OPENEXR_IMATH_LIBRARY, Path to Imath library
 #
-# The above copyright notice and this permission notice shall be included in
-# all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-# THE SOFTWARE.
-#
-
+# also defined, but not for general use are
+#  OPENEXR_LIBRARY, where to find the OpenEXR library.
 
+#=============================================================================
+# Copyright 2011 Blender Foundation.
 #
-# Find OpenEXR headers and libraries.
-#
-# This module can take the following variables to define
-# custom search locations:
-#
-#   OPENEXR_ROOT
-#   OPENEXR_LOCATION
+# Distributed under the OSI-approved BSD 3-Clause License,
+# see accompanying file BSD-3-Clause-license.txt for details.
+#=============================================================================
 
-# This module defines the following variables:
-#
-#   OPENEXR_FOUND           True if OpenEXR was found
-#   OPENEXR_INCLUDE_DIRS    Where to find OpenEXR header files
-#   OPENEXR_LIBRARIES       List of OpenEXR libraries to link against
-#
+# If OPENEXR_ROOT_DIR was defined in the environment, use it.
+IF(NOT OPENEXR_ROOT_DIR AND NOT $ENV{OPENEXR_ROOT_DIR} STREQUAL "")
+  SET(OPENEXR_ROOT_DIR $ENV{OPENEXR_ROOT_DIR})
+ENDIF()
 
-include (FindPackageHandleStandardArgs)
+# Old versions (before 2.0?) do not have any version string, just assuming this should be fine though.
+SET(_openexr_libs_ver_init "2.0")
 
-find_path (OPENEXR_INCLUDE_DIR NAMES ImfHeader.h
-           PATH_SUFFIXES OpenEXR
-           HINTS ${OPENEXR_ROOT}/include
-                 ${OPENEXR_LOCATION}/include
-                 /usr/local/include
-                 /usr/include
+SET(_openexr_FIND_COMPONENTS
+  Iex
+  Imath
+  OpenEXR
+  IlmThread
 )
 
-find_library (OPENEXR_IMF_LIBRARY NAMES IlmImf-2_3 IlmImf-2_2 IlmImf
-              PATH_SUFFIXES lib64 lib
-              HINTS ${OPENEXR_ROOT}
-                    ${OPENEXR_LOCATION}
-                    /usr/local
-                    /usr
+SET(_openexr_SEARCH_DIRS
+  ${OPENEXR_ROOT_DIR}
+  /opt/lib/openexr
 )
 
-find_library (OPENEXR_THREADS_LIBRARY
-              NAMES IlmThread-2_3 IlmThread-2_2 IlmThread
-              PATH_SUFFIXES lib64 lib
-              HINTS ${OPENEXR_ROOT}
-                    ${OPENEXR_LOCATION}
-                    /usr/local
-                    /usr
+FIND_PATH(OPENEXR_INCLUDE_DIR
+  NAMES
+    OpenEXR/ImfXdr.h
+  HINTS
+    ${_openexr_SEARCH_DIRS}
+  PATH_SUFFIXES
+    include
 )
 
-# Handle the QUIETLY and REQUIRED arguments and set OPENEXR_FOUND.
-find_package_handle_standard_args (OPENEXR DEFAULT_MSG
-    OPENEXR_INCLUDE_DIR
-    OPENEXR_IMF_LIBRARY
-    OPENEXR_THREADS_LIBRARY
-)
+# If the headers were found, get the version from config file, if not already set.
+IF(OPENEXR_INCLUDE_DIR)
+  IF(NOT OPENEXR_VERSION)
+
+    FIND_FILE(_openexr_CONFIG
+      NAMES
+        OpenEXRConfig.h
+      PATHS
+        "${OPENEXR_INCLUDE_DIR}"
+        "${OPENEXR_INCLUDE_DIR}/OpenEXR"
+      NO_DEFAULT_PATH
+    )
 
-# Set the output variables.
-if (OPENEXR_FOUND)
-    set (OPENEXR_INCLUDE_DIRS ${OPENEXR_INCLUDE_DIR})
-    set (OPENEXR_LIBRARIES  ${OPENEXR_IMF_LIBRARY} ${OPENEXR_THREADS_LIBRARY})
-else ()
-    set (OPENEXR_INCLUDE_DIRS)
-    set (OPENEXR_LIBRARIES)
-endif ()
-
-mark_as_advanced (
-    OPENEXR_INCLUDE_DIR
-    OPENEXR_IMF_LIBRARY
-    OPENEXR_THREADS_LIBRARY
+    IF(_openexr_CONFIG)
+      FILE(STRINGS "${_openexr_CONFIG}" OPENEXR_BUILD_SPECIFICATION
+           REGEX "^[ \t]*#define[ \t]+OPENEXR_VERSION_STRING[ \t]+\"[.0-9]+\".*$")
+    ELSE()
+      MESSAGE(WARNING "Could not find \"OpenEXRConfig.h\" in \"${OPENEXR_INCLUDE_DIR}\"")
+    ENDIF()
+
+    IF(OPENEXR_BUILD_SPECIFICATION)
+      MESSAGE(STATUS "${OPENEXR_BUILD_SPECIFICATION}")
+      STRING(REGEX REPLACE ".*#define[ \t]+OPENEXR_VERSION_STRING[ \t]+\"([.0-9]+)\".*"
+             "\\1" _openexr_libs_ver_init ${OPENEXR_BUILD_SPECIFICATION})
+    ELSE()
+      MESSAGE(WARNING "Could not determine ILMBase library version, assuming ${_openexr_libs_ver_init}.")
+    ENDIF()
+
+    UNSET(_openexr_CONFIG CACHE)
+
+  ENDIF()
+ENDIF()
+
+SET("OPENEXR_VERSION" ${_openexr_libs_ver_init} CACHE STRING "Version of OpenEXR lib")
+UNSET(_openexr_libs_ver_init)
+
+STRING(REGEX REPLACE "([0-9]+)[.]([0-9]+).*" "\\1_\\2" _openexr_libs_ver ${OPENEXR_VERSION})
+
+SET(_openexr_LIBRARIES)
+FOREACH(COMPONENT ${_openexr_FIND_COMPONENTS})
+  STRING(TOUPPER ${COMPONENT} UPPERCOMPONENT)
+
+  FIND_LIBRARY(OPENEXR_${UPPERCOMPONENT}_LIBRARY
+    NAMES
+      ${COMPONENT}-${_openexr_libs_ver} ${COMPONENT}
+    NAMES_PER_DIR
+    HINTS
+      ${_openexr_SEARCH_DIRS}
+    PATH_SUFFIXES
+      lib64 lib
+    )
+  LIST(APPEND _openexr_LIBRARIES "${OPENEXR_${UPPERCOMPONENT}_LIBRARY}")
+ENDFOREACH()
+
+UNSET(_openexr_libs_ver)
+
+# handle the QUIETLY and REQUIRED arguments and set OPENEXR_FOUND to TRUE if
+# all listed variables are TRUE
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(OpenEXR  DEFAULT_MSG
+    _openexr_LIBRARIES OPENEXR_INCLUDE_DIR)
+
+IF(OPENEXR_FOUND)
+  SET(OPENEXR_LIBRARIES ${_openexr_LIBRARIES})
+  # Both include paths are needed because of dummy OSL headers mixing #include <OpenEXR/foo.h> and #include <foo.h> :(
+  SET(OPENEXR_INCLUDE_DIRS ${OPENEXR_INCLUDE_DIR} ${OPENEXR_INCLUDE_DIR}/OpenEXR ${OPENEXR_INCLUDE_DIR}/Imath)
+ENDIF()
+
+MARK_AS_ADVANCED(
+  OPENEXR_INCLUDE_DIR
+  OPENEXR_VERSION
 )
+FOREACH(COMPONENT ${_openexr_FIND_COMPONENTS})
+  STRING(TOUPPER ${COMPONENT} UPPERCOMPONENT)
+  MARK_AS_ADVANCED(OPENEXR_${UPPERCOMPONENT}_LIBRARY)
+ENDFOREACH()
+
+UNSET(COMPONENT)
+UNSET(UPPERCOMPONENT)
+UNSET(_openexr_FIND_COMPONENTS)
+UNSET(_openexr_LIBRARIES)
+UNSET(_openexr_SEARCH_DIRS)
diff --git a/src/appleseed/foundation/core/thirdparties.cpp b/src/appleseed/foundation/core/thirdparties.cpp
index 7196557bc..845cd205e 100644
--- a/src/appleseed/foundation/core/thirdparties.cpp
+++ b/src/appleseed/foundation/core/thirdparties.cpp
@@ -42,7 +42,6 @@
 
 // IlmBase headers.
 #include "foundation/platform/_beginexrheaders.h"
-#include <OpenEXR/IlmBaseConfig.h>
 #include "foundation/platform/_endexrheaders.h"
 
 // LZ4 headers.
@@ -121,7 +120,6 @@ LibraryVersionArray ThirdParties::get_versions()
     versions.push_back(APIStringPair("OpenColorIO", OCIO_VERSION));
 #endif
 
-    versions.push_back(APIStringPair("IlmBase", ILMBASE_VERSION_STRING));
     versions.push_back(APIStringPair("libjpeg-turbo", LibJpegTurboVersion));
     versions.push_back(APIStringPair("LibTIFF", LibTIFFVersion));
     versions.push_back(APIStringPair("LZ4", format("{0}.{1}.{2}", LZ4_VERSION_MAJOR, LZ4_VERSION_MINOR, LZ4_VERSION_RELEASE)));
diff --git a/src/appleseed/foundation/image/color.h b/src/appleseed/foundation/image/color.h
index 6b97efcd8..3f288b032 100644
--- a/src/appleseed/foundation/image/color.h
+++ b/src/appleseed/foundation/image/color.h
@@ -40,7 +40,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathColor.h"
+#include "Imath/ImathColor.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/math/aabb.h b/src/appleseed/foundation/math/aabb.h
index 7d0de2e47..b3dcf65d8 100644
--- a/src/appleseed/foundation/math/aabb.h
+++ b/src/appleseed/foundation/math/aabb.h
@@ -37,7 +37,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathBox.h"
+#include "Imath/ImathBox.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/math/matrix.h b/src/appleseed/foundation/math/matrix.h
index f8b9f8f23..80441e320 100644
--- a/src/appleseed/foundation/math/matrix.h
+++ b/src/appleseed/foundation/math/matrix.h
@@ -44,7 +44,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathMatrix.h"
+#include "Imath/ImathMatrix.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/math/quaternion.h b/src/appleseed/foundation/math/quaternion.h
index a73f99327..8e9899c46 100644
--- a/src/appleseed/foundation/math/quaternion.h
+++ b/src/appleseed/foundation/math/quaternion.h
@@ -37,7 +37,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathQuat.h"
+#include "Imath/ImathQuat.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/math/vector.h b/src/appleseed/foundation/math/vector.h
index 8eca71fcf..f67de5e49 100644
--- a/src/appleseed/foundation/math/vector.h
+++ b/src/appleseed/foundation/math/vector.h
@@ -36,7 +36,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathVec.h"
+#include "Imath/ImathVec.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/meta/tests/test_aabb.cpp b/src/appleseed/foundation/meta/tests/test_aabb.cpp
index 54547752e..3ece33e18 100644
--- a/src/appleseed/foundation/meta/tests/test_aabb.cpp
+++ b/src/appleseed/foundation/meta/tests/test_aabb.cpp
@@ -36,7 +36,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathBox.h"
+#include "Imath/ImathBox.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/meta/tests/test_color.cpp b/src/appleseed/foundation/meta/tests/test_color.cpp
index d47fdfcdf..23ff5bff6 100644
--- a/src/appleseed/foundation/meta/tests/test_color.cpp
+++ b/src/appleseed/foundation/meta/tests/test_color.cpp
@@ -36,7 +36,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathColor.h"
+#include "Imath/ImathColor.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/meta/tests/test_half.cpp b/src/appleseed/foundation/meta/tests/test_half.cpp
index 523dfd97b..418819cf9 100644
--- a/src/appleseed/foundation/meta/tests/test_half.cpp
+++ b/src/appleseed/foundation/meta/tests/test_half.cpp
@@ -33,7 +33,7 @@
 
 // OpenEXR headers.
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/half.h"
+#include "Imath/half.h"
 #include "foundation/platform/_endexrheaders.h"
 
 // Standard headers.
diff --git a/src/appleseed/foundation/meta/tests/test_matrix.cpp b/src/appleseed/foundation/meta/tests/test_matrix.cpp
index 72afb2a54..46f429712 100644
--- a/src/appleseed/foundation/meta/tests/test_matrix.cpp
+++ b/src/appleseed/foundation/meta/tests/test_matrix.cpp
@@ -38,7 +38,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathMatrix.h"
+#include "Imath/ImathMatrix.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/meta/tests/test_quaternion.cpp b/src/appleseed/foundation/meta/tests/test_quaternion.cpp
index 7ea991f8f..cf42002bf 100644
--- a/src/appleseed/foundation/meta/tests/test_quaternion.cpp
+++ b/src/appleseed/foundation/meta/tests/test_quaternion.cpp
@@ -38,8 +38,8 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathQuat.h"
-#include "OpenEXR/ImathVec.h"
+#include "Imath/ImathQuat.h"
+#include "Imath/ImathVec.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/appleseed/foundation/meta/tests/test_vector.cpp b/src/appleseed/foundation/meta/tests/test_vector.cpp
index 3904f37fd..6bf0b25d1 100644
--- a/src/appleseed/foundation/meta/tests/test_vector.cpp
+++ b/src/appleseed/foundation/meta/tests/test_vector.cpp
@@ -35,7 +35,7 @@
 // Imath headers.
 #ifdef APPLESEED_ENABLE_IMATH_INTEROP
 #include "foundation/platform/_beginexrheaders.h"
-#include "OpenEXR/ImathVec.h"
+#include "Imath/ImathVec.h"
 #include "foundation/platform/_endexrheaders.h"
 #endif
 
diff --git a/src/thirdparty/bcd/bcd/ImageIO.cpp b/src/thirdparty/bcd/bcd/ImageIO.cpp
index afb350ca6..62721f39b 100644
--- a/src/thirdparty/bcd/bcd/ImageIO.cpp
+++ b/src/thirdparty/bcd/bcd/ImageIO.cpp
@@ -13,6 +13,7 @@
 // BCD headers.
 #include "DeepImage.h"
 #include "ImageIO.h"
+#include "ImfHeader.h"
 
 // OpenEXR headers.
 #if defined _MSC_VER