74119bef07
Note: ABI issue Changes in libsoup from 2.54.0.1 to 2.54.1: * *** IMPORTANT *** Fixed an ABI break in 2.54.0 caused by adding a member to SoupAuthClass; 2.54.1 is ABI-compatible with 2.53.92 and earlier, but NOT with the anomalous 2.54.0. If you built packages against 2.54.0, you will need to rebuild them against 2.54.1. * Fixed NTLM authentication when ntlm_auth from the latest version of Samba is present. [#765106, Milan Crha] * Updates to MSVC build, including for GSS-API support [Chun-wei Fan] * Updated translations: Friulian
15 lines
390 B
Makefile
15 lines
390 B
Makefile
# $NetBSD: options.mk,v 1.4 2016/05/03 11:37:39 prlw1 Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.libsoup
|
|
PKG_SUPPORTED_OPTIONS= gssapi
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgssapi)
|
|
. include "../../mk/krb5.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-gssapi
|
|
CONFIGURE_ARGS+= --with-krb5-config=${KRB5_CONFIG}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gssapi
|
|
.endif
|