diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-01-17 16:13:54 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-01-17 16:38:33 +0100 |
commit | 0cee740c95496210d62206a21e8bc9adebf4fa4d (patch) | |
tree | 4a1ff295046962418b30ac244314dfee5fb92fb5 /rsc | |
parent | b170265a6bba70faf1cb4172834586f4f45dd2bf (diff) |
replace #ifdef SOLARIS with #ifdef __sun
Check for a macro that is defined by the compiler, we don't really need
one defined by the build system.
Change-Id: Iccb8e3198396881395c97a6b81690ebe64b7e9d2
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rsclex.hxx | 2 | ||||
-rw-r--r-- | rsc/source/parser/rsclex.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rsc/inc/rsclex.hxx b/rsc/inc/rsclex.hxx index 690b67a8871b..0e1fcf3dd792 100644 --- a/rsc/inc/rsclex.hxx +++ b/rsc/inc/rsclex.hxx @@ -92,7 +92,7 @@ class ObjectStack }; /****************** F o r w a r d s **************************************/ -#if defined ( SOLARIS ) +#if defined(__sun) extern "C" int yyparse(); // forward Deklaration fuer erzeugte Funktion extern "C" void yyerror( const char * ); extern "C" int yylex(); diff --git a/rsc/source/parser/rsclex.cxx b/rsc/source/parser/rsclex.cxx index 0725d8d97ccf..b7446db38a26 100644 --- a/rsc/source/parser/rsclex.cxx +++ b/rsc/source/parser/rsclex.cxx @@ -326,7 +326,7 @@ int yylex() return aKeyVal[ 0 ].nKeyWord; } -#if defined SOLARIS +#if defined __sun extern "C" void yyerror( const char* pMessage ) #else void yyerror( char* pMessage ) |