From 0cee740c95496210d62206a21e8bc9adebf4fa4d Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 17 Jan 2017 16:13:54 +0100 Subject: 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 --- jvmfwk/plugins/sunmajor/pluginlib/util.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'jvmfwk') diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx index 65fe6424aa52..01169a741d14 100644 --- a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx +++ b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx @@ -1174,7 +1174,7 @@ bool makeDriveLetterSame(OUString * fileURL) } #ifdef UNX -#ifdef SOLARIS +#ifdef __sun void addJavaInfosDirScan( std::vector> & allInfos, @@ -1327,7 +1327,7 @@ void addJavaInfosDirScan( } #endif // MACOSX } -#endif // ifdef SOLARIS +#endif // ifdef __sun #endif // ifdef UNX } -- cgit