As it typically happens, some headers are no longer "free" with major gcc upgrades. I needed to add this in order to build with gcc 12:
Index: OpenColorIO-2.1.1/src/OpenColorIO/FileRules.cpp
===================================================================
--- OpenColorIO-2.1.1.orig/src/OpenColorIO/FileRules.cpp
+++ OpenColorIO-2.1.1/src/OpenColorIO/FileRules.cpp
@@ -3,6 +3,7 @@
#include <algorithm>
#include <cctype>
+#include <cstring>
#include <map>
#include <regex>
#include <sstream>
Pretty minor otherwise I would have done a PR.
As it typically happens, some headers are no longer "free" with major gcc upgrades. I needed to add this in order to build with gcc 12:
Pretty minor otherwise I would have done a PR.