Skip to content

Commit 4b66da9

Browse files
authored
Merge pull request #1409 from johnhaddon/deps8.0Fixes
Build : Fix errors from Dependencies 8.x
2 parents 3c4db0d + da24017 commit 4b66da9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Changes

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Build
1515
-----
1616

1717
- SConstruct : Support detection of OpenEXR versions with a patch version containing multiple digits.
18-
18+
- Fixed building with MSVC and Gaffer Dependencies 8.x.
1919

2020
10.5.6.0 (relative to 10.5.5.0)
2121
========

SConstruct

+2
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,9 @@ else:
11741174
# that "C4275 can be ignored if you are deriving from a type in the
11751175
# C++ Standard Library", which is the case
11761176
"/wd4275",
1177+
"/wd4003", # suppress warning "not enough arguments for function-like macro invocation 'BOOST_PP_SEQ_DETAIL_IS_NOT_EMPTY'"
11771178
"/D_CRT_SECURE_NO_WARNINGS", # suppress warnings about getenv and similar
1179+
"/DHAVE_SNPRINTF", # Fixes error "multiple definitions of snprintf"
11781180
]
11791181
)
11801182

0 commit comments

Comments
 (0)