diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-04-10 22:06:45 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-10 22:18:56 +0200 |
commit | db0fc30960d65ddc9a8510e2c8a4f427a2636fa5 (patch) | |
tree | af8c87be5a1fd496a5c3f031731145c093de147a | |
parent | 39aeec080164b4b93f635b75482c29bbf083db48 (diff) | |
download | buildroot-db0fc30960d65ddc9a8510e2c8a4f427a2636fa5.tar.gz buildroot-db0fc30960d65ddc9a8510e2c8a4f427a2636fa5.zip |
package/libpciaccess: Fix compilation error with musl-based toolchain
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libpciaccess/0001-limits_h.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/libpciaccess/0001-limits_h.patch b/package/libpciaccess/0001-limits_h.patch new file mode 100644 index 0000000000..9afa203cc4 --- /dev/null +++ b/package/libpciaccess/0001-limits_h.patch @@ -0,0 +1,22 @@ +Fix compilation error with musl-based toolchain + +linux_sysfs.c:751:15: error: 'PATH_MAX' undeclared (first use in this function) + char name[PATH_MAX]; + +Patch already sent upstream by Felix Janda +http://lists.x.org/archives/xorg-devel/2014-December/044723.html + +Signed-off-by: Felix Janda <felix.janda at posteo.de> +Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> + +diff -uNr libpciaccess-0.13.3.org/src/linux_sysfs.c libpciaccess-0.13.3/src/linux_sysfs.c +--- libpciaccess-0.13.3.org/src/linux_sysfs.c 2015-02-04 00:59:14.000000000 +0100 ++++ libpciaccess-0.13.3/src/linux_sysfs.c 2015-04-10 21:57:35.000000000 +0200 +@@ -44,6 +44,7 @@ + #include <sys/mman.h> + #include <dirent.h> + #include <errno.h> ++#include <limits.h> + + #if defined(__i386__) || defined(__x86_64__) || defined(__arm__) + #include <sys/io.h> |