summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2016-02-07 12:52:24 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-07 14:25:08 +0100
commit391448a79a700ee6952558dc751e7e7437f7af3e (patch)
treeee06e336918aa247c4a007f56a0076dbccfe13ac
parenta7b9b632fd1f9306dcb7d426ada8cf86001da424 (diff)
downloadbuildroot-391448a79a700ee6952558dc751e7e7437f7af3e.tar.gz
buildroot-391448a79a700ee6952558dc751e7e7437f7af3e.zip
package/libsigrok: update musl patch
Upstream chose a different fix: http://article.gmane.org/gmane.comp.debugging.sigrok.devel/1951 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch46
1 files changed, 22 insertions, 24 deletions
diff --git a/package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch b/package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch
index e9ecf85b2b..2b20680511 100644
--- a/package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch
+++ b/package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch
@@ -1,38 +1,36 @@
-From 1b9ca481b2447154d12a7a94fe90c5b968ddf41c Mon Sep 17 00:00:00 2001
-From: Bernd Kuhls <bernd.kuhls@t-online.de>
-Date: Sat, 30 Jan 2016 20:01:05 +0100
-Subject: [PATCH 1/1] beaglelogic.h: fix build with musl libc
+From 83bf4762e42a4d4a5c077f48d8f5715c9147d9b8 Mon Sep 17 00:00:00 2001
+From: Aurelien Jacobs <aurel@gnuage.org>
+Date: Mon, 1 Feb 2016 22:37:36 +0100
+Subject: [PATCH] beaglelogic: use standard # operator instead of ugly __STRING
+ macro
-This patch fixes a build error seen on the buildroot project:
-http://autobuild.buildroot.net/results/afc/afcea2068d5b0ba707aa90339401550602103ca7/
-
-Patch taken from
-https://github.com/dx9/ceph/commit/4f7bcabca7737c3f48f07ca2b4b1296c29e3358b
-which solved a similar problem.
+Also note that the __ namespace is reserved by POSIX for its private
+usage, so user land software should never rely on any kind of API
+with a __ prefix.
+Signed-off-by: Aurelien Jacobs <aurel@gnuage.org>
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
-Patch sent upstream:
-http://article.gmane.org/gmane.comp.debugging.sigrok.devel/1948
+Patch downloaded from upstream git:
+http://sigrok.org/gitweb/?p=libsigrok.git;a=commit;h=83bf4762e42a4d4a5c077f48d8f5715c9147d9b8
- src/hardware/beaglelogic/beaglelogic.h | 4 ++++
- 1 file changed, 4 insertions(+)
+ src/hardware/beaglelogic/beaglelogic.h | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/hardware/beaglelogic/beaglelogic.h b/src/hardware/beaglelogic/beaglelogic.h
-index 9015c61..165b386 100644
+index 9015c61..96713ba 100644
--- a/src/hardware/beaglelogic/beaglelogic.h
+++ b/src/hardware/beaglelogic/beaglelogic.h
-@@ -28,6 +28,10 @@
- #include <stdlib.h>
- #include <unistd.h>
+@@ -30,8 +30,7 @@
-+#ifndef __STRING
-+# define __STRING(x) #x
-+#endif
-+
/* BeagleLogic device node name */
#define BEAGLELOGIC_DEV_NODE "/dev/beaglelogic"
- #define BEAGLELOGIC_SYSFS_ATTR(a) "/sys/devices/virtual/misc/beaglelogic/"\
+-#define BEAGLELOGIC_SYSFS_ATTR(a) "/sys/devices/virtual/misc/beaglelogic/"\
+- __STRING(a)
++#define BEAGLELOGIC_SYSFS_ATTR(a) "/sys/devices/virtual/misc/beaglelogic/" #a
+
+ /* Reproduced verbatim from beaglelogic.h in the kernel tree until the kernel
+ * module hits the mainline. Contains the ABI, so DO NOT TOUCH this section */
--
-2.7.0.rc3
+2.6.2
OpenPOWER on IntegriCloud