diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-01-30 22:37:37 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-31 23:49:00 +0100 |
commit | 4334f7da108ce994618abf07f008cd8c894431d8 (patch) | |
tree | 2ff2f9d3051a7f6e2b801e5d278e7a611ed4638b /package/lightning/0001-cross-compilation-configure-fixes.patch | |
parent | 392362ed487713e621229d931990f311cecc2c29 (diff) | |
download | buildroot-4334f7da108ce994618abf07f008cd8c894431d8.tar.gz buildroot-4334f7da108ce994618abf07f008cd8c894431d8.zip |
package/lightning: bump version to 2.1.0
Removed autoreconf and both patches after upstream commits:
http://git.savannah.gnu.org/cgit/lightning.git/commit/configure.ac?id=e98640e1ac160034fe65346f68c5ade90d6b2032
http://git.savannah.gnu.org/cgit/lightning.git/commit/?id=361caf28545aa0c2b2ab8d1cbd334fbdd952f373
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/lightning/0001-cross-compilation-configure-fixes.patch')
-rw-r--r-- | package/lightning/0001-cross-compilation-configure-fixes.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/package/lightning/0001-cross-compilation-configure-fixes.patch b/package/lightning/0001-cross-compilation-configure-fixes.patch deleted file mode 100644 index 6ced202910..0000000000 --- a/package/lightning/0001-cross-compilation-configure-fixes.patch +++ /dev/null @@ -1,40 +0,0 @@ -Assume that the functionality is not present - -Patch written by Holger Hans Peter Freyther, and fetched from -http://lists.gnu.org/archive/html/lightning/2014-11/msg00002.html. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - configure.ac | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 031279d..a36bed6 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -184,7 +184,7 @@ elif test $cpu = x86; then - : "0" (1)); - return (edx & 1 << 26) ? 0 : 1; - } -- ]])],[ac_cv_test_x86_x87=yes],[][]) -+ ]])],[ac_cv_test_x86_x87=yes],[],[ac_cv_test_x86_x87=no]) - elif test $cpu = arm; then - AC_RUN_IFELSE([AC_LANG_SOURCE([[ - #include <stdio.h> -@@ -207,7 +207,7 @@ elif test $cpu = arm; then - #endif - return 1; - } -- ]])],[ac_cv_test_arm_arm=yes],[][]) -+ ]])],[ac_cv_test_arm_arm=yes],[],[ac_cv_test_arm_arm=no]) - AC_RUN_IFELSE([AC_LANG_SOURCE([[ - #include <stdio.h> - int main(void) { -@@ -229,7 +229,7 @@ elif test $cpu = arm; then - #endif - return 1; - } -- ]])],[ac_cv_test_arm_swf=yes],[][]) -+ ]])],[ac_cv_test_arm_swf=yes],[],[ac_cv_test_arm_swf=no]) - fi - CFLAGS=$save_CFLAGS |