Index: main/set_soenv.in =================================================================== --- main/set_soenv.in (revision 1736287) +++ main/set_soenv.in (working copy) @@ -1380,7 +1380,9 @@ $I.'$SOLARVER'.$ds.'$INPATH'.$INC. $I.'$SOLARENV'.$ds.'$OUTPATH'.$INC. $I.'$SOLARENV'.$INC. - $I.'$SRC_ROOT'.$ds."res"; + $I.'$SRC_ROOT'.$ds."res". + $I.'$SRC_ROOT'.$ds."tools".$INC. + $I.'$SRC_ROOT'.$ds."comphelper".$INC; if ($platform =~ m/solaris|linux|osf1|freebsd|netbsd/) { Index: main/sal/inc/rtl/string.hxx =================================================================== --- main/sal/inc/rtl/string.hxx (revision 1736287) +++ main/sal/inc/rtl/string.hxx (working copy) @@ -32,6 +32,9 @@ #include #include #include +#ifdef DBG_UTIL +#include +#endif /* DBG_UTIL */ #if !defined EXCEPTIONS_OFF #include @@ -969,8 +972,10 @@ /* Helper methods to support OString messages in OSL_ENSURE, DBG_ERROR, DBG_WARN, DBG_TRACE, etc. */ inline sal_Bool SAL_CALL osl_assertFailedLine( const sal_Char* pszFileName, sal_Int32 nLine, const ::rtl::OString& rMessage) { return osl_assertFailedLine( pszFileName, nLine, rMessage.getStr()); } +#ifdef DBG_UTIL inline void DbgOut( const rtl::OString& rMessage, sal_uInt16 nOutType, const sal_Char* pFileName, sal_uInt16 nLineNum ) { DbgOut( rMessage.getStr(), nOutType, pFileName, nLineNum); } +#endif /* DBG_UTIL */ #endif /* __cplusplus */