c0b394ea70
From Leo Taccari in PR 50072. pkgsrc changes: o Convert all the old links-xz and links-zlib options to lzma and zlib2. o Do not include the bzip2, xz and zlib buildlink3.mk files: they are handled in www/links/options.mk. o Add "svg" option for links-gui (disabled by default) to reflect upstream change. Changes: o Fix "Counld not assing boundary" bug when posting a form The bug was found by Greg Cook o SVG support using the rsvg library o Attach to existing links instance instead of creating a new instance o Detect image type based on the first few bytes rather than on content-type o New glyphs taken from Volker's git o Fixed a bug on Windows where dns lookup got stuck if we closed the primary instance (which resulted in fork) while the lookup was in progress o Use OpenMP in the image scaler o Fixed a bug where the output of font sharpening depended on data read from uninitialized memory o Preallocate downloaded files on Linux o Support libevent and libev o Enable SSL SNI, some servers need it o Test for RAND_* functions in configure because libressl doesn't have them o Support keepalive on https connections
27 lines
668 B
Makefile
27 lines
668 B
Makefile
# $NetBSD: options.mk,v 1.3 2015/07/20 23:03:24 dholland Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.links
|
|
PKG_OPTIONS_LEGACY_OPTS+= links-xz:lzma
|
|
PKG_OPTIONS_LEGACY_OPTS+= links-zlib:zlib
|
|
PKG_SUPPORTED_OPTIONS+= bzip2 lzma zlib
|
|
PKG_SUGGESTED_OPTIONS= bzip2 lzma zlib
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mlzma)
|
|
. include "../../archivers/xz/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-lzma
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mbzip2)
|
|
. include "../../archivers/bzip2/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-bzip2
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mzlib)
|
|
. include "../../devel/zlib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-zlib
|
|
.endif
|