Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-02 | Updated workaround comment | Stephan Bergmann | |
2012-03-30 | More static lib name mappings. Yeah, need to do a gperf thing some night | Tor Lillqvist | |
2012-03-30 | removed duplicate includes in cppcanvas / cppuhelper / cui | Takeshi Abe | |
2012-03-29 | Add some more temporary hardcoded library mappings for DISABLE_DYNLOADING | Tor Lillqvist | |
2012-03-22 | Make SAL_CALL placement work with both MinGW and MSVC | Stephan Bergmann | |
2012-03-22 | Fix SAL_CALL placement (so MinGW won't complain) | Stephan Bergmann | |
2012-03-21 | chmod -x | Tor Lillqvist | |
2012-03-21 | More hacking on static linking (iOS) support | Tor Lillqvist | |
2012-03-14 | Enable -Wnon-virtual-dtor for GCC 4.6 | Stephan Bergmann | |
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed. | |||
2012-03-12 | SAL_DLLPUBLIC_TEMPLATE | Luboš Luňák | |
On Linux, public templates should not be hidden at the linker level. But on Windows, dllimport causes trouble. So create a new macro to be used specifically with templates that does the right thing on both platforms. (http://lists.freedesktop.org/archives/libreoffice/2012-March/028041.html and followups) | |||
2012-03-10 | Translate German comments in core/cppuhelper | Tom Thorogood | |
2012-03-10 | exported templates need to be marked as such | Luboš Luňák | |
Otherwise their instances created in other modules may end up as non-exported even when used by something exported. | |||
2012-02-27 | some doxygen warnings cleanup | Korrawit Pruegsanusak | |
2012-02-23 | Some doxygen warnings cleanup | Korrawit Pruegsanusak | |
2012-02-22 | WaE: silence some documentation errors | Thomas Arnhold | |
2012-02-21 | WaE: silence some documentation errors | Thomas Arnhold | |
2012-02-06 | Added READMEs for modules related to URE, with content from the wiki | Josh Heidenreich | |
2012-02-05 | switch to include-based build rather than sourced-based build | Norbert Thiebaud | |
2012-01-26 | Code cleanup: ( () ) replaced by (()) | Alexander Bergmann | |
2012-01-23 | android: nasty hack to overcome unpleasantness of UNO bootstrapping | Michael Meeks | |
2012-01-21 | Removed some unused parameters; added SAL_UNUSED_PARAMETER. | Stephan Bergmann | |
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers. | |||
2012-01-19 | clean-up Doxygen warnings | Norbert Thiebaud | |
2012-01-11 | fix prefix of command line switches (-- instead of -) | Andras Timar | |
2012-01-09 | Also gives BoundListeners a CPPUHELPER_DLLPUBLIC to link on msvc | Korrawit Pruegsanusak | |
2012-01-05 | Switch from autodoc to doxygen for SDK C++ documentation. | Stephan Bergmann | |
* New build prerequisite doxygen (controllable via --with-doxygen). * Adapted various headers to slightly different doxygen documentation syntax, but much clean up still remains to be done (i.e., warnings emitted by doxygen fixed). | |||
2012-01-03 | WaE: unused parameter 'rPath' | Tor Lillqvist | |
2012-01-02 | CppunitTest_cppuhelper_qa_weak depends on module bridges | Stephan Bergmann | |
...through a call to cppu::getCaughtException. | |||
2012-01-02 | cppuhelper: convert to gbuild | Matúš Kukan | |
missing subsequent test qa/propertysetmixin/makefile.mk | |||
2012-01-02 | cppuhelper: add visibility symbols as first step for porting to gbuild | Matúš Kukan | |
2011-12-17 | Fix for fdo43460 Part X getLength() to isEmpty() | Olivier Hallot | |
Part X Module cppu cppuhelper cpputools | |||
2011-12-13 | GUI is also UNX for Mac, to check for Mac use either OS→MACOSX or ↵ | Christian Lohmaier | |
GUIBASE→aqua | |||
2011-12-11 | I don't see NO_BSYMBOLIC being used anywhere | Tor Lillqvist | |
2011-12-07 | ignore backup files in services/ directory to avoid debugging grief | Michael Meeks | |
2011-11-27 | remove precompiled_xxx.hxx/cxx | Norbert Thiebaud | |
2011-11-27 | remove include of pch header in cppuhelper | Norbert Thiebaud | |
2011-11-27 | remove PCH support in dmake-module | Norbert Thiebaud | |
2011-11-17 | Look for libboostrap.uno.so and not bootstrap.uno.so on Android | Tor Lillqvist | |
Not sure if we need to be more generic here, and always add a "lib" prefix if not present. Or do the changes to the makefilery take care of it, so that for other UNO components than bootstrap, the name as stored wherever it is stored does contain the "lib" prefix we are forces to use on Android? | |||
2011-11-17 | Enforce a "lib" prefix for UNO components for Android | Tor Lillqvist | |
This commit for the old build system. (Don't bother for components not relevant for Android.) The Android package installer (as invoked through "adb install", from "ant debug install") silently ignores native libraries in app packages (.apk files) whose names don't start with "lib" and end with ".so". The package builder (as invoked through "ant debug") in the SDK gladly includes also thusly named native libraries in the .apk, though. Yay for consistency. | |||
2011-11-15 | fdo#42865: cppu,cppuhelper,testtools: no mapfile | Michael Stahl | |
Instead, build with VISIBILITY_HIDDEN. | |||
2011-11-10 | New LO_{LIB,JAVA}_DIR make special inbuild component handling superfluous. | Stephan Bergmann | |
2011-11-02 | Simplify addition of optional components to URE_MORE_{SERVICES,TYPES}. | Stephan Bergmann | |
Those bootstrap variables now support <XXX>* syntax to include all files (non- recursively) contained in the directory denoted by XXX. Optional components can put their data simply into program/services/ and program/types/. | |||
2011-11-02 | Minor clean up. | Stephan Bergmann | |
2011-10-28 | typo/spelling/grammar in comment | Lionel Elie Mamane | |
2011-10-18 | Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on ↵ | Stephan Bergmann | |
Linux x86_64). | |||
2011-09-22 | just silence the auto_ptr deprecations in isolation | Caolán McNamara | |
2011-09-21 | Improved some error reporting. | Stephan Bergmann | |
2011-09-21 | OSL_TRACE: Remove trailing newlines | Thomas Arnhold | |
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines | |||
2011-09-12 | sb140: #i113503# mixing system CppUnit and OOo STLport does not work, backed ↵ | Stephan Bergmann | |
out a6913c9677c2 For LibO, that just means replacing sal/cppunit.h with sal/precppunit.hxx. | |||
2011-09-12 | sb140: #i117698# no implementations of XIdlClassProvider remain, so code ↵ | Stephan Bergmann | |
that checks for it can be removed | |||
2011-09-12 | sb140: #i117697# simplify obsolete cppuhelper/stdidlclass.hxx implementation | Stephan Bergmann | |