2018-04-19 09:12:24 +00:00
|
|
|
Index: acpica-unix-20180313/source/compiler/aslcompile.c
|
2011-11-24 17:35:15 +00:00
|
|
|
===================================================================
|
2018-04-19 09:12:24 +00:00
|
|
|
--- acpica-unix-20180313.orig/source/compiler/aslcompile.c
|
|
|
|
+++ acpica-unix-20180313/source/compiler/aslcompile.c
|
|
|
|
@@ -599,8 +599,6 @@ void
|
2011-11-24 17:35:15 +00:00
|
|
|
AslCompilerFileHeader (
|
|
|
|
UINT32 FileId)
|
|
|
|
{
|
|
|
|
- struct tm *NewTime;
|
|
|
|
- time_t Aclock;
|
|
|
|
char *Prefix = "";
|
2011-04-29 15:38:41 +00:00
|
|
|
|
2011-11-24 17:35:15 +00:00
|
|
|
|
2018-04-19 09:12:24 +00:00
|
|
|
@@ -643,12 +641,9 @@ AslCompilerFileHeader (
|
2011-11-24 17:35:15 +00:00
|
|
|
|
|
|
|
/* Compilation header with timestamp */
|
|
|
|
|
|
|
|
- (void) time (&Aclock);
|
|
|
|
- NewTime = localtime (&Aclock);
|
|
|
|
-
|
2011-04-29 15:38:41 +00:00
|
|
|
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)
|
2018-04-19 09:12:24 +00:00
|
|
|
Index: acpica-unix-20180313/source/compiler/aslutils.c
|
2011-11-24 17:35:15 +00:00
|
|
|
===================================================================
|
2018-04-19 09:12:24 +00:00
|
|
|
--- acpica-unix-20180313.orig/source/compiler/aslutils.c
|
|
|
|
+++ acpica-unix-20180313/source/compiler/aslutils.c
|
|
|
|
@@ -450,8 +450,8 @@ UtDisplaySummary (
|
2011-04-29 15:38:41 +00:00
|
|
|
{
|
|
|
|
/* Compiler name and version number */
|
|
|
|
|
2017-01-25 15:59:34 +00:00
|
|
|
- FlPrintFile (FileId, "%s version %X [%s]\n\n",
|
|
|
|
- ASL_COMPILER_NAME, (UINT32) ACPI_CA_VERSION, __DATE__);
|
|
|
|
+ FlPrintFile (FileId, "%s version %X\n\n",
|
2018-04-19 09:12:24 +00:00
|
|
|
+ ASL_COMPILER_NAME, (UINT32) ACPI_CA_VERSION);
|
2011-04-29 15:38:41 +00:00
|
|
|
}
|
|
|
|
|
2011-11-24 17:35:15 +00:00
|
|
|
/* Summary of main input and output files */
|