* [Buildroot] [PATCH] dt: add patch to fix failures on newer toolchains
@ 2016-03-21 11:56 gustavo.zacarias at free-electrons.com
2016-03-21 13:36 ` Vicente Olivert Riera
2016-03-22 8:57 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: gustavo.zacarias at free-electrons.com @ 2016-03-21 11:56 UTC (permalink / raw)
To: buildroot
From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
On newer toolchains (glibc >= 2.20) _BSD_SOURCE behaviour was deprecated
in favour if the _DEFAULT_SOURCE macro. See man 7 feature_test_macros.
Add patch from Fedora to also consider _DEFAULT_SOURCE. Fixes:
http://autobuild.buildroot.net/results/9e2/9e2126b0e68d0d59d37616a268adb810efd8281a/
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
---
package/dt/0002-dt-default-source-define.patch | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 package/dt/0002-dt-default-source-define.patch
diff --git a/package/dt/0002-dt-default-source-define.patch b/package/dt/0002-dt-default-source-define.patch
new file mode 100644
index 0000000..d59faaf
--- /dev/null
+++ b/package/dt/0002-dt-default-source-define.patch
@@ -0,0 +1,20 @@
+Patch taken from Fedora:
+http://pkgs.fedoraproject.org/cgit/rpms/dt.git/commit/dt-default-source-define.patch?id=a3107b34a3efc6af66a5f892514f233bb66eb6b5
+
+_BSD_SOURCE was deprecated, hence switch to use _DEFAULT_SOURCE as well
+to avoid the build from breaking on newer toolchains.
+
+Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
+
+diff -rupN dt.v18.32.old/common.h dt.v18.32/common.h
+--- dt.v18.32.old/common.h 2013-03-01 23:52:30.000000000 +0100
++++ dt.v18.32/common.h 2014-09-24 17:41:40.777604710 +0200
+@@ -127,7 +127,7 @@ typedef volatile slarge_t v_slarge;
+
+ #endif /* defined(_WIN64) */
+
+-#elif defined(__GNUC__) && defined(_BSD_SOURCE) || defined(SCO) || defined(__QNXNTO__) || defined(SOLARIS) || defined(HP_UX) || defined(AIX) || defined(_NT_SOURCE)
++#elif defined(__GNUC__) && defined(_BSD_SOURCE) || defined (_DEFAULT_SOURCE) || defined(SCO) || defined(__QNXNTO__) || defined(SOLARIS) || defined(HP_UX) || defined(AIX) || defined(_NT_SOURCE)
+
+ #define QuadIsLongLong
+ typedef unsigned long long int large_t;
--
2.7.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] dt: add patch to fix failures on newer toolchains
2016-03-21 11:56 [Buildroot] [PATCH] dt: add patch to fix failures on newer toolchains gustavo.zacarias at free-electrons.com
@ 2016-03-21 13:36 ` Vicente Olivert Riera
2016-03-22 8:57 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Vicente Olivert Riera @ 2016-03-21 13:36 UTC (permalink / raw)
To: buildroot
Dear Gustavo Zacarias,
On 21/03/16 11:56, gustavo.zacarias at free-electrons.com wrote:
> From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>
> On newer toolchains (glibc >= 2.20) _BSD_SOURCE behaviour was deprecated
> in favour if the _DEFAULT_SOURCE macro. See man 7 feature_test_macros.
> Add patch from Fedora to also consider _DEFAULT_SOURCE. Fixes:
> http://autobuild.buildroot.net/results/9e2/9e2126b0e68d0d59d37616a268adb810efd8281a/
>
> Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
I was in contact with upstream to fix this problem. I have shared the
Fedora patch and your explanation with them. Let's hope we can delete
this patch from Buildroot in the near future :P
Regards,
Vincent.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] dt: add patch to fix failures on newer toolchains
2016-03-21 11:56 [Buildroot] [PATCH] dt: add patch to fix failures on newer toolchains gustavo.zacarias at free-electrons.com
2016-03-21 13:36 ` Vicente Olivert Riera
@ 2016-03-22 8:57 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2016-03-22 8:57 UTC (permalink / raw)
To: buildroot
Hello,
On Mon, 21 Mar 2016 08:56:04 -0300, gustavo.zacarias at free-electrons.com
wrote:
> From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>
> On newer toolchains (glibc >= 2.20) _BSD_SOURCE behaviour was deprecated
> in favour if the _DEFAULT_SOURCE macro. See man 7 feature_test_macros.
> Add patch from Fedora to also consider _DEFAULT_SOURCE. Fixes:
> http://autobuild.buildroot.net/results/9e2/9e2126b0e68d0d59d37616a268adb810efd8281a/
>
> Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
> ---
> package/dt/0002-dt-default-source-define.patch | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
> create mode 100644 package/dt/0002-dt-default-source-define.patch
Applied to master, 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
end of thread, other threads:[~2016-03-22 8:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-21 11:56 [Buildroot] [PATCH] dt: add patch to fix failures on newer toolchains gustavo.zacarias at free-electrons.com
2016-03-21 13:36 ` Vicente Olivert Riera
2016-03-22 8:57 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox