diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2011-08-16 14:37:14 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-17 15:14:56 +0100 |
commit | c94bc4d6ee33d62391522e7677af30e2c04458ec (patch) | |
tree | 325cd6666ba56716f8c2f028809b66107e96bf6f /meta/recipes-devtools | |
parent | ad96bb7f006409601631b7c8043164ec320f13a5 (diff) | |
download | poky-c94bc4d6ee33d62391522e7677af30e2c04458ec.tar.gz |
tcf-agent: add openssl into DEPENDS
[YOCTO #1330]
If tcf-agent's do_compile happens before openssl does populate_root, we'll
get such a compilation failure:
framework/channel_tcp.c:34:27: fatal error: openssl/ssl.h: No such file or directory
Thanks Kumar Gala for reporting this!
(From OE-Core rev: 9314d5844a16812bb66e8c9c471ee9fd70a574c2)
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Cc: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb index 3f97f69526..37591c2b18 100644 --- a/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb +++ b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb | |||
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://../epl-v10.html;md5=7aa4215a330a0a4f6a1cbf8da1a0879f | |||
8 | 8 | ||
9 | SRCREV = "1855" | 9 | SRCREV = "1855" |
10 | PV = "0.0+svnr${SRCPV}" | 10 | PV = "0.0+svnr${SRCPV}" |
11 | PR = "r0" | 11 | PR = "r1" |
12 | 12 | ||
13 | SRC_URI = "svn://dev.eclipse.org/svnroot/dsdp/org.eclipse.tm.tcf/trunk;module=agent;proto=http \ | 13 | SRC_URI = "svn://dev.eclipse.org/svnroot/dsdp/org.eclipse.tm.tcf/trunk;module=agent;proto=http \ |
14 | http://dev.eclipse.org/svnroot/dsdp/org.eclipse.tm.tcf/trunk/epl-v10.html;name=epl \ | 14 | http://dev.eclipse.org/svnroot/dsdp/org.eclipse.tm.tcf/trunk/epl-v10.html;name=epl \ |
@@ -19,7 +19,7 @@ SRC_URI = "svn://dev.eclipse.org/svnroot/dsdp/org.eclipse.tm.tcf/trunk;module=ag | |||
19 | SRC_URI[epl.md5sum] = "7aa4215a330a0a4f6a1cbf8da1a0879f" | 19 | SRC_URI[epl.md5sum] = "7aa4215a330a0a4f6a1cbf8da1a0879f" |
20 | SRC_URI[epl.sha256sum] = "4fd64aeed340d62a64a8da4b371efe0f6d0d745f4d2dbefacba86c646d36bc72" | 20 | SRC_URI[epl.sha256sum] = "4fd64aeed340d62a64a8da4b371efe0f6d0d745f4d2dbefacba86c646d36bc72" |
21 | 21 | ||
22 | DEPENDS = "util-linux" | 22 | DEPENDS = "util-linux openssl" |
23 | RDEPENDS_${PN} = "bash" | 23 | RDEPENDS_${PN} = "bash" |
24 | 24 | ||
25 | S = "${WORKDIR}/agent" | 25 | S = "${WORKDIR}/agent" |