Bitbake Postgres to include libxml2

I am trying to bitbake postgresql to allow postgres to parse XML, all the information I can find pertains to “–with -libxml” which appears to be in the makefile.
does anyone know how to force the postgresql recipe to build including libxml or libxml2.
I have been spinning my wheels for some time with this

Thanks

You need to enable the libxml packageconfig option as can be seen in the recipe.

http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-support/postgresql/postgresql.inc

Have a look at the Yocto Project Docs for how to enable packageconfig flags.

Cheers,
Jack

You need to enable the libxml packageconfig option as can be seen in the recipe.

http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-support/postgresql/postgresql.inc

Have a look at the Yocto Project Docs for how to enable packageconfig flags.

Cheers,
Jack

Thanks Jack, this worked out great, and cheers to you too.