From patchwork Tue Jun 12 08:27:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 164347 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 3EE90B6FBE for ; Tue, 12 Jun 2012 18:28:30 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 4CF9031DB6; Tue, 12 Jun 2012 08:28:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id G5Q15+q8lk9V; Tue, 12 Jun 2012 08:28:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 34DA131DAC; Tue, 12 Jun 2012 08:28:27 +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 9102F8F753 for ; Tue, 12 Jun 2012 08:28:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 869508A8FE for ; Tue, 12 Jun 2012 08:28:25 +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 Av-BM-Q7zAIp for ; Tue, 12 Jun 2012 08:28:24 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f43.google.com (mail-ee0-f43.google.com [74.125.83.43]) by whitealder.osuosl.org (Postfix) with ESMTPS id 503B88A8F7 for ; Tue, 12 Jun 2012 08:28:24 +0000 (UTC) Received: by eeke50 with SMTP id e50so3689729eek.16 for ; Tue, 12 Jun 2012 01:28:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=euMhllRiS4xCcltg6EvEMjw0Zo7/SU5B6mQkRA6ZCP8=; b=MzcmlwkHu8zejbalV6pYeXOAf+bco2WGKTN3Yt6uZwKjqqCoORWrp7xaa7staQU67a xiwKdhAAMx6O5oKslHuYb80wtN01/WIgpkIN5dngO4/EfRLkdUbGyZsPPZPNmsS36VIV qdgwIaYrH988P59mfb2iHTIWRsgxAWzm+pQVON+NI3ndW/fzGo/HPmE0pVFobixvRiUz 4ffASN6KicgZBlC6IQObcgy4MuWIMGMpVGFUIxieBz4x5pHkvlYzMYxp1tSwS3IDt5jS +jy8UAVOzXTLX43vQuYDv9V7EFx47Qnw9cTFr+Z/R5DL485hn/bAQyQiT6e1C4eHBVq8 YM7g== Received: by 10.14.37.76 with SMTP id x52mr6859500eea.102.1339489702381; Tue, 12 Jun 2012 01:28:22 -0700 (PDT) Received: from localhost.localdomain (host-2-96-68-142.as13285.net. [2.96.68.142]) by mx.google.com with ESMTPS id z5sm61562633eem.3.2012.06.12.01.28.20 (version=SSLv3 cipher=OTHER); Tue, 12 Jun 2012 01:28:21 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Tue, 12 Jun 2012 09:27:15 +0100 Message-Id: <1339489635-11299-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] monit: fix configuration error 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 From: Simon Dawson Configuration fails for the monit package, with the following error. checking for SSL library directory... Not found Couldn't find your SSL library files. Use --with-ssl-lib-dir option to fix this problem or disable the SSL support with --without-ssl Tweak the monit configuration command line so that openssl is found. Signed-off-by: Simon Dawson --- package/monit/monit.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/monit/monit.mk b/package/monit/monit.mk index 958618d..11bc7e1 100644 --- a/package/monit/monit.mk +++ b/package/monit/monit.mk @@ -15,7 +15,7 @@ MONIT_CONF_OPT += \ --without-pam ifeq ($(BR2_PACKAGE_OPENSSL),y) -MONIT_CONF_OPT += --with-ssl +MONIT_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr MONIT_DEPENDENCIES += openssl else MONIT_CONF_OPT += --without-ssl