- 30 Eki, 2012 28 kayıt (commit)
-
-
Stephan Bergmann yazdı
...so that these tests also work from a toplevel make. Change-Id: I82899ce6f1760b34b365ee5cfacbadb1f40de766
-
Noel Grandin yazdı
Change-Id: Ia8bcd2efd8137922024fb2ed2f2e4197f4ee25e1
-
Tor Lillqvist yazdı
Change-Id: I0b997cdd3c133fa2212d519a136fa17f08a68730
-
Stephan Bergmann yazdı
... "SvTreeList: fix singular iterator compare assertions" after commits that broke it again. Change-Id: I527fe37e2a0a9f6fbba468261892379920f02c10
-
Miklos Vajna yazdı
Change-Id: I51cd4e315f99099b9ee62761f404dbb640bc3106
-
David Tardon yazdı
Change-Id: I326409a90162395150a72dcb108b180a07f1afb9
-
Takeshi Abe yazdı
Change-Id: I87d6e518aebcd0074f673b84b66df27ae9a0a15a
-
Takeshi Abe yazdı
Change-Id: I72d764cd88dcd6516edfd11dd39d54f166340de2
-
Kohei Yoshida yazdı
Change-Id: Ic20584b5da2920dc8f2761b7f2c65c58713c5895
-
Kohei Yoshida yazdı
Change-Id: Idda5d6ad4d8991efb97d75b7ee743bc98b3e4c03
-
Kohei Yoshida yazdı
Change-Id: If3fdbf7118b94ae9d71ca388f07e3b0a5b4e5787
-
Kohei Yoshida yazdı
Change-Id: I9e9f6fa6a198bbab7397f7e10a3c39ecdd9e00f9
-
Kohei Yoshida yazdı
Change-Id: Id29111b0dd9a14fc2dbb18447293b2ac01e20df4
-
Kohei Yoshida yazdı
Change-Id: I8ed7ed76536cb71eff9f7a362220462f0ec112e3
-
Kohei Yoshida yazdı
There still lots of other methods that should take const pointers. But one step at a time... Change-Id: I1bae409ddb1939943db8c6f40d1b180f82f42bce
-
Kohei Yoshida yazdı
This replaces SvTreeEntryList. The only thing to be wary of is that now we use ptr_vector to store child entries, which changes the scheme on the life cycle management of tree entries. Change-Id: I92b6e41ea500bc9b9227259c010887b798194909
-
Xisco Fauli yazdı
Change-Id: Ife802611e8aef10e5d06f04617662753d6f2ee21
-
Xisco Fauli yazdı
Change-Id: Icbceb222d400652f4e8757a9aa2967bee60bc09e
-
Xisco Fauli yazdı
Change-Id: I25c49f58e580a0d08a2b0d0fce9d76e372c69d19
-
Xisco Fauli yazdı
Change-Id: Ic839031a50c4bd84efaebe89dbbe975bf81db789
-
Xisco Fauli yazdı
Change-Id: Ie0b149b4a8928e5b61153a6ed62b66d02f916f20
-
Caolán McNamara yazdı
Change-Id: I6c41b8f4d3ad739eff545063bd1f8fe8f4fba65e
-
Markus Mohrhard yazdı
missing are still the Excel2010 extLst entries Change-Id: Ic0c728613b1ee48482cbd9cef2aeccd0e0f25f72
-
Markus Mohrhard yazdı
Change-Id: Ib9fe916eae980949978b0a5a78dfabea6581a43b
-
Markus Mohrhard yazdı
Change-Id: I309ca58d708f0df87365a21fdcf9acb829f08a9e
-
Markus Mohrhard yazdı
Change-Id: Ib2d3b9434038b25f2dc175809e211d7651998583
-
Markus Mohrhard yazdı
already supports ooxml import Change-Id: I3e54aa1632a78f853bb13a3a4f76e9d66ea0b9ac
-
Markus Mohrhard yazdı
Change-Id: Ib8c141309227aa711944bed202258d131ed1367d
-
- 29 Eki, 2012 12 kayıt (commit)
-
-
Michael Stahl yazdı
This reverts commit 7963c095. Should be obsoleted by 3f0f07c7
-
Michael Stahl yazdı
This reverts commit 45c7a7f5. Should be obsoleted by 3f0f07c7
-
Luboš Luňák yazdı
Should be especially useful on Windows (e.g. 'make sw dev-update'). Change-Id: Ie80b7f1caae0fc1edc7cf791494c7648ca7b8d82
-
Luboš Luňák yazdı
Change-Id: I0ac41af09ac6582c3f75239f2163c895665cd572
-
Luboš Luňák yazdı
Change-Id: I18d1dbdc9d7ed6027969424a196532084537fe87
-
Michael Stahl yazdı
Solves 2 problems: 1. it can happen that AR decides not to write to the .a file at all, because no input file is newer than the archive content; then the timestamp of the .a file does not get updated 2. if an object file is removed from the makefile the .a file would still contain it after an incremental build Change-Id: I30737c6454dc06c89ccf233e06d430d2ddc5bc33
-
Michael Stahl yazdı
Mangle all included files in the UnpackedTarball directory in the generated dependency files to point to the target of the UnpackedTarball instead. This will cause all files that include them to be rebuilt on every unpack, which is sound and much easier to maintain than manually enumerating all internal header files somewhere. Change-Id: Iaaa9b27450549d26b40d32ae0f740c2d5ef0edc5
-
Michael Stahl yazdı
The generated cxx files that are built in the StaticLibrary depend on the header from the UnpackedTarball. When the tarball gets unpacked again in an incremental build, the headers may have changed and the cxx files that include them must be rebuilt. This works for those headers that are added to a Package, because they are make targets, but not for those that are not delivered and just sit in the unpacked directory. These need to be manually enumerated in order to turn them into make targets, which is not entirely satisfying. A little grepping in the .d file for the StaticLibrary can help: grep "UnpackedTarball.*\.h" workdir/*/Dep/LinkTarget/StaticLibrary/libwpslib.a.d | sed 's,:* \+[^ ]*$,,' | sed 's,^.*UnpackedTarball/[a-zA-Z0-9]*/,,' | sort | uniq Change-Id: I9fd4ee0cd6646c834118cf172e39a24d2833c439
-
Michael Stahl yazdı
Change-Id: I75c754a9b1cb59936f1ea6acac92ad47ac417f27
-
Matúš Kukan yazdı
Change-Id: I92395d5883ce862f1dca7b88aa4291a9608c1a52
-
Stephan Bergmann yazdı
Change-Id: I63e68bd37b46f339d09d97a6bf6edfeaa6a7df1d
-
Matúš Kukan yazdı
Change-Id: I17eae5612b88c3f57842a8ae50b1d062acf94765
-