security/gnutls: remove unknown configure options

The option --enable-lzo was removed in 2011, the option
--enable-local-libopts was removed in January 2022.

Bump PKGREVISION.
This commit is contained in:
rillig 2022-02-06 20:54:24 +00:00
parent dfcd1085ac
commit d1fbe9bc09
2 changed files with 4 additions and 12 deletions

View file

@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.227 2022/01/19 21:11:11 adam Exp $
# $NetBSD: Makefile,v 1.228 2022/02/06 20:54:24 rillig Exp $
DISTNAME= gnutls-3.7.3
PKGREVISION= 1
CATEGORIES= security devel
MASTER_SITES= https://www.gnupg.org/ftp/gcrypt/gnutls/v${PKGVERSION_NOREV:R}/
EXTRACT_SUFX= .tar.xz
@ -26,7 +27,6 @@ CONFIGURE_ARGS+= --without-tpm
CONFIGURE_ARGS+= --disable-valgrind-tests
CONFIGURE_ARGS+= --with-default-trust-store-file=${PREFIX}/share/mozilla-rootcerts/cacert.pem
CONFIGURE_ARGS+= --with-libintl-prefix=${BUILDLINK_PREFIX.gettext}
CONFIGURE_ARGS+= --enable-local-libopts
# Assembler support is broken for SunOS in 3.2.9.
CONFIGURE_ARGS.SunOS+= --disable-hardware-acceleration
CONFIGURE_ARGS.FreeBSD+= ac_cv_type_max_align_t=yes

View file

@ -1,8 +1,7 @@
# $NetBSD: options.mk,v 1.4 2022/01/03 12:36:53 wiz Exp $
# $NetBSD: options.mk,v 1.5 2022/02/06 20:54:24 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnutls
PKG_SUPPORTED_OPTIONS= dane guile lzo
PKG_SUGGESTED_OPTIONS= lzo
PKG_SUPPORTED_OPTIONS= dane guile
.include "../../mk/bsd.options.mk"
@ -21,10 +20,3 @@ PLIST_SRC+= PLIST.guile
.else
CONFIGURE_ARGS+= --disable-guile
.endif
.if !empty(PKG_OPTIONS:Mlzo)
.include "../../archivers/lzo/buildlink3.mk"
CONFIGURE_ARGS+= --enable-lzo
.else
CONFIGURE_ARGS+= --disable-lzo
.endif