Bump buildroot to version 2017-02

TG-3 #closed
This commit is contained in:
jbnadal
2017-03-28 18:29:16 +02:00
parent 93b7fd91d2
commit 42c92a6bcb
3010 changed files with 41289 additions and 46428 deletions

View File

@@ -0,0 +1,57 @@
Use <cmath> instead of <math.h> to fix gcc 6.x build
This patch fixes the following build issue:
../lib/math.h:2577:1: error: int signbit(float) conflicts with a previous declaration
that occurs with gcc 6.x.
Patch taken from
https://raw.githubusercontent.com/openembedded/meta-openembedded/master/meta-networking/recipes-connectivity/lftp/files/fix-gcc-6-conflicts-signbit.patch
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
--- lftp-4.6.3a/src/NetAccess.cc.orig 2016-06-18 10:25:51.063358981 -0400
+++ lftp-4.6.3a/src/NetAccess.cc 2016-06-18 10:26:04.143359209 -0400
@@ -21,7 +21,7 @@
#include <errno.h>
#include <assert.h>
-#include <math.h>
+#include <cmath>
#include <sys/types.h>
#include "NetAccess.h"
--- lftp-4.6.3a/src/Speedometer.cc.orig 2016-06-18 10:24:58.895358073 -0400
+++ lftp-4.6.3a/src/Speedometer.cc 2016-06-18 10:25:10.879358281 -0400
@@ -18,7 +18,7 @@
*/
#include <config.h>
-#include <math.h>
+#include <cmath>
#include <stdlib.h>
#include "Speedometer.h"
#include "misc.h"
--- lftp-4.6.3a/src/FileCopy.cc.orig 2016-06-18 10:24:15.939357325 -0400
+++ lftp-4.6.3a/src/FileCopy.cc 2016-06-18 10:24:24.583357475 -0400
@@ -36,7 +36,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
-#include <math.h>
+#include <cmath>
#include <stddef.h>
#include "FileCopy.h"
#include "url.h"
--- lftp-4.6.3a/src/ResMgr.cc.orig 2016-06-18 10:23:31.387356549 -0400
+++ lftp-4.6.3a/src/ResMgr.cc 2016-06-18 10:23:41.771356729 -0400
@@ -23,7 +23,7 @@
#include <ctype.h>
#include <unistd.h>
#include <stdlib.h>
-#include <math.h>
+#include <cmath>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>

View File

@@ -1,2 +1,2 @@
# Locally calculated
sha256 3b22259cdc4c1a6ae349057d16bda4b4816929e04d223242ab8927bc31a48e7c lftp-4.7.3.tar.xz
# Locally calculated after checking gpg signature
sha256 bf67c4d128b6f769a4082947376a9679c5ee3463a24ab761a0757f75d70bd92c lftp-4.7.4.tar.xz

View File

@@ -4,7 +4,7 @@
#
################################################################################
LFTP_VERSION = 4.7.3
LFTP_VERSION = 4.7.4
LFTP_SOURCE = lftp-$(LFTP_VERSION).tar.xz
LFTP_SITE = http://lftp.yar.ru/ftp
LFTP_LICENSE = GPLv3+