From patchwork Fri Dec 18 10:37:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandru Ardelean X-Patchwork-Id: 558816 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 745C71402BB for ; Fri, 18 Dec 2015 21:37:38 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=aRpn6c9a; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 123F428BC2A; Fri, 18 Dec 2015 11:37:05 +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 41E5628BC2A for ; Fri, 18 Dec 2015 11:36:59 +0100 (CET) X-policyd-weight: using cached result; rate: -8.5 Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Fri, 18 Dec 2015 11:36:57 +0100 (CET) Received: by mail-wm0-f50.google.com with SMTP id l126so58258881wml.0 for ; Fri, 18 Dec 2015 02:37:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=QBOHLQetNq1fXoRY39XdhvaTrcfaJ8rRw26WN57tB9s=; b=aRpn6c9a3q5axnHfbVwr4HGg0TbaemesXgN0UFIxfMV3gTBfKuLp1Y1L2FYOZIt8W/ +vVERirzHmP5pSN9osEnVmLGTqfEk+Jg0iTziSUTI587xW/Ny7n8CFOtDncwFDIpl/1Y TOVk43YD+QZLlBN22Mv4OSsbP0LbqU6l1/KgxhUpIFfUg4i8K31K6BKmihLdlaUX2hoS C3soRTHSn5KR3Umcv68grGXlva4Pqfj9KfPlT1pYYn+do4PVmoNfF2kJ5tH48l7KvSPm dHdOqBjPRbiZ4mSpg22Ltqoau2kY+vN84hfb4NpiQegHVRmChDtSnyA8RS0royxLVLcn HNSg== X-Received: by 10.28.13.138 with SMTP id 132mr2433085wmn.62.1450435031971; Fri, 18 Dec 2015 02:37:11 -0800 (PST) Received: from orion.ocedo.cluj.local ([5.2.198.78]) by smtp.gmail.com with ESMTPSA id w4sm14235317wje.49.2015.12.18.02.37.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 18 Dec 2015 02:37:11 -0800 (PST) From: Alexandru Ardelean To: openwrt-devel@lists.openwrt.org Date: Fri, 18 Dec 2015 12:37:05 +0200 Message-Id: <1450435025-19279-1-git-send-email-ardeleanalex@gmail.com> X-Mailer: git-send-email 2.1.4 Subject: [OpenWrt-Devel] [PATCH] libnl: fix warning with poll.h include on musl 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" Warning is: #warning redirecting incorrect #include to --- .../libnl/patches/001-fix-poll-h-include-warning-on-musl.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 package/libs/libnl/patches/001-fix-poll-h-include-warning-on-musl.h diff --git a/package/libs/libnl/patches/001-fix-poll-h-include-warning-on-musl.h b/package/libs/libnl/patches/001-fix-poll-h-include-warning-on-musl.h new file mode 100644 index 0000000..ec9d4bc --- /dev/null +++ b/package/libs/libnl/patches/001-fix-poll-h-include-warning-on-musl.h @@ -0,0 +1,13 @@ +diff --git a/include/netlink/netlink.h b/include/netlink/netlink.h +index 5f68548..3bf3ed5 100644 +--- a/include/netlink/netlink.h ++++ b/include/netlink/netlink.h +@@ -16,7 +16,7 @@ + #include + #include + #include +-#include ++#include + #include + #include + #include