nginx: Add support for altering build configuration

Passing EXTRA_OECONF to ./configure, this allows to alter build
configure

Signed-off-by: Amarnath Valluri <amarnath.valluri@intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Amarnath Valluri 2015-11-06 15:27:37 +02:00 committed by Martin Jansa
parent 08d51bca6a
commit 9f3a2e92d3

View File

@ -27,6 +27,8 @@ inherit update-rc.d useradd
CFLAGS_append = " -fPIE -pie"
CXXFLAGS_append = " -fPIE -pie"
EXTRA_OECONF = ""
do_configure () {
if [ "${SITEINFO_BITS}" = "64" ]; then
PTRSIZE=8
@ -55,7 +57,8 @@ do_configure () {
--pid-path=/run/nginx/nginx.pid \
--prefix=${prefix} \
--with-http_ssl_module \
--with-http_gzip_static_module
--with-http_gzip_static_module \
${EXTRA_OECONF}
}
do_install () {