Skip to content
Snippets Groups Projects
Commit aaf96507 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Some Mac header #defines macros like check and equivalent -- gack!!

Given that third-party libraries (such as Boost) can and do use those names,
properly namespace-scoped, it's unpardonable to break any such innocent usage
with a macro. Given the pervasiveness of the need, introduce a header file
with the requisite #undef directives.
parent 4d1b62f4
No related branches found
No related tags found
No related merge requests found
...@@ -116,6 +116,7 @@ set(llcommon_HEADER_FILES ...@@ -116,6 +116,7 @@ set(llcommon_HEADER_FILES
bitpack.h bitpack.h
ctype_workaround.h ctype_workaround.h
doublelinkedlist.h doublelinkedlist.h
fix_macros.h
imageids.h imageids.h
indra_constants.h indra_constants.h
linden_common.h linden_common.h
......
/**
* @file fix_macros.h
* @author Nat Goodspeed
* @date 2012-11-16
* @brief The Mac system headers seem to #define macros with obnoxiously
* generic names, preventing any library from using those names. We've
* had to fix these in so many places that it's worth making a header
* file to handle it.
*
* $LicenseInfo:firstyear=2012&license=viewerlgpl$
* Copyright (c) 2012, Linden Research, Inc.
* $/LicenseInfo$
*/
// DON'T use an #include guard: every time we encounter this header, #undef
// these macros all over again.
// who injects MACROS with such generic names?! Grr.
#ifdef equivalent
#undef equivalent
#endif
#ifdef check
#undef check
#endif
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include "linden_common.h" #include "linden_common.h"
#include "fix_macros.h"
#include <boost/thread.hpp> #include <boost/thread.hpp>
#include "llapr.h" #include "llapr.h"
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "lldiriterator.h" #include "lldiriterator.h"
#include "fix_macros.h"
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
#include <boost/regex.hpp> #include <boost/regex.hpp>
......
...@@ -36,8 +36,8 @@ ...@@ -36,8 +36,8 @@
#include <AGL/agl.h> #include <AGL/agl.h>
// AssertMacros.h does bad things. // AssertMacros.h does bad things.
#include "fix_macros.h"
#undef verify #undef verify
#undef check
#undef require #undef require
......
...@@ -41,8 +41,8 @@ ...@@ -41,8 +41,8 @@
#endif #endif
// AssertMacros.h does bad things. // AssertMacros.h does bad things.
#include "fix_macros.h"
#undef verify #undef verify
#undef check
#undef require #undef require
......
...@@ -37,8 +37,8 @@ ...@@ -37,8 +37,8 @@
#include <Carbon/Carbon.h> #include <Carbon/Carbon.h>
// AssertMacros.h does bad things. // AssertMacros.h does bad things.
#include "fix_macros.h"
#undef verify #undef verify
#undef check
#undef require #undef require
#include <vector> #include <vector>
......
...@@ -39,8 +39,8 @@ ...@@ -39,8 +39,8 @@
#include <Carbon/Carbon.h> #include <Carbon/Carbon.h>
// AssertMacros.h does bad things. // AssertMacros.h does bad things.
#include "fix_macros.h"
#undef verify #undef verify
#undef check
#undef require #undef require
#include <vector> #include <vector>
......
...@@ -32,9 +32,7 @@ ...@@ -32,9 +32,7 @@
#include "lllocalbitmaps.h" #include "lllocalbitmaps.h"
/* boost: will not compile unless equivalent is undef'd, beware. */ /* boost: will not compile unless equivalent is undef'd, beware. */
#ifdef equivalent #include "fix_macros.h"
#undef equivalent
#endif
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
/* image compression headers. */ /* image compression headers. */
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
*/ */
#include <Carbon/Carbon.h> #include <Carbon/Carbon.h>
#include "fix_macros.h"
#undef check
#undef verify #undef verify
#undef require #undef require
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment