1diff --git a/external/CppMicroServices/framework/src/bundle/BundleResourceContainer.cpp b/external/CppMicroServices/framework/src/bundle/BundleResourceContainer.cpp
2index aee499e9..13fa89d4 100644
3--- a/external/CppMicroServices/framework/src/bundle/BundleResourceContainer.cpp
4+++ b/external/CppMicroServices/framework/src/bundle/BundleResourceContainer.cpp
5@@ -105,7 +105,7 @@ bool BundleResourceContainer::GetStat(int index,
6 const_cast<mz_zip_archive*>(&m_ZipArchive), index)
7 ? true
8 : false;
9- stat.modifiedTime = zipStat.m_time;
10+ stat.modifiedTime = 0;
11 stat.crc32 = zipStat.m_crc32;
12 // This will limit the size info from uint64 to uint32 on 32-bit
13 // architectures. We don't care because we assume resources > 2GB
14diff --git a/external/CppMicroServices/third_party/miniz.c b/external/CppMicroServices/third_party/miniz.c
15index 6b0ebd7a..fa2aebca 100644
16--- a/external/CppMicroServices/third_party/miniz.c
17+++ b/external/CppMicroServices/third_party/miniz.c
18@@ -170,7 +170,7 @@
19 // If MINIZ_NO_TIME is specified then the ZIP archive functions will not be able to get the current time, or
20 // get/set file times, and the C run-time funcs that get/set times won't be called.
21 // The current downside is the times written to your archives will be from 1979.
22-//#define MINIZ_NO_TIME
23+#define MINIZ_NO_TIME
24
25 // Define MINIZ_NO_ARCHIVE_APIS to disable all ZIP archive API's.
26 //#define MINIZ_NO_ARCHIVE_APIS