Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] log4cpp: fix musl compile
@ 2016-07-11 21:13 Peter Seiderer
  2016-07-15 11:25 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Seiderer @ 2016-07-11 21:13 UTC (permalink / raw)
  To: buildroot

Include proper config.h (via log4cpp/Portability.hh) to fix the
evaluate of LOG4CPP_HAVE_STDINT_H in the file tests/Clock.hh

Fixes [1]:

  Clock.hh:17:13: error: 'int64_t' does not name a type
       typedef int64_t usec_t;

[1] http://autobuild.buildroot.net/results/186/1867632f30531da69f06b965bc833817400f618f

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/log4cpp/0001-Fix-musl-compile.patch | 34 +++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 package/log4cpp/0001-Fix-musl-compile.patch

diff --git a/package/log4cpp/0001-Fix-musl-compile.patch b/package/log4cpp/0001-Fix-musl-compile.patch
new file mode 100644
index 0000000..f1a13a0
--- /dev/null
+++ b/package/log4cpp/0001-Fix-musl-compile.patch
@@ -0,0 +1,34 @@
+From 17562259fb6684f351a70b98b4f3b438927ba1aa Mon Sep 17 00:00:00 2001
+From: Peter Seiderer <ps.report@gmx.net>
+Date: Mon, 11 Jul 2016 22:58:31 +0200
+Subject: [PATCH] Fix musl compile.
+
+Include proper config.h (via log4cpp/Portability.hh) to fix the
+evaluate of LOG4CPP_HAVE_STDINT_H in the file tests/Clock.hh
+
+Fixes:
+
+  Clock.hh:17:13: error: 'int64_t' does not name a type
+       typedef int64_t usec_t;
+
+Signed-off-by: Peter Seiderer <ps.report@gmx.net>
+---
+ log4cpp/tests/Clock.hh | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/log4cpp/tests/Clock.hh b/log4cpp/tests/Clock.hh
+index 4bf0ca4..45c6467 100644
+--- a/log4cpp/tests/Clock.hh
++++ b/log4cpp/tests/Clock.hh
+@@ -6,6 +6,8 @@
+ #ifndef __CLOCK_H
+ #define __CLOCK_H
+ 
++#include <log4cpp/Portability.hh>
++
+ #ifdef LOG4CPP_HAVE_STDINT_H
+ #include <stdint.h>
+ #endif // LOG4CPP_HAVE_STDINT_H
+-- 
+2.8.1
+
-- 
2.8.1

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

* [Buildroot] [PATCH v1] log4cpp: fix musl compile
  2016-07-11 21:13 [Buildroot] [PATCH v1] log4cpp: fix musl compile Peter Seiderer
@ 2016-07-15 11:25 ` Thomas Petazzoni
  2016-07-18 19:26   ` Peter Seiderer
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2016-07-15 11:25 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 11 Jul 2016 23:13:31 +0200, Peter Seiderer wrote:
> Include proper config.h (via log4cpp/Portability.hh) to fix the
> evaluate of LOG4CPP_HAVE_STDINT_H in the file tests/Clock.hh
> 
> Fixes [1]:
> 
>   Clock.hh:17:13: error: 'int64_t' does not name a type
>        typedef int64_t usec_t;
> 
> [1] http://autobuild.buildroot.net/results/186/1867632f30531da69f06b965bc833817400f618f
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/log4cpp/0001-Fix-musl-compile.patch | 34 +++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>  create mode 100644 package/log4cpp/0001-Fix-musl-compile.patch

Applied to master, thanks. Please submit the patch upstream. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v1] log4cpp: fix musl compile
  2016-07-15 11:25 ` Thomas Petazzoni
@ 2016-07-18 19:26   ` Peter Seiderer
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Seiderer @ 2016-07-18 19:26 UTC (permalink / raw)
  To: buildroot

Hello Thomas,

On Fri, 15 Jul 2016 13:25:24 +0200, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote:

> Hello,
> 
> On Mon, 11 Jul 2016 23:13:31 +0200, Peter Seiderer wrote:
> > Include proper config.h (via log4cpp/Portability.hh) to fix the
> > evaluate of LOG4CPP_HAVE_STDINT_H in the file tests/Clock.hh
> > 
> > Fixes [1]:
> > 
> >   Clock.hh:17:13: error: 'int64_t' does not name a type
> >        typedef int64_t usec_t;
> > 
> > [1] http://autobuild.buildroot.net/results/186/1867632f30531da69f06b965bc833817400f618f
> > 
> > Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> > ---
> >  package/log4cpp/0001-Fix-musl-compile.patch | 34 +++++++++++++++++++++++++++++
> >  1 file changed, 34 insertions(+)
> >  create mode 100644 package/log4cpp/0001-Fix-musl-compile.patch
> 
> Applied to master, thanks. Please submit the patch upstream. Thanks!

Done ([1])....

Regards,
Peter

[1] https://sourceforge.net/p/log4cpp/patches/44/

> 
> Thomas

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

end of thread, other threads:[~2016-07-18 19:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-11 21:13 [Buildroot] [PATCH v1] log4cpp: fix musl compile Peter Seiderer
2016-07-15 11:25 ` Thomas Petazzoni
2016-07-18 19:26   ` Peter Seiderer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox