forked from pool/acpica
- Update to acpica version 20150410 - Do not generate acpitools tarball from external kernel repo, but use kernel-source package inside the build service. *Added acpica_remove_date_macro.patch -> This patch got mainline in kernel version 4.0 and can be removed again at some point of time. OBS-URL: https://build.opensuse.org/request/show/303613 OBS-URL: https://build.opensuse.org/package/show/hardware/acpica?expand=0&rev=81
58 lines
1.9 KiB
Diff
58 lines
1.9 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-20121018/source/compiler/aslcompile.c
|
|
===================================================================
|
|
--- acpica-unix2-20121018.orig/source/compiler/aslcompile.c
|
|
+++ acpica-unix2-20121018/source/compiler/aslcompile.c
|
|
@@ -160,8 +160,6 @@ void
|
|
AslCompilerFileHeader (
|
|
UINT32 FileId)
|
|
{
|
|
- struct tm *NewTime;
|
|
- time_t Aclock;
|
|
char *Prefix = "";
|
|
|
|
|
|
@@ -201,12 +199,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-20121018/source/compiler/aslutils.c
|
|
===================================================================
|
|
--- acpica-unix2-20121018.orig/source/compiler/aslutils.c
|
|
+++ acpica-unix2-20121018/source/compiler/aslutils.c
|
|
@@ -454,8 +454,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 */
|