From patchwork Tue Dec 9 10:47:13 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Szakmeister X-Patchwork-Id: 419001 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 181E214009B for ; Tue, 9 Dec 2014 21:49:38 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id E03B028C044; Tue, 9 Dec 2014 11:47:33 +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,FREEMAIL_FROM, 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 E847428C044 for ; Tue, 9 Dec 2014 11:47:26 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .mail-qa0-f42.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -8.5 Received: from mail-qa0-f42.google.com (mail-qa0-f42.google.com [209.85.216.42]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Tue, 9 Dec 2014 11:47:26 +0100 (CET) Received: by mail-qa0-f42.google.com with SMTP id j7so172458qaq.15 for ; Tue, 09 Dec 2014 02:49:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id; bh=SuBNWj9VZaPX/imwy7FyTFmoHJ10rwzUgFXzaUAxwsM=; b=n67PwSbaWbLGrPQpM/0s4VkLyjGn9/lH5/+kxb82ZrjUwPFFclEmsd5imNsICLJMe9 frfNeJ0DWF2U/ogG5ZAApJWvHyU/FIisTasnc69T0YCbS5qO88VqKuIy6Pc76NQ4OqI5 RQpPrQFtROhLOGhEwaYmsuezcZgCrDzvCpb0R8WFBqS0gclMEuRT0DZZpxk7uA3bTiKh JOKD/oRYP8EiMCrZCwpxkt6SoIdc/PLNY28Ll5lCOf86zdIM3f2L8G2Ov2Wjfv9F1MOM NJf24DhjFW/leVOJLrKgONekYePDktw6EzpCZsjha+56tFRdeLZusPk28phLyAITxVB5 3ePw== X-Received: by 10.140.22.201 with SMTP id 67mr3878375qgn.16.1418122148877; Tue, 09 Dec 2014 02:49:08 -0800 (PST) Received: from pangolin.intelesys.local (74-92-144-137-WashingtonDC.hfc.comcastbusiness.net. [74.92.144.137]) by mx.google.com with ESMTPSA id s19sm740640qay.6.2014.12.09.02.49.07 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 09 Dec 2014 02:49:07 -0800 (PST) From: John Szakmeister To: openwrt-devel@lists.openwrt.org Date: Tue, 9 Dec 2014 05:47:13 -0500 Message-Id: <1418122033-5615-1-git-send-email-john@szakmeister.net> X-Mailer: git-send-email 2.1.1 Subject: [OpenWrt-Devel] [PATCH][RESEND] [package] gdb: add zlib as a dependency for gdbserver 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: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" Signed-off-by: John Szakmeister --- This is a resend of a patch I sent earlier (https://lists.openwrt.org/pipermail/openwrt-devel/2014-September/028069.html). package/devel/gdb/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/package/devel/gdb/Makefile b/package/devel/gdb/Makefile index 7663188..9038115 100644 --- a/package/devel/gdb/Makefile +++ b/package/devel/gdb/Makefile @@ -42,6 +42,7 @@ endef define Package/gdbserver $(call Package/gdb/Default) TITLE:=Remote server for GNU Debugger + DEPENDS+=+zlib endef define Package/gdbserver/description