From patchwork Wed Apr 3 10:27:58 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 233343 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 55D332C00B9 for ; Wed, 3 Apr 2013 21:28:19 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C77FE8CA2B; Wed, 3 Apr 2013 10:28:14 +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 tS+5Iq19BpzI; Wed, 3 Apr 2013 10:28:09 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0DE3A8C867; Wed, 3 Apr 2013 10:28:09 +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 B27728F79F for ; Wed, 3 Apr 2013 10:28:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 29C398C867 for ; Wed, 3 Apr 2013 10:28:08 +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 FbmHx3seOMpZ for ; Wed, 3 Apr 2013 10:28:07 +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 065E68C70E for ; Wed, 3 Apr 2013 10:28:06 +0000 (UTC) Received: from asgard (host210.190-138-221.telecom.net.ar [190.138.221.210]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.6/8.14.6) with ESMTP id r33ARxfh025018 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 3 Apr 2013 10:28:02 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1364984884; bh=n9x354AgaQ8TkwvoYwRaUFrTn0XFkarbze6nf3Ne9Cw=; h=From:To:Cc:Subject:Date; b=i4JAzh+IHVGDqKMmLHWPVW3Ngt+mh+Gf3r0MkhDmmb15LsRMuuFMP4OdiozFYR+yD qXgSrdUnjuApZ4rWgiehZk3G1wV/za2hjuWV0VwUQCF6wWqD4lwLRjzFITkLSQ/q8Q Vc8lrw0oY/5CTnXAxf4AKmp2cVWRAZhDu5Qnf1UY= Received: by asgard (sSMTP sendmail emulation); Wed, 03 Apr 2013 07:27:59 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 3 Apr 2013 07:27:58 -0300 Message-Id: <1364984878-829-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] linknx: forcilbly disable smtp support 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 linknx has support for SMTP via libesmtp, however there's no clean way to specify where libesmtp-config lives. So when libesmtp is built it finds it via the headers and is automatically enabled, but it fails to get the appropiate link line from libesmtp-config because it's not found. Fix it by forcibly disabling it. If someone is interested in working with upstream about this an option like --with-libcurl should be implemented in configure. Solves: http://autobuild.buildroot.net/results/90ebb383d7a2d7bdf09ffac65e2504da7b6d19f5/ Signed-off-by: Gustavo Zacarias --- package/linknx/linknx.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/linknx/linknx.mk b/package/linknx/linknx.mk index 42700a7..54e0426 100644 --- a/package/linknx/linknx.mk +++ b/package/linknx/linknx.mk @@ -9,7 +9,7 @@ LINKNX_SITE = http://downloads.sourceforge.net/project/linknx/linknx/linknx-$(LI LINKNX_LICENSE = GPLv2+ LINKNX_INSTALL_STAGING = YES LINKNX_CONF_OPT = --without-lua --without-log4cpp --without-pth-test \ - --with-pth=$(STAGING_DIR)/usr + --with-pth=$(STAGING_DIR)/usr --disable-smtp LINKNX_DEPENDENCIES = libpthsem