diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-03-30 18:50:36 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-03-31 20:17:09 +0200 |
commit | be796657cb921d33a7ef8debbd042e5f9fed5b8a (patch) | |
tree | 4e04d1212152c9be800a30b1e3daa1b5a9951187 | |
parent | 53e1b222533fd110ab9472480ded126a4762db5e (diff) | |
download | buildroot-be796657cb921d33a7ef8debbd042e5f9fed5b8a.tar.gz buildroot-be796657cb921d33a7ef8debbd042e5f9fed5b8a.zip |
package/apache: add optional support for lua
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/apache/apache.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/package/apache/apache.mk b/package/apache/apache.mk index eaf7b9c5bf..3b39be4a40 100644 --- a/package/apache/apache.mk +++ b/package/apache/apache.mk @@ -40,7 +40,6 @@ APACHE_CONF_OPTS = \ --without-suexec-bin \ --enable-mods-shared=all \ --with-mpm=$(APACHE_MPM) \ - --disable-lua \ --disable-luajit ifeq ($(BR2_PACKAGE_LIBXML2),y) @@ -57,6 +56,15 @@ APACHE_CONF_OPTS += \ --disable-proxy-html endif +ifeq ($(BR2_PACKAGE_LUA),y) +APACHE_CONF_OPTS += \ + --enable-lua \ + --with-lua=$(STAGING_DIR)/usr +APACHE_DEPENDENCIES += lua +else +APACHE_CONF_OPTS += --disable-lua +endif + ifeq ($(BR2_PACKAGE_OPENSSL),y) APACHE_DEPENDENCIES += openssl APACHE_CONF_OPTS += \ |