From 82a213880ff3927d8b2b3e5135743002a3b4df35 Mon Sep 17 00:00:00 2001 From: "michael.weghorn" Date: Fri, 16 Feb 2018 09:20:14 +0000 Subject: Remove now unused libgetuid.so Some scripts in which it was used have been removed (commit e1082e45361a92a31adedcc3ed0a35c704bca543) and the more reliable 'fakeroot' is now in use at all other places where libgetuid.so was previously used (s. tdf#115554). Change-Id: I638e96e5c8d671e3b145b79f33de718fe34ea514 Reviewed-on: https://gerrit.libreoffice.org/49837 Tested-by: Jenkins Reviewed-by: Michael Stahl --- compilerplugins/clang/store/constantfunction.cxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'compilerplugins/clang/store') diff --git a/compilerplugins/clang/store/constantfunction.cxx b/compilerplugins/clang/store/constantfunction.cxx index 343cdc6ffc14..19c28df00db5 100644 --- a/compilerplugins/clang/store/constantfunction.cxx +++ b/compilerplugins/clang/store/constantfunction.cxx @@ -84,11 +84,6 @@ bool ConstantFunction::VisitFunctionDecl(const FunctionDecl * pFunctionDecl) { if (aFileName.startswith(SRCDIR "/basegfx/test/")) { return true; } - // some stuff is just stubs under Linux, although this appears to be a SOLARIS-specific hack, so it - // should probably not even be compiling under Linux. - if (aFileName == SRCDIR "/setup_native/scripts/source/getuid.c") { - return true; - } // bridges has some weird stuff in it.... if (aFileName.startswith(SRCDIR "/bridges/")) { return true; -- cgit