diff options
author | Clement Laforet <clement@FreeBSD.org> | 2006-01-16 02:58:38 +0800 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2006-01-16 02:58:38 +0800 |
commit | c5d4c969c8fd1e64cfee5dfdd8b3402d335114ea (patch) | |
tree | 3984993639b14fb0df67890bc349795bedf9a88a /Mk/bsd.apache.mk | |
parent | 236bc34aee98227b2d85e9f190e8edb1bae4156b (diff) | |
download | freebsd-ports-gnome-c5d4c969c8fd1e64cfee5dfdd8b3402d335114ea.tar.gz freebsd-ports-gnome-c5d4c969c8fd1e64cfee5dfdd8b3402d335114ea.tar.zst freebsd-ports-gnome-c5d4c969c8fd1e64cfee5dfdd8b3402d335114ea.zip |
Cleanups and fixes
- remove useless options (and fix thread stuff) [1]
- move print-closest-mirror to bsd.apache.mk
- move threads configure options out of Makefile.modules
- Fix stupid logic to disable v4mapped address [2]
- and more...
Submitted/spotted by: many, Hirohisa Yamaguchi <umq@ueo.co.jp> [1]
ume[2]
PR: ports/91813 [1]
Diffstat (limited to 'Mk/bsd.apache.mk')
-rw-r--r-- | Mk/bsd.apache.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Mk/bsd.apache.mk b/Mk/bsd.apache.mk index 1d456147f997..098b6a6966d2 100644 --- a/Mk/bsd.apache.mk +++ b/Mk/bsd.apache.mk @@ -337,6 +337,17 @@ AP_EXTRAS+= -L ${AP_LIB} .endif .if defined(AP_PORT_IS_SERVER) +.if !target(print-closest-mirrors) +print-closest-mirrors: + @${ECHO_MSG} -n "Fetching list of nearest mirror: " >&2 + @MIRRORS=`${FETCH_CMD} -T 30 -qo - http://www.apache.org/dyn/closer.cgi/httpd/ 2> /dev/null\ + | ${GREP} /httpd/ | ${SED} 's/.*href="\(.*\)"><str.*/\1/g' | \ + ${HEAD} -7 | ${TAIL} -6` ; \ + ${ECHO_MSG} done >&2; if [ "x$$MIRRORS" != "x" ]; then \ + ${ECHO_MSG} -n "MASTER_SITE_APACHE_HTTPD?= ";\ + ${ECHO_MSG} $$MIRRORS; else \ + ${ECHO_MSG} "No mirrors found!">&2 ; fi +.endif .if !target(show-categories) show-categories: |