[Buildroot] [git commit branch/2019.11.x] package/zip: fix musl compile

Peter Korsgaard peter at korsgaard.com
Wed Dec 25 21:32:15 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=626cb6196195c5f859d35381b11f6d573c1d8f86
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2019.11.x

For musl toolchain timezone.c needs time.h include.

Fixes:
  http://autobuild.buildroot.net/results/77346a2cdb9eeef661527fb9566019f3cd1b82c9

  In file included from util.c:28:
  timezone.c: In function 'mktime':
  timezone.c:644:18: error: dereferencing pointer to incomplete type 'struct tm'
       save_isdst = tm->tm_isdst;

  timezone.c:661:11: warning: implicit declaration of function 'localtime'; did you mean 'dostime'? [-Wimplicit-function-declaration]
       ltm = localtime(&then);

  timezone.c:661:9: warning: assignment to 'struct tm *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
       ltm = localtime(&then);

Signed-off-by: Peter Seiderer <ps.report at gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
(cherry picked from commit 376d2e8564822cc9bea8644859532949b2f87b05)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 ...imezone.c-needs-time.h-fixes-musl-compile.patch | 38 ++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/package/zip/0007-timezone.c-needs-time.h-fixes-musl-compile.patch b/package/zip/0007-timezone.c-needs-time.h-fixes-musl-compile.patch
new file mode 100644
index 0000000000..bdaa638f61
--- /dev/null
+++ b/package/zip/0007-timezone.c-needs-time.h-fixes-musl-compile.patch
@@ -0,0 +1,38 @@
+From 68abba9fb2ed114ac35712756b1f7700a865c498 Mon Sep 17 00:00:00 2001
+From: Peter Seiderer <ps.report at gmx.net>
+Date: Tue, 17 Dec 2019 21:25:01 +0100
+Subject: [PATCH] timezone.c: needs time.h (fixes musl compile)
+
+Fixes:
+
+  In file included from util.c:28:
+  timezone.c: In function 'mktime':
+  timezone.c:644:18: error: dereferencing pointer to incomplete type 'struct tm'
+       save_isdst = tm->tm_isdst;
+
+  timezone.c:661:11: warning: implicit declaration of function 'localtime'; did you mean 'dostime'? [-Wimplicit-function-declaration]
+       ltm = localtime(&then);
+
+  timezone.c:661:9: warning: assignment to 'struct tm *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
+       ltm = localtime(&then);
+
+Signed-off-by: Peter Seiderer <ps.report at gmx.net>
+---
+ timezone.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/timezone.c b/timezone.c
+index 485ec02..18aecbd 100644
+--- a/timezone.c
++++ b/timezone.c
+@@ -41,6 +41,7 @@
+ #include "timezone.h"
+ #include <ctype.h>
+ #include <errno.h>
++#include <time.h>
+ 
+ #ifdef IZTZ_DEFINESTDGLOBALS
+ long timezone = 0;
+-- 
+2.24.0
+


More information about the buildroot mailing list