diff options
author | Brad King <brad.king@kitware.com> | 2005-07-26 15:34:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-07-26 15:34:57 (GMT) |
commit | b9d472d81dd5c2e12583aa0a8447e9eaa2d8ed50 (patch) | |
tree | 0c4b626230e4417cafd69c123c68a03bb31ff0c6 /Source/kwsys/Base64.h.in | |
parent | 5b26fefd60eb9ca6b1ee351fe4e17e12eb0ec19d (diff) | |
download | CMake-b9d472d81dd5c2e12583aa0a8447e9eaa2d8ed50.zip CMake-b9d472d81dd5c2e12583aa0a8447e9eaa2d8ed50.tar.gz CMake-b9d472d81dd5c2e12583aa0a8447e9eaa2d8ed50.tar.bz2 |
ENH: Moved kwsys_ns and kwsysEXPORT macros to Configure.h in the case of building a kwsys source file. This allows more than one header to be included in a kwsys source file without redefining the macros.
Diffstat (limited to 'Source/kwsys/Base64.h.in')
-rw-r--r-- | Source/kwsys/Base64.h.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/kwsys/Base64.h.in b/Source/kwsys/Base64.h.in index 14bb1ec..45221f6 100644 --- a/Source/kwsys/Base64.h.in +++ b/Source/kwsys/Base64.h.in @@ -20,8 +20,10 @@ namespace. These macros are used internally to kwsys only, and are not visible to user code. Use kwsysHeaderDump.pl to reproduce these macros after making changes to the interface. */ -#define kwsys_ns(x) @KWSYS_NAMESPACE@##x -#define kwsysEXPORT @KWSYS_NAMESPACE@_EXPORT +#if !defined(KWSYS_NAMESPACE) +# define kwsys_ns(x) @KWSYS_NAMESPACE@##x +# define kwsysEXPORT @KWSYS_NAMESPACE@_EXPORT +#endif #define kwsysBase64 kwsys_ns(Base64) #define kwsysBase64_Decode kwsys_ns(Base64_Decode) #define kwsysBase64_Decode3 kwsys_ns(Base64_Decode3) @@ -99,9 +101,9 @@ kwsysEXPORT unsigned long kwsysBase64_Decode(const unsigned char *input, } /* extern "C" */ #endif -/* If we are building Base64.c, let it use these macros. Otherwise, - undefine them to keep the namespace clean. */ -#if !defined(KWSYS_IN_BASE64_C) +/* If we are building a kwsys .c or .cxx file, let it use these macros. + Otherwise, undefine them to keep the namespace clean. */ +#if !defined(KWSYS_NAMESPACE) # undef kwsys_ns # undef kwsysEXPORT # undef kwsysBase64 |