diff options
author | Bartosz Golaszewski <brgl@bgdev.pl> | 2017-06-26 15:21:42 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-02 00:41:34 +0200 |
commit | 51cc7936c66b9339fa4136c07e1082c440a79612 (patch) | |
tree | 34512b3d68ed7be4bb4178bef5a74ece36960a6d /package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch | |
parent | 7cfd40f2d90b7bbea1d6309145542f16ead58986 (diff) | |
download | buildroot-51cc7936c66b9339fa4136c07e1082c440a79612.tar.gz buildroot-51cc7936c66b9339fa4136c07e1082c440a79612.zip |
libsigrok: bump version to 0.5.0
The patch is now upstream and can be removed.
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch')
-rw-r--r-- | package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch | 36 |
1 files changed, 0 insertions, 36 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 deleted file mode 100644 index 2b20680511..0000000000 --- a/package/libsigrok/0001-beaglelogic.h-fix-build-with-musl-libc.patch +++ /dev/null @@ -1,36 +0,0 @@ -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 - -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 downloaded from upstream git: -http://sigrok.org/gitweb/?p=libsigrok.git;a=commit;h=83bf4762e42a4d4a5c077f48d8f5715c9147d9b8 - - 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..96713ba 100644 ---- a/src/hardware/beaglelogic/beaglelogic.h -+++ b/src/hardware/beaglelogic/beaglelogic.h -@@ -30,8 +30,7 @@ - - /* BeagleLogic device node name */ - #define BEAGLELOGIC_DEV_NODE "/dev/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.6.2 - |