All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] beecrypt: DEPENDS on icu
@ 2015-06-11  9:07 Robert Yang
  2015-06-11  9:07 ` [PATCH 1/1] " Robert Yang
  2015-06-11  9:26 ` [PATCH 0/1] " Robert Yang
  0 siblings, 2 replies; 3+ messages in thread
From: Robert Yang @ 2015-06-11  9:07 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 7f85e74d5c53b34e5f470967fdbdbd19fed1929a:

  sysvinit: Only enable recipe in builds where its applicable (2015-06-10 12:03:14 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/beecrypt
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/beecrypt

Robert Yang (1):
  beecrypt: DEPENDS on icu

 meta/recipes-support/beecrypt/beecrypt_4.2.1.bb |    2 ++
 1 file changed, 2 insertions(+)

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] beecrypt: DEPENDS on icu
  2015-06-11  9:07 [PATCH 0/1] beecrypt: DEPENDS on icu Robert Yang
@ 2015-06-11  9:07 ` Robert Yang
  2015-06-11  9:26 ` [PATCH 0/1] " Robert Yang
  1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2015-06-11  9:07 UTC (permalink / raw)
  To: openembedded-core

Fixed when fresh build:
$ bitbake beecrypt-native

| In file included from /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/include/beecrypt/c++/lang/System.h:32:0,
|                  from /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/c++/lang/System.cxx:27:
| /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/include/beecrypt/c++/io/PrintStream.h:31:26: fatal error: unicode/ucnv.h: No such file or directory
| compilation terminated.
| In file included from /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/c++/lang/String.cxx:25:0:
| /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/include/beecrypt/c++/lang/String.h:41:28: fatal error: unicode/unistr.h: No such file or directory
| compilation terminated.
| In file included from /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/include/beecrypt/c++/lang/StringBuffer.h:30:0,
|                  from /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/c++/lang/StringBuffer.cxx:25:
| /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/include/beecrypt/c++/lang/String.h:41:28: fatal error: unicode/unistr.h: No such file or directory
| compilation terminated.
| In file included from /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/include/beecrypt/c++/lang/Long.h:28:0,
|                  from /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/c++/lang/Long.cxx:25:
| /path/to/beecrypt-native/4.2.1-r3/beecrypt-4.2.1/include/beecrypt/c++/lang/String.h:41:28: fatal error: unicode/unistr.h: No such file or directory
| compilation terminated.

Both target and native has this error.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-support/beecrypt/beecrypt_4.2.1.bb |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-support/beecrypt/beecrypt_4.2.1.bb b/meta/recipes-support/beecrypt/beecrypt_4.2.1.bb
index 1e626f1..62b4f7c 100644
--- a/meta/recipes-support/beecrypt/beecrypt_4.2.1.bb
+++ b/meta/recipes-support/beecrypt/beecrypt_4.2.1.bb
@@ -24,6 +24,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=9894370afd5dfe7d02b8d14319e729a1 \
 
 PR = "r3"
 
+DEPENDS += "icu"
+
 inherit autotools multilib_header ptest
 acpaths=""
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/1] beecrypt: DEPENDS on icu
  2015-06-11  9:07 [PATCH 0/1] beecrypt: DEPENDS on icu Robert Yang
  2015-06-11  9:07 ` [PATCH 1/1] " Robert Yang
@ 2015-06-11  9:26 ` Robert Yang
  1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2015-06-11  9:26 UTC (permalink / raw)
  To: openembedded-core


Sorry, please drop this patch, we don't need it, I met this
error when I made something wrong in base.bbclass.

// Robert

On 06/11/2015 05:07 PM, Robert Yang wrote:
> The following changes since commit 7f85e74d5c53b34e5f470967fdbdbd19fed1929a:
>
>    sysvinit: Only enable recipe in builds where its applicable (2015-06-10 12:03:14 +0100)
>
> are available in the git repository at:
>
>    git://git.openembedded.org/openembedded-core-contrib rbt/beecrypt
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/beecrypt
>
> Robert Yang (1):
>    beecrypt: DEPENDS on icu
>
>   meta/recipes-support/beecrypt/beecrypt_4.2.1.bb |    2 ++
>   1 file changed, 2 insertions(+)
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-11  9:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-11  9:07 [PATCH 0/1] beecrypt: DEPENDS on icu Robert Yang
2015-06-11  9:07 ` [PATCH 1/1] " Robert Yang
2015-06-11  9:26 ` [PATCH 0/1] " Robert Yang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.