package/arp-scan: bump version to 1.9.6
Removed patch which was applied upstream:
cbeda6a9c5
We still need autoreconf however due to using source code retrieved by
the github helper.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
4626e8e54b
commit
164cf740fe
@ -1,39 +0,0 @@
|
||||
From f406041b58eadc716d6227408d3af553d566ffeb Mon Sep 17 00:00:00 2001
|
||||
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
|
||||
Date: Tue, 4 Apr 2017 17:31:29 +0200
|
||||
Subject: [PATCH] configure: try linking to detect stack-protector support
|
||||
|
||||
Even if gcc accepts the -fstack-protector argument, it is possible that
|
||||
the libssp support library is missing. Detect this by linking instead
|
||||
of just compiling.
|
||||
|
||||
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
|
||||
---
|
||||
acinclude.m4 | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/acinclude.m4 b/acinclude.m4
|
||||
index 3c84118..4725154 100644
|
||||
--- a/acinclude.m4
|
||||
+++ b/acinclude.m4
|
||||
@@ -243,7 +243,7 @@ AC_DEFUN([GCC_STACK_PROTECT_CC],[
|
||||
AC_MSG_CHECKING([whether ${CC} accepts -fstack-protector])
|
||||
ssp_old_cflags="$CFLAGS"
|
||||
CFLAGS="$CFLAGS -fstack-protector"
|
||||
- AC_TRY_COMPILE(,,, ssp_cc=no)
|
||||
+ AC_TRY_LINK(,,, ssp_cc=no)
|
||||
echo $ssp_cc
|
||||
if test "X$ssp_cc" = "Xno"; then
|
||||
CFLAGS="$ssp_old_cflags"
|
||||
@@ -259,7 +259,7 @@ AC_DEFUN([GCC_STACK_PROTECT_CXX],[
|
||||
AC_MSG_CHECKING([whether ${CXX} accepts -fstack-protector])
|
||||
ssp_old_cxxflags="$CXXFLAGS"
|
||||
CXXFLAGS="$CXXFLAGS -fstack-protector"
|
||||
- AC_TRY_COMPILE(,,, ssp_cxx=no)
|
||||
+ AC_TRY_LINK(,,, ssp_cxx=no)
|
||||
echo $ssp_cxx
|
||||
if test "X$ssp_cxx" = "Xno"; then
|
||||
CXXFLAGS="$ssp_old_cxxflags"
|
||||
--
|
||||
2.11.0
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 aa9498af84158a315b7e0ea6c2cddfa746660ca3987cbe7e32c0c90f5382d9d2 arp-scan-1.9.5.tar.gz
|
||||
sha256 971b45c3369816467994797fbcd0076eb8f0ffb9c42764ea6dba25ab3fd490da arp-scan-1.9.6.tar.gz
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
||||
|
@ -4,13 +4,11 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
ARP_SCAN_VERSION = 1.9.5
|
||||
ARP_SCAN_VERSION = 1.9.6
|
||||
ARP_SCAN_SITE = $(call github,royhills,arp-scan,$(ARP_SCAN_VERSION))
|
||||
ARP_SCAN_LICENSE = GPL-3.0+
|
||||
ARP_SCAN_LICENSE_FILES = COPYING
|
||||
ARP_SCAN_DEPENDENCIES = libpcap
|
||||
|
||||
# 0001-configure-try-linking-to-detect-stack-protector-supp.patch touches acinclude.m4
|
||||
ARP_SCAN_AUTORECONF = YES
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
|
Loading…
Reference in New Issue
Block a user