diff options
author | gahr <gahr@FreeBSD.org> | 2019-03-01 17:04:05 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2019-03-01 17:04:05 +0800 |
commit | 94af46c49f36fb8148bcd33aabfede5b71d2407d (patch) | |
tree | 8ec0411e152fffcbd2ff84896be521abddff507d /www/nginx-devel | |
parent | b43a1dc788b7c83fd0cd6f79740773f37fc68737 (diff) | |
download | freebsd-ports-gnome-94af46c49f36fb8148bcd33aabfede5b71d2407d.tar.gz freebsd-ports-gnome-94af46c49f36fb8148bcd33aabfede5b71d2407d.tar.zst freebsd-ports-gnome-94af46c49f36fb8148bcd33aabfede5b71d2407d.zip |
www/nginx-devel: DAV modules requires xslt
adding module in /www/nginx-devel/work/nginx-dav-ext-module-3.0.0
+ ngx_http_dav_ext_module was configured
checking for PCRE library ... found
checking for PCRE JIT support ... found
checking for OpenSSL library ... found
checking for zlib library ... found
checking for libxslt ... not found
checking for libxslt in /usr/local/ ... not found
checking for libxslt in /usr/pkg/ ... not found
checking for libxslt in /opt/local/ ... not found
./configure: error: the HTTP XSLT module requires the libxml2/libxslt
libraries. You can either do not enable the module or install the libraries.
Diffstat (limited to 'www/nginx-devel')
-rw-r--r-- | www/nginx-devel/Makefile.extmod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/nginx-devel/Makefile.extmod b/www/nginx-devel/Makefile.extmod index 4dc700d20ab0..d973d233e5e2 100644 --- a/www/nginx-devel/Makefile.extmod +++ b/www/nginx-devel/Makefile.extmod @@ -90,7 +90,7 @@ HTTP_AUTH_PAM_GH_TUPLE= sto:ngx_http_auth_pam_module:v1.5.1:auth_pam HTTP_AUTH_PAM_VARS= DSO_EXTMODS+=auth_pam HTTP_DAV_EXT_IMPLIES= HTTP_DAV -HTTP_DAV_EXT_USE= GNOME=libxml2 +HTTP_DAV_EXT_USE= GNOME=libxml2,libxslt HTTP_DAV_EXT_GH_TUPLE= arut:nginx-dav-ext-module:v3.0.0:dav_ext HTTP_DAV_EXT_CONFIGURE_ON= --add-module=${WRKSRC_dav_ext} |