mirror of
https://github.com/ModOrganizer2/modorganizer-umbrella.git
synced 2026-07-27 13:58:32 -07:00
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
Index: boost/python/detail/config.hpp
|
|
IDEA additional info:
|
|
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
|
|
<+>UTF-8
|
|
===================================================================
|
|
--- boost/python/detail/config.hpp (date 1523977902231)
|
|
+++ boost/python/detail/config.hpp (date 1523977902231)
|
|
@@ -105,7 +105,9 @@
|
|
// Set the name of our library, this will get undef'ed by auto_link.hpp
|
|
// once it's done with it:
|
|
//
|
|
-#define BOOST_LIB_NAME boost_python##PY_MAJOR_VERSION##PY_MINOR_VERSION
|
|
+#define _BOOST_PYTHON_CONCAT(N, M, m) N ## M ## m
|
|
+#define BOOST_PYTHON_CONCAT(N, M, m) _BOOST_PYTHON_CONCAT(N, M, m)
|
|
+#define BOOST_LIB_NAME BOOST_PYTHON_CONCAT(boost_python, PY_MAJOR_VERSION, PY_MINOR_VERSION)
|
|
//
|
|
// If we're importing code from a dll, then tell auto_link.hpp about it:
|
|
//
|
|
@@ -118,6 +120,9 @@
|
|
#include <boost/config/auto_link.hpp>
|
|
#endif // auto-linking disabled
|
|
|
|
+#undef BOOST_PYTHON_CONCAT
|
|
+#undef _BOOST_PYTHON_CONCAT
|
|
+
|
|
#ifndef BOOST_PYTHON_NO_PY_SIGNATURES
|
|
#define BOOST_PYTHON_SUPPORTS_PY_SIGNATURES // enables smooth transition
|
|
#endif
|