From patchwork Wed Jan 21 22:13:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Danzberger X-Patchwork-Id: 431620 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id AC3CE140276 for ; Thu, 22 Jan 2015 09:13:45 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id C3A2F28B49C; Wed, 21 Jan 2015 23:11:20 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 199EE289C5F for ; Wed, 21 Jan 2015 23:11:16 +0100 (CET) X-policyd-weight: using cached result; rate: -8.5 Received: from webmail.newmedia-net.de (nm.newmedia-net.de [217.113.179.122]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 21 Jan 2015 23:11:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=dd-wrt.com; s=mikd; h=Subject:Content-Type:To:MIME-Version:From:Date:Message-ID; bh=9bsNgjC2xIr/who+krXXw54lTdIAIJiYeKnCNaWtuSE=; b=FCxZYRLraSJ8ku4WFgqEt2ZgApSjfbS2ogLFJJGSmm4bR6qige8uPFCOx0gdG1Fy491JUhx1tMTzRtvdpvupvu21ZAsBVfa26i0Otch6zXVFug1NQ7uR9Hpvo2xt2a1CdCRP80xEje4gn86U8AKS4BWbXtmEXHQ9Exby2X0dC2w=; Message-ID: <54C0248C.4080303@dd-wrt.com> Date: Wed, 21 Jan 2015 23:13:32 +0100 From: daniel User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.3.0 MIME-Version: 1.0 To: openwrt-devel@lists.openwrt.org X-SA-Exim-Connect-IP: 77.0.3.169 X-SA-Exim-Mail-From: daniel@dd-wrt.com X-SA-Exim-Version: 4.2.1 (built Thu, 26 May 2011 15:22:33 +0200) X-SA-Exim-Scanned: Yes (on webmail.newmedia-net.de) X-NMN-MailScanner-Information: Please contact the ISP for more information X-NMN-MailScanner-ID: 1YE3Wn-0001BY-NU X-NMN-MailScanner: Found to be clean X-NMN-MailScanner-From: daniel@dd-wrt.com X-Received: from [77.0.3.169] (helo=[192.168.188.236]) by webmail.newmedia-net.de with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72) (envelope-from ) id 1YE3Wn-0001BY-NU for openwrt-devel@lists.openwrt.org; Wed, 21 Jan 2015 23:13:34 +0100 Subject: [OpenWrt-Devel] [PATCH] [packages_extra] snort: add missing libuuid dependency X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" The current version of snort fails to build because the libuuid pkg dependency is missing. This little patch fixes the issue, please apply. Signed-off-by: Daniel Danzberger Index: net/snort/Makefile =================================================================== --- net/snort/Makefile (revision 861) +++ net/snort/Makefile (working copy) @@ -26,7 +26,7 @@ SUBMENU:=Firewall SECTION:=net CATEGORY:=Network - DEPENDS:=+libpcap +libpcre +libdnet +libdaq +libpthread +zlib + DEPENDS:=+libpcap +libpcre +libdnet +libdaq +libpthread +zlib +libuuid TITLE:=Lightweight Network Intrusion Detection System URL:=http://www.snort.org/ endef