From 9688df7ce9f5bedb86069295706c477e0416e233 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 27 Jun 2017 19:08:15 -0700 Subject: ncftp: Upgrade to 3.2.6 Fix build with hardening flags Signed-off-by: Khem Raj Signed-off-by: Martin Jansa Signed-off-by: Joe MacDonald --- .../recipes-daemons/ncftp/ncftp/unistd.patch | 32 ++++++++++++++++++++ .../recipes-daemons/ncftp/ncftp_3.2.5.bb | 27 ----------------- .../recipes-daemons/ncftp/ncftp_3.2.6.bb | 35 ++++++++++++++++++++++ 3 files changed, 67 insertions(+), 27 deletions(-) create mode 100644 meta-networking/recipes-daemons/ncftp/ncftp/unistd.patch delete mode 100644 meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb create mode 100644 meta-networking/recipes-daemons/ncftp/ncftp_3.2.6.bb (limited to 'meta-networking/recipes-daemons') diff --git a/meta-networking/recipes-daemons/ncftp/ncftp/unistd.patch b/meta-networking/recipes-daemons/ncftp/ncftp/unistd.patch new file mode 100644 index 0000000000..1c8146edaf --- /dev/null +++ b/meta-networking/recipes-daemons/ncftp/ncftp/unistd.patch @@ -0,0 +1,32 @@ +This patch is needed to avoid double definitions of functions +especially when building with security flags turned on. The double +definitions causes the sed.sh script in configure to fail since it +starts to spit out double outputs e.g. + +wi_cv_gethostname_size_t size_t size_t + +which then caused almost all subsequent compile time tests to fail since +this gets into confdefs.h file + +removing this include causes only one definitions to be emitted into +the genrated protos.h file and thus avoiding the above failure. + +Other solution would to fix sed.sh to ignore double definitions + +Upstream-Status: Pending + +Signed-of-by: Khem Raj + + +Index: ncftp-3.2.6/configure +=================================================================== +--- ncftp-3.2.6.orig/configure ++++ ncftp-3.2.6/configure +@@ -7859,7 +7859,6 @@ chmod 755 "$wi_tmpdir/prpp.pl" + cat << 'EOF' > "$wi_tmpdir/unistd.c" + #include + +-#include + #include + #include + #include diff --git a/meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb b/meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb deleted file mode 100644 index 893eacb995..0000000000 --- a/meta-networking/recipes-daemons/ncftp/ncftp_3.2.5.bb +++ /dev/null @@ -1,27 +0,0 @@ -DESCRIPTION = "A sophisticated console ftp client" -HOMEPAGE = "http://ncftp.com/" -SECTION = "net" -LICENSE = "ClArtistic" -LIC_FILES_CHKSUM = "file://ncftp/cmds.c;beginline=3;endline=4;md5=9de76faeaedc4f908082e3f8142715f4" -DEPENDS = "ncurses" - -SRC_URI = "${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}.orig.tar.gz \ - file://ncftp-configure-use-BUILD_CC-for-ccdv.patch \ -" -SRC_URI[md5sum] = "685e45f60ac11c89442c572c28af4228" -SRC_URI[sha256sum] = "ac111b71112382853b2835c42ebe7bd59acb7f85dd00d44b2c19fbd074a436c4" - -inherit autotools-brokensep pkgconfig - -PACKAGECONFIG ??= "" -PACKAGECONFIG[ccdv] = "--enable-ccdv,--disable-ccdv,," - -do_configure() { - oe_runconf -} -do_install () { - install -d ${D}${bindir} ${D}${sysconfdir} ${D}${mandir} - oe_runmake 'prefix=${D}${prefix}' 'BINDIR=${D}${bindir}' \ - 'SYSCONFDIR=${D}${sysconfdir}' 'mandir=${D}${mandir}' \ - install -} diff --git a/meta-networking/recipes-daemons/ncftp/ncftp_3.2.6.bb b/meta-networking/recipes-daemons/ncftp/ncftp_3.2.6.bb new file mode 100644 index 0000000000..5f92f27fdf --- /dev/null +++ b/meta-networking/recipes-daemons/ncftp/ncftp_3.2.6.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "A sophisticated console ftp client" +HOMEPAGE = "http://ncftp.com/" +SECTION = "net" +LICENSE = "ClArtistic" +LIC_FILES_CHKSUM = "file://ncftp/cmds.c;beginline=3;endline=4;md5=9c2390809f71465aa7ff76e03dc14d91" +DEPENDS = "ncurses" + +SRC_URI = "ftp://ftp.ncftp.com/${BPN}/${BP}-src.tar.xz \ + file://ncftp-configure-use-BUILD_CC-for-ccdv.patch \ + file://unistd.patch \ +" +SRC_URI[md5sum] = "42d0f896d69a4d603ec097546444245f" +SRC_URI[sha256sum] = "5f200687c05d0807690d9fb770327b226f02dd86155b49e750853fce4e31098d" + +inherit autotools-brokensep pkgconfig + +CFLAGS += "-DNO_SSLv2 -D_FILE_OFFSET_BITS=64 -Wall" + +PACKAGECONFIG ??= "" +PACKAGECONFIG[ccdv] = "--enable-ccdv,--disable-ccdv,," + +EXTRA_OECONF = "--disable-precomp" +TARGET_CC_ARCH_append = " ${SELECTED_OPTIMIZATION}" + +do_configure() { + install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S} + install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S} + oe_runconf +} +do_install () { + install -d ${D}${bindir} ${D}${sysconfdir} ${D}${mandir} + oe_runmake 'prefix=${D}${prefix}' 'BINDIR=${D}${bindir}' \ + 'SYSCONFDIR=${D}${sysconfdir}' 'mandir=${D}${mandir}' \ + install +} -- cgit 1.2.3-korg