diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-03-27 10:08:12 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-03-27 17:43:37 +0100 |
commit | 23fbbb4caae3465351d08b59e8f8c7fb8611069c (patch) | |
tree | 12a1ef769672d5601d72cbc9fb25ed32885665d0 /package/eudev/0003-configure.ac-don-t-die-on-missing-linux-btrfs.h-fixe.patch | |
parent | be18d6d69975dce22bf245d04e4767d4242ae886 (diff) | |
download | buildroot-23fbbb4caae3465351d08b59e8f8c7fb8611069c.tar.gz buildroot-23fbbb4caae3465351d08b59e8f8c7fb8611069c.zip |
eudev: bump to version 3.0
Drop upstream patches, disable autoreconf (no longer needed) and use
upstream hash.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/eudev/0003-configure.ac-don-t-die-on-missing-linux-btrfs.h-fixe.patch')
-rw-r--r-- | package/eudev/0003-configure.ac-don-t-die-on-missing-linux-btrfs.h-fixe.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/eudev/0003-configure.ac-don-t-die-on-missing-linux-btrfs.h-fixe.patch b/package/eudev/0003-configure.ac-don-t-die-on-missing-linux-btrfs.h-fixe.patch deleted file mode 100644 index 305ec4353a..0000000000 --- a/package/eudev/0003-configure.ac-don-t-die-on-missing-linux-btrfs.h-fixe.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 6740579367ddd2ce0b315863cdb92d34d1d693c7 Mon Sep 17 00:00:00 2001 -From: "Anthony G. Basile" <blueness@gentoo.org> -Date: Sun, 16 Nov 2014 13:40:43 -0500 -Subject: [PATCH] configure.ac: don't die on missing linux/btrfs.h, fixes issue - #100 - -Signed-off-by: Anthony G. Basile <blueness@gentoo.org> - -Taken from upstream commit 6740579367d. - -Signed-off-by: Alexey Mednyy <swexru@gmail.com> ---- - configure.ac | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index a3747f9..dbca833 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -49,11 +49,17 @@ AC_CHECK_HEADERS( - ) - - AC_CHECK_HEADERS( -- [linux/btrfs.h mtd/mtd-user.h], -+ [mtd/mtd-user.h], - [], - [AC_MSG_ERROR([*** KERNEL header not found])] - ) - -+AC_CHECK_HEADERS( -+ [linux/btrfs.h], -+ [], -+ [AC_MSG_WARN([*** KERNEL header not found])] -+) -+ - # Checks for typedefs, structures, and compiler characteristics. - AC_TYPE_UID_T - AC_C_INLINE --- -1.9.1 - |