[oe] [meta-oe][PATCH 0/1] mariadb-native: depends on zlib-native

wenzong.fan at windriver.com wenzong.fan at windriver.com
Fri Oct 25 06:37:39 UTC 2013


From: Wenzong Fan <wenzong.fan at windriver.com>

Mariadb will provide zlib.* if it can't find zlib binaries and headers
from sysroots path. We have set it to use external zlib.* firstly with
these definitions/configs in inc file:
    
    + DEPENDS = "ncurses zlib"
    + --with-zlib-dir=${STAGING_EXECPREFIXDIR}
    
But native bb file overrides the dependencies with:
 
    + DEPENDS = "ncurses-native"
    
If mariadb-naitve was built before zlib-native, its own zlib will be
built and provide zlib.la which will brake other packages link to real
zlib with errors like:
    
    * .../usr/lib/libz.a(gzclose.o): relocation R_X86_64_32 against \
      `a local symbol' can not be used when making a shared object; \
      recompile with -fPIC
    * .../usr/lib/libz.a: could not read symbols: Bad value
    
By removing the DEPENDS = "ncurses-native" from the native bb file,
mariadb-native will still have the DEPENDS (ncurses zlib) from the
inc file, and since the recipe is mariadb-native, this is equivalent
to DEPENDS = "ncurses-native zlib-native" due to the map_dependencies()
inner fuction for native_virtclass_handler() in "oe-core/meta/classes/
native.bbclass".

The following changes since commit 2e4b24dad58095579ce3fb34a33b029cfcf0a813:

  cifs-utils: add --ignore-fail-on-non-empty for rmdir (2013-10-24 14:05:35 -0400)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib wenzong/mariadb-native
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=wenzong/mariadb-native

Wenzong Fan (1):
  mariadb-native: depends on zlib-native

 meta-oe/recipes-support/mysql/mariadb-native_5.1.67.bb |    1 -
 1 file changed, 1 deletion(-)

-- 
1.7.10.4




More information about the Openembedded-devel mailing list