1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

Illuminate GeoIP module. [1]

Fix typo for thirdparty udp module. [2]
Do not bump PORTREVISION.

Feature safe: yes

Submitted by:	Rainer Duffner <rainer@ultra-secure.de> [1]
		Vadim Goncharov aka nuclight via IRC [2]

PR:		ports/148092 [1]
This commit is contained in:
Sergey A. Osokin 2010-06-24 03:45:16 +00:00
parent c60a4b35e1
commit 436182d2c0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=256898

View File

@ -27,6 +27,7 @@ OPTIONS= DEBUG "Build with debug" off \
HTTP_CACHE_MODULE "Enable http_cache module" on \
HTTP_DAV_MODULE "Enable http_webdav module" off \
HTTP_FLV_MODULE "Enable http_flv module" off \
HTTP_GEOIP_MODULE "Enable http_geoip module" off \
HTTP_GZIP_STATIC_MODULE "Enable http_gzip_static module" off \
HTTP_IMAGE_FILTER_MODULE "Enable http_image_filter module" off \
HTTP_PERL_MODULE "Enable http_perl module" off \
@ -70,7 +71,7 @@ OPTIONS= DEBUG "Build with debug" off \
PASSENGER_MODULE "3rd party passenger module" off \
SLOWFS_CACHE_MODULE "3rd party slowfs_cache module" off \
SUPERVISORD_MODULE "3rd party supervisord module" off \
UDPLOG_MODULE "3rd party updlog (syslog) module" off
UDPLOG_MODULE "3rd party udplog (syslog) module" off
WANT_GNOME= yes
MAKE_JOBS_SAFE= yes
@ -225,6 +226,11 @@ CONFIGURE_ARGS+=--add-module=${WRKDIR}/ngx_http_gunzip_filter_module-${NGINX_GUN
CONFIGURE_ARGS+=--with-http_flv_module
.endif
.if defined(WITH_HTTP_GEOIP_MODULE)
CONFIGURE_ARGS+=--with-http_geoip_module
LIB_DEPENDS+= GeoIP.5:${PORTSDIR}/net/GeoIP
.endif
.if defined(WITH_HTTP_GZIP_STATIC_MODULE)
CONFIGURE_ARGS+=--with-http_gzip_static_module
.endif