Commits

Ryan Schmidt authored d9772b44e14
ucommon: Fix build on Lion and Mountain Lion
No tags

devel/ucommon/files/platform.h.patch

Added
1 +Fix build with clang on libstdc++ systems.
2 +https://lists.gnu.org/archive/html/bug-commoncpp/2019-05/msg00000.html
3 +--- inc/ucommon/platform.h.orig 2015-11-07 12:15:59.000000000 -0600
4 ++++ inc/ucommon/platform.h 2019-05-23 23:06:33.000000000 -0500
5 +@@ -174,7 +174,7 @@
6 + #if __cplusplus <= 199711L && !defined(_MSC_VER)
7 + #if defined(__GNUC_MINOR__) && !defined(__clang__)
8 + #define nullptr __null
9 +-#elif !defined(__clang__) || (defined(__clang__) && defined(__linux__))
10 ++#elif !defined(__clang__) || (defined(__clang__) && !defined(_LIBCPP_VERSION))
11 + const class nullptr_t
12 + {
13 + public:

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut