summaryrefslogtreecommitdiffstats
path: root/meta-webserver
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-05-10 13:53:49 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-05-14 23:47:36 +0100
commit13ab18503fd33dd9aa0b560b1f2cbeeb97d5ae12 (patch)
tree4b49c8fb5850405d2941b73a988e73990fc2e116 /meta-webserver
parent3190369ddb30a9285f77900d849c883785072156 (diff)
downloadmeta-openembedded-13ab18503fd33dd9aa0b560b1f2cbeeb97d5ae12.tar.gz
apache2: drop unneeded workaround for apr/apr-util config script issue
The fix for the apr-1-config/apu-1-config path issue has been in OE-Core for some time now (OE-Core commit ab56f1063a666df5faddd97f44758c8ae378e51c) so we no longer need these workarounds. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta-webserver')
-rw-r--r--meta-webserver/recipes-httpd/apache2/apache2_2.4.4.bb13
1 files changed, 2 insertions, 11 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.4.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.4.bb
index 42a7b166e..cf1e4690e 100644
--- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.4.bb
+++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.4.bb
@@ -31,8 +31,8 @@ CFLAGS_prepend = "-I${STAGING_INCDIR}/openssl "
31EXTRA_OECONF = "--enable-ssl \ 31EXTRA_OECONF = "--enable-ssl \
32 --with-ssl=${STAGING_LIBDIR}/.. \ 32 --with-ssl=${STAGING_LIBDIR}/.. \
33 --with-expat=${STAGING_LIBDIR}/.. \ 33 --with-expat=${STAGING_LIBDIR}/.. \
34 --with-apr=${WORKDIR}/apr-1-config \ 34 --with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \
35 --with-apr-util=${WORKDIR}/apu-1-config \ 35 --with-apr-util=${STAGING_BINDIR_CROSS}/apu-1-config \
36 --enable-info \ 36 --enable-info \
37 --enable-rewrite \ 37 --enable-rewrite \
38 --with-dbm=sdbm \ 38 --with-dbm=sdbm \
@@ -48,15 +48,6 @@ EXTRA_OECONF = "--enable-ssl \
48 --enable-mpms-shared \ 48 --enable-mpms-shared \
49 ac_cv_have_threadsafe_pollset=no" 49 ac_cv_have_threadsafe_pollset=no"
50 50
51do_configure_prepend() {
52 # FIXME: this hack is required to work around an issue with apr/apr-util
53 # Can be removed when fixed in OE-Core (also revert --with-* options above)
54 # see http://bugzilla.yoctoproject.org/show_bug.cgi?id=3267
55 cp ${STAGING_BINDIR_CROSS}/apr-1-config ${STAGING_BINDIR_CROSS}/apu-1-config ${WORKDIR}
56 sed -i -e 's:location=source:location=installed:' ${WORKDIR}/apr-1-config
57 sed -i -e 's:location=source:location=installed:' ${WORKDIR}/apu-1-config
58}
59
60do_install_append() { 51do_install_append() {
61 install -d ${D}/${sysconfdir}/init.d 52 install -d ${D}/${sysconfdir}/init.d
62 cat ${WORKDIR}/init | \ 53 cat ${WORKDIR}/init | \