summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-28WaE: ATSUI is deprecated in newer SDKsTor Lillqvist
So when using gcc 4.2.1, turn deprecation warnings off for most of these source files, sigh.
2011-09-28WaE: drop some unused variablesTor Lillqvist
2011-09-28WaE: NSPICTPboardType is deprecated in 10.6 and laterTor Lillqvist
So turn off -Wdeprecated-declarations for most of this source file when using gcc 4.2.1 or later.
2011-09-28Fix syntax error that earlier compiler versions didn't mindTor Lillqvist
2011-09-28WaE: setAccessoryView is deprecated in 10.5 and laterTor Lillqvist
Don't know how to fix it properly (i.e. use the corresponding non-deprecated API instead), so just using the pragma to ignore that warning for now... Unfortunately gcc 4.2.1 doesn't seem to implement the 'GCC diagnostic push/pop' pragmas, so we just have to ignore the warning for the method in question and the rest of the file. But luckily it is the last method;)
2011-09-28WaE: 'NSWindow' may not respond to '-windowShouldClose:'Tor Lillqvist
We get this warning when compiling with g++ 4.2.1 from the 10.6 SDK. As far as I see there is no command-line option to get rid of it, and thus also no pragma to avoid it just for the lines of code in question. So to make it compile with -Werror also using this compiler/SDK, expand the Objective-C message call syntactic sugar into a objc_msgSend() call instead. That should be equivalent, shouldn't it?
2011-09-28Fix syntax error that earlier compiler versions didn't mindTor Lillqvist
2011-09-28WaE: declared with greater visibility than the type of its fieldTor Lillqvist
To be specific, 'vcl::PageSyncData' declared with greater visibility than the type of its field 'vcl::PageSyncData::mActions' Adding a SAL_DLLPRIVATE to the PageSyncData struct, too, then. Warning was emitted by g++ 4.2.1 against the MacOSX 10.6 SDK.
2011-09-28more unit test cut/paste reduxMichael Meeks
2011-09-28disable use of test's unoexceptionprotector for now, to break dep loopMichael Meeks
2011-09-28regenerate listCaolán McNamara
2011-09-28callcatcher: another round of unused methodsCaolán McNamara
2011-09-28sw: switch filters-test to the new shared unit test codeMichael Meeks
2011-09-28sc: switch filters-test to the new shared unit test codeMichael Meeks
2011-09-28add missing dependent includeMichael Meeks
2011-09-28add new bootstrapfixture to share and simplify unit test codeMichael Meeks
2011-09-28remove obsolete include guardMichael Meeks
2011-09-28Removed unused code EnhWMFReader::ReadGDIComment()Marc-Andre Laverdiere
2011-09-28Let SalAbort dump core on developer builds.Stephan Bergmann
2011-09-28Uploading a new release of libwpsFridrich Štrba
2011-09-28Fix building moz on Mac OS X.Stephan Bergmann
* On Mac, nss-config must not emit -rpath-link switch. * --with-system-nss/-nspr horribly broke in combination with the routine use of MOZ_ARCH and resulting MOZ_CROSS_COMPILE for Mac, and the latter appears to be unnecessary for a normal build, anyway, so is now conditional CREATE_UNIVERSAL_MAC_MOZ_ZIP, in case anybody still uses the code to create universal moz archives. * This in turn revealed two issues in moz that have been addressed with a new macosx_build_fix.patch.
2011-09-28Uyghur LCID is 1152 not 2200Andras Timar
2011-09-28remove obsolete fake_languagesstring() subroutineAndras Timar
2011-09-28remove checks for unused BUILD_SPECIAL environment variableAndras Timar
2011-09-28Look at GCC version, not whether MacOSX or notTor Lillqvist
2011-09-28nothing initializes pDefaultExt anymoreCaolán McNamara
2011-09-28Don't consider newer Apple compilers having "universal" byte orderTor Lillqvist
I don't understand what the "universal" byte order thing tries to say. Sure, Apple's compilers can produce fat binaries, i.e. containing code for multiple architectures, which I guess might have differing byte order. But I think the test for an -arch flag being present here is backwards, surely if you specify -arch i386 for instance, then we *know* that the byte order is little endian, not "universal". Anyway, this broke ICU when built against MacOSX SDK 10.6 at least, the ICU configury used wrong suffix for ICUDATA_NAME, and genbrk failed in i18npool with a mysterious "can not initialize ICU. status = U_FILE_ACCESS_ERROR" message.
2011-09-28ByteString->rtl::OStringBufferCaolán McNamara
2011-09-28callcatcher: another roundCaolán McNamara
2011-09-28ByteString->rtl::OStringBufferCaolán McNamara
2011-09-28ByteString->rtl::OStringBufferCaolán McNamara
2011-09-28callcatcher: AtomServer unusedCaolán McNamara
2011-09-28callcatcher: unused codeCaolán McNamara
2011-09-28unused ctor, and use boost::noncopyableCaolán McNamara
2011-09-28re-work XPropertyList default extension handling to increase re-useMichael Meeks
2011-09-28we want these macros to be emtpy strings, not 1sDavid Tardon
The substituted 1s cause i686-pc-mingw32-windres to bail out with syntax error in solenv/inc/shlinfo.rc at line 67.
2011-09-28removed dead codeTakeshi Abe
2011-09-28fix typo in messageTakeshi Abe
2011-09-27Revert "Fixx FormulaCompiler build after the O[U]String[Buffer] changes"Stephan Bergmann
Obsoleted by the subsequent fix to tools/string.hxx. This reverts commit 928f7a47a15d53817697283ba0a7fa4987ea458f.
2011-09-27Work around ambiguity introduced by previous rtl::O[U]String[Buffer] related ↵Stephan Bergmann
clean up.
2011-09-27Fixx FormulaCompiler build after the O[U]String[Buffer] changesFridrich Štrba
2011-09-27Compile also ICU for debugging if --enable-debugTor Lillqvist
2011-09-27WaE: comparison between signed and unsigned integer expressionsTor Lillqvist
2011-09-27More WaE fixes for iOSTor Lillqvist
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann
2011-09-27move windows-only call into platform/win*David Tardon
2011-09-27make WinResTarget's name independent of LinkTargetDavid Tardon
2011-09-27correct link target name should be propagated from gb_Library_add_nativeresDavid Tardon
2011-09-27remove unused header and clean d.lst which should be emptyMatúš Kukan
2011-09-27More Android config.sub fixing.Thorsten Behrens
This time the redland library.