From patchwork Fri Apr 12 09:49:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 236002 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id DB7BC2C0092 for ; Fri, 12 Apr 2013 19:49:56 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id CA67B3094F; Fri, 12 Apr 2013 09:49:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lL8nSLgTVICG; Fri, 12 Apr 2013 09:49:53 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 82356201D5; Fri, 12 Apr 2013 09:49:53 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 26C428F7AA for ; Fri, 12 Apr 2013 09:50:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B27A88E850 for ; Fri, 12 Apr 2013 09:49:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7s4UDgkYsBRN for ; Fri, 12 Apr 2013 09:49:50 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 36BD48E868 for ; Fri, 12 Apr 2013 09:49:50 +0000 (UTC) Received: from asgard (host48.186-125-224.telecom.net.ar [186.125.224.48]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.6/8.14.6) with ESMTP id r3C9ngvE027230 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 12 Apr 2013 09:49:45 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1365760187; bh=dK9KwtjKe904bMUoces3AJe/aMuRtGy6USy6ct2wUS8=; h=From:To:Cc:Subject:Date; b=pOxprSHp8CpY62Dc64IS+QaGv5X8XFAyRf6rtEmch2DWxZyh6jDCCTX2V9LZYROr1 DEaMGHdZbha/CwE7mYIQH+jV2ErEQYmVvFAmG3ktAy9TG5cL7LDl5L8cSTXuNUZKMA LEEUQt9D5+dScgjpdyjBrlCsvrCKbZZzxRrAayzg= Received: by asgard (sSMTP sendmail emulation); Fri, 12 Apr 2013 06:49:41 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 12 Apr 2013 06:49:41 -0300 Message-Id: <1365760181-22105-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] kismet: bump to version 2013-03-R1b X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Fixes issues in the configure script. Also make libnl a mandatory dependency to fix: http://autobuild.buildroot.net/results/c8bf63f4ee013bd3467934c87c61478a1f95e3eb/ Kismet isn't too useful without it anyway. Signed-off-by: Gustavo Zacarias --- package/kismet/Config.in | 6 ++++-- package/kismet/kismet.mk | 9 +++------ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/package/kismet/Config.in b/package/kismet/Config.in index 6954665..8de29be 100644 --- a/package/kismet/Config.in +++ b/package/kismet/Config.in @@ -1,12 +1,14 @@ -comment "Kismet requires a toolchain with C++ support enabled" - depends on !BR2_INSTALL_LIBSTDCPP +comment "Kismet requires a toolchain with thread and C++ support enabled" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_KISMET bool "kismet" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_HAS_THREADS # libnl select BR2_PACKAGE_NCURSES select BR2_PACKAGE_NCURSES_TARGET_PANEL select BR2_PACKAGE_LIBPCAP + select BR2_PACKAGE_LIBNL help Kismet - 802.11 layer2 wireless network detector, sniffer, and intrusion detection system. diff --git a/package/kismet/kismet.mk b/package/kismet/kismet.mk index 5abc92c..1fb3f5a 100644 --- a/package/kismet/kismet.mk +++ b/package/kismet/kismet.mk @@ -4,16 +4,13 @@ # ############################################################# -KISMET_VERSION = 2013-03-R1a +KISMET_VERSION = 2013-03-R1b KISMET_SITE = http://www.kismetwireless.net/code -KISMET_DEPENDENCIES = host-pkgconf libpcap ncurses +KISMET_DEPENDENCIES = host-pkgconf libpcap ncurses libnl +KISMET_CONF_OPT += --with-netlink-version=3 KISMET_LICENSE = GPLv2+ KISMET_LICENSE_FILES = debian/copyright -ifeq ($(BR2_PACKAGE_LIBNL),y) - KISMET_DEPENDENCIES += libnl - KISMET_CONF_OPT += --with-netlink-version=3 -endif ifeq ($(BR2_PACKAGE_PCRE),y) KISMET_DEPENDENCIES += pcre endif