build(yaml-cpp): added patch to add cstdint to emitterutils

This commit is contained in:
2025-07-29 08:47:23 -04:00
parent 7dfeb0e088
commit e71bf478d6
6 changed files with 12 additions and 2 deletions

1
.gitignore vendored
View File

@@ -70,6 +70,7 @@ subprojects/hypre/
subprojects/qhull/ subprojects/qhull/
subprojects/libconstants/ subprojects/libconstants/
subprojects/liblogging/ subprojects/liblogging/
subprojects/packagecache/
qhull.wrap qhull.wrap

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# *********************************************************************** # # *********************************************************************** #
project('libconfig', 'cpp', version: 'v1.1.1', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0') project('libconfig', 'cpp', version: 'v1.1.2', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
# Add default visibility for all C++ targets # Add default visibility for all C++ targets
add_project_arguments('-fvisibility=default', language: 'cpp') add_project_arguments('-fvisibility=default', language: 'cpp')

View File

@@ -0,0 +1,9 @@
--- yaml-cpp/src/emitterutils.cpp.bak 2025-07-29 08:42:40
+++ yaml-cpp/src/emitterutils.cpp 2025-07-29 08:42:50
@@ -1,5 +1,6 @@
#include <algorithm>
#include <iomanip>
+#include <cstdint>
#include <sstream>
#include "emitterutils.h"

View File

@@ -1,6 +1,6 @@
[wrap-git] [wrap-git]
url = https://github.com/jbeder/yaml-cpp.git url = https://github.com/jbeder/yaml-cpp.git
revision = yaml-cpp-0.7.0 revision = yaml-cpp-0.7.0
diff_files = yaml-cpp/disableShadowWarnings.patch diff_files = yaml-cpp/disableShadowWarnings.patch, yaml-cpp/addCSTDINTToEmitterUtils.patch
[cmake] [cmake]