From 9432eabb2f6ba282943e1b7ea4e90c0ed38cefe2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Nov 2010 20:36:37 +1100 Subject: developer: only do the C++ reserved name checking on Linux this prevents us breaking the solaris build, but will still mean we prevent C++ vars in our code --- source4/include/includes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/include') diff --git a/source4/include/includes.h b/source4/include/includes.h index 796e313572..d0a97020c6 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -38,7 +38,7 @@ to include --with-developer since too many systems still have comflicts with their header files (e.g. IRIX 6.4) */ -#if !defined(__cplusplus) && defined(DEVELOPER) +#if !defined(__cplusplus) && defined(DEVELOPER) && defined(__linux__) #define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES #define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES #define public #error DONT_USE_CPLUSPLUS_RESERVED_NAMES -- cgit