Adding apache2 to colibri imx7 image

Hello all,

I am trying to add Apache2 to an (Colibri iMX7) image via the Yocto/OE build system building angstrom-lxde-image. I have made all the modification needed ( in local.conf and bblayers.conf ).
However version number in layers/meta-openembedded/meta-webserver/recipes-httpd/apache2 is 2.4.23 which can’t be fetched by bitbake because only the version 2.4.27 is available on the apache website.

apache2-native_2.4.23.bb file :

SRC_URI = "http://www.apache.org/dist/httpd/httpd-${PV}.tar.bz2
file://0001-configure-use-pkg-config-for-PCRE-detection.patch
"

How can i solve this problem ? should i replace the apache folder by the newest one ( in the latest version of meta-openembedded layer ).

Thank you in advance for your help.
Regards,Kdm.

Hi

This has been fixed in the meta-openembedded layer by this commit.

You could either cherry-pick it or probably better update the layer to the head of the morty branch.

cd meta-openembedded
git fetch repo
git merge repo/morty

Max

Perfect, it is working thank you. i am just using the old version for the moment and i will try to update the layer later.

Kdm