From patchwork Tue Nov 11 10:34:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yousong Zhou X-Patchwork-Id: 418548 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 509071400A0 for ; Mon, 8 Dec 2014 13:34:24 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 3B78C28C074; Mon, 8 Dec 2014 03:32:01 +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=-0.3 required=5.0 tests=BAYES_00, DATE_IN_PAST_96_XX, FREEMAIL_FROM,T_DKIM_INVALID autolearn=no version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id EE0F728C072 for ; Mon, 8 Dec 2014 03:31:57 +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-pd0-f180.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -8.5 Received: from mail-pd0-f180.google.com (mail-pd0-f180.google.com [209.85.192.180]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Mon, 8 Dec 2014 03:31:56 +0100 (CET) Received: by mail-pd0-f180.google.com with SMTP id w10so1109104pde.11 for ; Sun, 07 Dec 2014 18:33:36 -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:in-reply-to:references; bh=57xTaJNVF8AJJV3d23syDuUt9RgcxQHhmpzTR1Rjf3g=; b=r6Xx0bt4hkR+EI9/D1tdGC302AjS4PQ0rZXsAFo7gkk1a9mBDh3A6oY8iDq9Mq42jy 3qevDeyVaZevl1XJ2DNHd3FmBw4Bgxl9uoMUbAA+GIuwuJQR4qV2MQeElWqhz5kGMCrS CmRms7sXJfnO/qdykqDLKqV4SBIHerrW06u2+Rpi7FWBnCV1oFZ/JoW9uaJjF6C2ZSVz eGS8zJ2XPYH4DI8Z6f+pxWNLnj6FKJiUVZgoVp+NR4jjMoVFABDI7rvU+T3UfVAayrYB kXu8Xe1dab0LEeMh4vM7T63S7RrihD9xRRz5PZu6pYPQQEDB1LWf6j3xDjh36JT2CqIk E9Rw== X-Received: by 10.66.163.196 with SMTP id yk4mr34924777pab.57.1418006015325; Sun, 07 Dec 2014 18:33:35 -0800 (PST) Received: from debian.lan ([103.29.140.56]) by mx.google.com with ESMTPSA id fr1sm20456632pbb.32.2014.12.07.18.33.32 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 07 Dec 2014 18:33:34 -0800 (PST) From: Yousong Zhou To: openwrt-devel@lists.openwrt.org Date: Tue, 11 Nov 2014 18:34:01 +0800 Message-Id: <1415702041-44573-3-git-send-email-yszhou4tech@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1415702041-44573-1-git-send-email-yszhou4tech@gmail.com> References: <1415702041-44573-1-git-send-email-yszhou4tech@gmail.com> Subject: [OpenWrt-Devel] [PATCH 3/3] cmake: Do not hardcode /opt/local/include for Apple. 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: Yousong Zhou --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f494f6d..c09fe51 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,11 +7,6 @@ ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations) SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") -IF(APPLE) - INCLUDE_DIRECTORIES(/opt/local/include) - LINK_DIRECTORIES(/opt/local/lib) -ENDIF() - IF(POLARSSL) ADD_DEFINITIONS(-DHAVE_POLARSSL) SET(SSL_SRC ustream-polarssl.c)