SHA256
1
0
forked from pool/acpica
Files
acpica/acpica-no-compiletime.patch
Thomas Renninger 671995c790 Accepting request 448923 from home:trenn:branches:hardware
- Update to version 20161117
- __DATE__ __TIME__ macros added again mainline, revert them to avoid
  constant build service rebuilding
*Add revert_62ca7996_build_date_and_time.patch
*Add revert_cdd3c612d4230bbb_build_date_and_time.patch

OBS-URL: https://build.opensuse.org/request/show/448923
OBS-URL: https://build.opensuse.org/package/show/hardware/acpica?expand=0&rev=97
2017-01-05 17:44:39 +00:00

58 lines
2.1 KiB
Diff

From: <idoenmez@suse.de>
acpica: Do not compile in date or time into binaries
Otherwise the data/time compiled in may cause constant re-compilation
in build service environments
Signed-off-by: Thomas Renninger <trenn@suse.de>
---
source/compiler/aslcompile.c | 9 ++-------
source/compiler/aslutils.c | 4 ++--
source/include/acapps.h | 8 ++++----
3 files changed, 8 insertions(+), 13 deletions(-)
Index: acpica-unix2-20161117/source/compiler/aslcompile.c
===================================================================
--- acpica-unix2-20161117.orig/source/compiler/aslcompile.c 2016-11-17 18:20:12.000000000 +0100
+++ acpica-unix2-20161117/source/compiler/aslcompile.c 2016-12-07 12:26:58.193287602 +0100
@@ -471,8 +471,6 @@ void
AslCompilerFileHeader (
UINT32 FileId)
{
- struct tm *NewTime;
- time_t Aclock;
char *Prefix = "";
@@ -515,12 +513,9 @@ AslCompilerFileHeader (
/* Compilation header with timestamp */
- (void) time (&Aclock);
- NewTime = localtime (&Aclock);
-
FlPrintFile (FileId,
- "%sCompilation of \"%s\" - %s%s\n",
- Prefix, Gbl_Files[ASL_FILE_INPUT].Filename, asctime (NewTime),
+ "%sCompilation of \"%s\"\n",
+ Prefix, Gbl_Files[ASL_FILE_INPUT].Filename,
Prefix);
switch (FileId)
Index: acpica-unix2-20161117/source/compiler/aslutils.c
===================================================================
--- acpica-unix2-20161117.orig/source/compiler/aslutils.c 2016-11-17 18:20:13.000000000 +0100
+++ acpica-unix2-20161117/source/compiler/aslutils.c 2016-12-07 12:26:58.197287829 +0100
@@ -381,8 +381,8 @@ UtDisplaySummary (
{
/* Compiler name and version number */
- FlPrintFile (FileId, "%s version %X%s [%s]\n\n",
- ASL_COMPILER_NAME, (UINT32) ACPI_CA_VERSION, ACPI_WIDTH, __DATE__);
+ FlPrintFile (FileId, "%s version %X%s\n\n",
+ ASL_COMPILER_NAME, (UINT32) ACPI_CA_VERSION, ACPI_WIDTH);
}
/* Summary of main input and output files */