Age | Commit message (Collapse) | Author |
|
Change-Id: Ibb0970cfde65b331a4b870cc254b0a6481889edf
|
|
It was introduced to get newer File Picker dialogs (i#70927)
but the special manifest file for that was not actually used for years;
LO 3.5 already includes a generic manifest file that is like any other
and probably has zero benefit over the manfiest that is embedded in
the soffice.bin binary anyway.
Change-Id: I0f41f10ecf26201043a8c9964cdfef95bc348eb8
|
|
Clean up the horrible mess around unopkg.bin unopkg.com unopkg.exe and
soffice.bin soffice.exe and crashrep.com executables and associated
renaming via Packages in the desktop makefiles by simply using
RepositoryFixes to correct the names.
Change-Id: I4d3a549462cfa90a63d62b35db1b0407b25239f7
|
|
|
|
Always link in gb_STDLIBS, except when the library explicitly opts out
with gb_LinkTarget_disable_standard_system_libs.
Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
|
|
... new gb_LinkTarget_add_standard_system_libs
Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
|
|
Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
|
|
Change-Id: I72b41e4826b7e93b5c8aeacbf6d9d52e3780f090
|
|
Naming convention for gbuild methods:
- "add" is used for stuff that is logically a part of the target
(i.e. not registered at the Module, but defined in the target's makefile)
- "use" is used for stuff that is logically a different target
(i.e. it is registered at the Module, has it's own makefile, may be
in a different module than the target)
|
|
|
|
|
|
|
|
This reverts commit 39cfc4d8ad77700aefabaedde430693448a5f76f.
This OS_FOR_BUILD is to modify behavior in the cross-compilation case.
|
|
|
|
|
|
|
|
|
|
|
|
fdo#42914"
This reverts commit d76479654748454e280ac48217fb0036bc5940a1.
Bjoern fixed it correctly, this hack is not needed.
|
|
It is puzzling that Executable_soffice.bin.mk contains the line
$(eval $(call gb_Executable_set_targettype_gui,$(sofficebin),YES))
yet, in the build log we see -SUBSYSTEM:CONSOLE among the linker flags.
I added -SUBSYSTEM:WINDOWS flag exlicitely, and it comes later so it
prevails. I guess MinGW will be still affected. It really should be
fixed correctly by a gbuild expert.
|
|
|
|
|
|
- or maybe better: have an rule for manifest files on windows, instead of creating them as a sideeffect
|
|
|
|
the .bin depends on the _bin.exe and not vv.
also -f is required for rm in phony clean rules
|
|
the previous solution couldnt work:
- Packages are toplevel targets, so they need to be in a separate file
- However, Packages should not be used here as it interferes with the
pattern rules on $(OUTDIR)/bin
- replacing those instead with explicit (non-pattern) rules for this
exceptional case
- depending from the regular target in $(OUTDIR) on the special one
- depending from the special target on the $(WORKDIR) one
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|