3d30cc1bdf
Pkgsrc changes: Fixes "libwww-aliases" option, reported by PR 39776. The knob for command aliases was changed when update to 5.815(?), it is disabled by default, and libwww-alias option is no effect since the update. So remove it from PKG_SUGGESTED_OPTIONS. Changes: 2008-10-20 Release 5.819 Gisle Aas (2): Don't override $Net::HTTPS::SSL_SOCKET_CLASS if it's already set. Wrong content handlers would sometimes be skipped [RT#40187] 2008-10-16 Release 5.818 Gisle Aas (8): Use deflate compression instead of gzip for the test Simplify; Get rid of the $USE_STORABLE_DCLONE configuration Add dump method to HTTP::Message. Use $res->dump instead of rolling our own. Layout change; move headers() methods to a more logical place. Add support for x-bzip2 encoding; fix bzip2 decoding. Add send_header method to HTTP::Daemon Make the lwp-request User-Agent string include the LWP version. Slaven Rezic (1): clone implemented in terms of Storable::dclone [RT#39611]
14 lines
285 B
Makefile
14 lines
285 B
Makefile
# $NetBSD: options.mk,v 1.2 2008/10/21 13:12:27 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-libwww
|
|
|
|
PKG_SUPPORTED_OPTIONS= libwww-aliases
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Do we install aliases ?
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mlibwww-aliases)
|
|
MAKE_PARAMS+= --aliases
|
|
.endif
|