All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] mfgtools: fix build issue
@ 2020-02-11 15:04 Gary Bisson
  2020-02-16 10:19 ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Gary Bisson @ 2020-02-11 15:04 UTC (permalink / raw)
  To: buildroot

The tool fails to build on recent distros due to conflicting declaration
of __time64_t. Adding a check around the declaration to avoid
redefinition.

Patch not submitted upstream as the tool is not supported by NXP
anymore[1].

Fixes:
http://autobuild.buildroot.net/results/ca4498ad21a96ba2a38ca2467dadffdbb516355b/

[1] https://github.com/NXPmicro/mfgtools/pull/104

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
---
Hi,

As explained in my reply to Jorg's patch that drops mfgtools [1], I'm
having second thoughts on this.
Maybe this small patch should be included instead of dropping the
package?

Let me know your thoughts.

Regards,
Gary

[1] http://patchwork.ozlabs.org/patch/1220600/
---
 ...onflicting-declaration-of-__time64_t.patch | 27 +++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 package/mfgtools/0001-lnx_def.h-fix-conflicting-declaration-of-__time64_t.patch

diff --git a/package/mfgtools/0001-lnx_def.h-fix-conflicting-declaration-of-__time64_t.patch b/package/mfgtools/0001-lnx_def.h-fix-conflicting-declaration-of-__time64_t.patch
new file mode 100644
index 0000000000..7d0d3974a2
--- /dev/null
+++ b/package/mfgtools/0001-lnx_def.h-fix-conflicting-declaration-of-__time64_t.patch
@@ -0,0 +1,27 @@
+From 1af7bc09451e0b779f7bfb0dcc58ffb3abe9c584 Mon Sep 17 00:00:00 2001
+From: Gary Bisson <bisson.gary@gmail.com>
+Date: Tue, 11 Feb 2020 15:30:12 +0100
+Subject: [PATCH] lnx_def.h: fix conflicting declaration of __time64_t
+
+Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
+---
+ MfgToolLib/lnx_def.h | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/MfgToolLib/lnx_def.h b/MfgToolLib/lnx_def.h
+index c6869dd..a38bb99 100644
+--- a/MfgToolLib/lnx_def.h
++++ b/MfgToolLib/lnx_def.h
+@@ -124,7 +124,9 @@ typedef unsigned long * ULONG_PTR;
+ typedef char * LPOLESTR;
+ typedef void * HDEVINFO;
+ typedef unsigned long long ULONGLONG;
++#ifndef __time64_t
+ typedef long long __time64_t;
++#endif
+ typedef long long __int64;
+ typedef unsigned long DWORD_PTR;
+ typedef unsigned int UINT;
+-- 
+2.25.0
+
-- 
2.25.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] mfgtools: fix build issue
  2020-02-11 15:04 [Buildroot] [PATCH] mfgtools: fix build issue Gary Bisson
@ 2020-02-16 10:19 ` Peter Korsgaard
  2020-03-13 16:08   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2020-02-16 10:19 UTC (permalink / raw)
  To: buildroot

>>>>> "Gary" == Gary Bisson <bisson.gary@gmail.com> writes:

 > The tool fails to build on recent distros due to conflicting declaration
 > of __time64_t. Adding a check around the declaration to avoid
 > redefinition.

 > Patch not submitted upstream as the tool is not supported by NXP
 > anymore[1].

 > Fixes:
 > http://autobuild.buildroot.net/results/ca4498ad21a96ba2a38ca2467dadffdbb516355b/

 > [1] https://github.com/NXPmicro/mfgtools/pull/104

 > Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
 > ---
 > Hi,

 > As explained in my reply to Jorg's patch that drops mfgtools [1], I'm
 > having second thoughts on this.
 > Maybe this small patch should be included instead of dropping the
 > package?

I didn't see any feedback (But you didn't add Joern in To). I don't
really know much about the imx SW, but as this is a trivial patch I've
applied it.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] mfgtools: fix build issue
  2020-02-16 10:19 ` Peter Korsgaard
@ 2020-03-13 16:08   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-03-13 16:08 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

>>>>> "Gary" == Gary Bisson <bisson.gary@gmail.com> writes:
 >> The tool fails to build on recent distros due to conflicting declaration
 >> of __time64_t. Adding a check around the declaration to avoid
 >> redefinition.

 >> Patch not submitted upstream as the tool is not supported by NXP
 >> anymore[1].

 >> Fixes:
 >> http://autobuild.buildroot.net/results/ca4498ad21a96ba2a38ca2467dadffdbb516355b/

 >> [1] https://github.com/NXPmicro/mfgtools/pull/104

 >> Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
 >> ---
 >> Hi,

 >> As explained in my reply to Jorg's patch that drops mfgtools [1], I'm
 >> having second thoughts on this.
 >> Maybe this small patch should be included instead of dropping the
 >> package?

 > I didn't see any feedback (But you didn't add Joern in To). I don't
 > really know much about the imx SW, but as this is a trivial patch I've
 > applied it.

Committed to 2019.02.x and 2019.11.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-13 16:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-11 15:04 [Buildroot] [PATCH] mfgtools: fix build issue Gary Bisson
2020-02-16 10:19 ` Peter Korsgaard
2020-03-13 16:08   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.