diff options
author | Cliff Brake <cbrake@bec-systems.com> | 2010-02-25 08:15:46 -0500 |
---|---|---|
committer | Cliff Brake <cbrake@bec-systems.com> | 2010-02-25 08:15:46 -0500 |
commit | a3e97b25e3a8641c8677bd5b8926f3653490920a (patch) | |
tree | 0c3df60fa5e2c5c110908ced5da4d68d046f8c2c /recipes | |
parent | 9c150feae6ade63514c8006c85a41a9e6cc4ffd3 (diff) |
gettext_0.17: fix build issue on 64-bit host
was getting the following message:
/usr/lib64/libxml2.so.2: undefined reference to `gzopen64'
solution is to add libxml2 to native DEPENDS
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gettext/gettext_0.17.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gettext/gettext_0.17.bb b/recipes/gettext/gettext_0.17.bb index 2f7faa70fa..fbb479a75e 100644 --- a/recipes/gettext/gettext_0.17.bb +++ b/recipes/gettext/gettext_0.17.bb @@ -4,7 +4,7 @@ SECTION = "libs" LICENSE = "GPLv3" PR = "r5" DEPENDS = "gettext-native virtual/libiconv ncurses expat" -DEPENDS_virtclass-native = "" +DEPENDS_virtclass-native = "libxml2-native" PROVIDES = "virtual/libintl" PROVIDES_virtclass-native = "" RCONFLICTS_gettext-libintl = "proxy-libintl" |