From patchwork Sat Apr 16 10:53:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/2] viking: add `curl` to `DEPENDS` Date: Sat, 16 Apr 2011 10:53:43 -0000 From: Paul Menzel X-Patchwork-Id: 2415 Message-Id: <1302951223.8709.23.camel@mattotaupa> To: openembedded-devel@lists.openembedded.org Date: Sat, 16 Apr 2011 12:39:23 +0200 Task configure fails with the following error. checking for gawk... (cached) gawk checking for curl-config... no checking whether libcurl is usable... no configure: error: libcurl is needed but not found Adding `curl` to `DEPENDS` fixes this problem and was tested using the following configuration. Build Configuration: BB_VERSION = "1.12.0" METADATA_BRANCH = "viking" METADATA_REVISION = "b78f877" TARGET_ARCH = "arm" TARGET_OS = "linux-gnueabi" MACHINE = "beagleboard" DISTRO = "minimal" DISTRO_VERSION = "dev-snapshot-20110416" TARGET_FPU = "hard" Signed-off-by: Paul Menzel CC: Stanislav Brabec --- recipes/viking/viking_0.9.6.bb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/recipes/viking/viking_0.9.6.bb b/recipes/viking/viking_0.9.6.bb index f24b859..13d9801 100644 --- a/recipes/viking/viking_0.9.6.bb +++ b/recipes/viking/viking_0.9.6.bb @@ -1,7 +1,7 @@ DESCRIPTION = "program to manage GPS data" HOMEPAGE = "http://viking.sourceforge.net/" SECTION = "x11/applications" -DEPENDS = "gpsd gtk+ intltool-native" +DEPENDS = "curl gpsd gtk+ intltool-native" LICENSE = "GPLv2" PRIORITY = "optional" PR = "r1"