office-gobmx/postprocess
Mike Kaganski ec0a49ecc7 Windows 7-8.1 support was removed, prevent install on these old systems
There is no simple "Windows is 10 or newer" check in MSI, with the
Microsoft policy of "you don't need to know real Windows version".
See also https://developercommunity.visualstudio.com/t/detect-a-windows-version-from-msi/412198

The values that MSI sees (e.g. on my Win11) are:

Property(C): VersionNT = 603
Property(C): VersionNT64 = 603
Property(C): WindowsBuild = 9600

So those can't be used for the check. I use the WINMAJORVER that is
read from registry (Software\Microsoft\Windows NT\CurrentVersion).

There is no more need to check and install UCRT; it was dropped.

Change-Id: Ic02d6aeb965e9684bafd4357f969980f77000e73
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178049
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2024-12-07 20:06:46 +01:00
..
packimages Fix postprocess/README packimages.pl has been replaced by pack_images.py 2023-07-16 18:54:15 +02:00
qa loplugin:ostr in various 2024-05-20 22:09:56 +02:00
signing Windows 7-8.1 support was removed, prevent install on these old systems 2024-12-07 20:06:46 +01:00
CppunitTest_services.mk Missing test dependencies 2020-02-07 08:20:28 +01:00
CustomTarget_check_dynamic_objects.mk makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) 2024-05-03 16:06:14 +02:00
CustomTarget_components.mk makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) 2024-05-03 16:06:14 +02:00
CustomTarget_fontconfig.mk makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) 2024-05-03 16:06:14 +02:00
CustomTarget_images.mk makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) 2024-05-03 16:06:14 +02:00
CustomTarget_registry.mk add OpenGL transitions even when OpenGL is not available 2024-12-03 12:54:44 +01:00
CustomTarget_signing.mk makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) 2024-05-03 16:06:14 +02:00
Makefile postprocess: convert to gbuild 2012-12-15 21:20:27 +00:00
Module_postprocess.mk WASM open links in new browser tabs 2022-01-20 10:26:04 +01:00
Package_fontconfig.mk makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) 2024-05-03 16:06:14 +02:00
Package_images.mk makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) 2024-05-03 16:06:14 +02:00
Package_registry.mk put CJK/CTL .xcds into instdir 2013-11-28 12:42:31 +01:00
Rdb_services.mk Generally determine Rdb content from gb_*_set_componentfile calls 2021-12-10 08:14:24 +01:00
README.md Updated README.md files to represent current code / use Markdown format 2021-04-07 17:47:16 +02:00

Postprocessing and Checking

Postprocessing and checking of files delivered by other modules.

This module has to be the last one built before creating install sets in module instset_native. Thus it ties together all the dependencies of all the other de-coupled modules. See the first line of postprocess/prj/build.lst for that.