diff options
author | brnrd <brnrd@FreeBSD.org> | 2018-04-25 04:13:49 +0800 |
---|---|---|
committer | brnrd <brnrd@FreeBSD.org> | 2018-04-25 04:13:49 +0800 |
commit | 897f8cbf1bf8f1fe7199f2dc6bc825c7ac6126d0 (patch) | |
tree | a59e22413a8d2121700d0e22fb3c9ee05ed466ec | |
parent | 65945a49873489ffb9ae9f8c3283ab1b632f96e5 (diff) | |
download | freebsd-ports-gnome-897f8cbf1bf8f1fe7199f2dc6bc825c7ac6126d0.tar.gz freebsd-ports-gnome-897f8cbf1bf8f1fe7199f2dc6bc825c7ac6126d0.tar.zst freebsd-ports-gnome-897f8cbf1bf8f1fe7199f2dc6bc825c7ac6126d0.zip |
www/nginx: Fix options
- OPT_CONFIGURE_ARGS is not a thing
PR: 227122
Submitted by: Maxim Filimonov <che bein link>
Approved by: fixit blanket
-rw-r--r-- | www/nginx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/nginx/Makefile b/www/nginx/Makefile index 059971403c01..86c85c0f0209 100644 --- a/www/nginx/Makefile +++ b/www/nginx/Makefile @@ -142,7 +142,7 @@ HTTP_CONFIGURE_OFF= --without-http HTTP_ADDITION_CONFIGURE_ON= --with-http_addition_module HTTP_AUTH_REQ_CONFIGURE_ON= --with-http_auth_request_module HTTP_CACHE_CONFIGURE_OFF= --without-http-cache -HTTP_DAV_CONFIGURE_ARGS= --with-http_dav_module +HTTP_DAV_CONFIGURE_ON= --with-http_dav_module HTTP_FLV_CONFIGURE_ON= --with-http_flv_module HTTP_GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP HTTP_GEOIP_VARS= DSO_BASEMODS+=http_geoip_module @@ -150,7 +150,7 @@ HTTP_GZIP_STATIC_CONFIGURE_ON= --with-http_gzip_static_module HTTP_GUNZIP_FILTER_CONFIGURE_ON=--with-http_gunzip_module HTTP_IMAGE_FILTER_LIB_DEPENDS= libgd.so:graphics/gd HTTP_IMAGE_FILTER_VARS= DSO_BASEMODS+=http_image_filter_module -HTTP_MP4_CONFIGURE_ARGS= --with-http_mp4_module +HTTP_MP4_CONFIGURE_ON= --with-http_mp4_module HTTP_PERL_CATEGORIES= perl5 HTTP_PERL_USES= perl5 HTTP_PERL_VARS= DSO_BASEMODS+=http_perl_module |