We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd22b19 + 630818d commit 3590653Copy full SHA for 3590653
Changes
@@ -7,6 +7,11 @@ Improvements
7
8
- DisplayDriverServer : Fixed delays connecting to the server on Windows.
9
10
+Build
11
+-----
12
+
13
+- SConstruct : Support detection of OpenEXR versions with a patch version containing multiple digits.
14
15
10.5.6.0 (relative to 10.5.5.0)
16
========
17
SConstruct
@@ -1308,7 +1308,7 @@ if doConfigure :
1308
1309
exrMajorVersion = None
1310
for line in open( str( exrVersionHeader ) ) :
1311
- m = re.match( r'^#define OPENEXR_VERSION_STRING "(\d)\.(\d)\.(\d)"$', line )
+ m = re.match( r'^#define OPENEXR_VERSION_STRING "(\d)\.(\d)\.(\d+)"$', line )
1312
if m :
1313
exrMajorVersion = int( m.group( 1 ) )
1314
0 commit comments