372332163d
Provided by Michael Bäuerle in pkgsrc-wip. Backported patches from 0.17 branch: -------------------------------------------------------------------------------- Bugfix: Configuration test result for inttypes.h presence is used, reintroduce the test Bugfix: BSD version of ntohl() for old systems now working again Modified LaTeX documentation to work with recent doxygen -------------------------------------------------------------------------------- Changelog: -------------------------------------------------------------------------------- V0.16 Bugfix: Supersede now preserves Followup-To header field Bugfix: The code that generates the attribute "reply to own article" now checks the Message-IDs too (to avoid errors if the parent article is missing in the hierarchy) Bugfix: Header parser and MIME parser fixed to correctly handle MIME entity delimiters (for boundary strings that contain spaces) Bugfix: Removed Unicode range U+E0020 ... U+E007E from rejected control characters (deprecated since Unicode 5.1, reintroduced for different purpose since Unicode 9.0) (Reported by Marcel Logen) TLS: Protocol version TLSv1.3 according to RFC8446 is now supported (requires at least OpenSSL 1.1.1) CORE module now supports multiple article hierarchies Unicode database updated to version 11.0.0 IBM852 to UTF-8 converter added If the OS doesn't report IPv6 as available, usage can now be forced with the option 'CFG_FORCE_IP6' Support for reproducible builds added (option 'CFG_REPRODUCIBLE') Some checks for system header files removed to speed up configuration (Build fails in any case if they are missing) Documentation updated --------------------------------------------------------------------------------
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# $NetBSD: options.mk,v 1.2 2019/01/21 12:03:41 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.flnews
|
|
PKG_SUPPORTED_OPTIONS= inet6 nls xdbe xdg-utils
|
|
PKG_SUGGESTED_OPTIONS= inet6 nls xdbe xdg-utils
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
# POSIX.1c-1996 Threads (THR) extension is required
|
|
PTHREAD_OPTS+= require
|
|
|
|
# inet6: Optional support for Internet Protocol Version 6 (IPv6)
|
|
# Requires an OS with POSIX.1-2001 API and IP6 option
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
FLNEWS_OPT_DISABLE_IP6= 0
|
|
.else
|
|
FLNEWS_OPT_DISABLE_IP6= 1
|
|
.endif
|
|
|
|
# nls: Optional support for National Language Support (NLS)
|
|
# Requires an OS with X/Open XSI extension API (SUSv2) and the gencat utility
|
|
# Note: Only locales with UTF-8, ISO-8859-1 or US-ASCII codeset are supported!
|
|
PLIST_VARS+= nls
|
|
.if !empty(PKG_OPTIONS:Mnls)
|
|
PLIST.nls= yes
|
|
FLNEWS_OPT_DISABLE_NLS= 0
|
|
.else
|
|
FLNEWS_OPT_DISABLE_NLS= 1
|
|
.endif
|
|
|
|
# xdbe: Optional support for X11 Double Buffer Extension (XDBE)
|
|
# This option should be disabled for slow machines
|
|
.if !empty(PKG_OPTIONS:Mxdbe)
|
|
FLNEWS_OPT_DISABLE_XDBE= 0
|
|
.else
|
|
FLNEWS_OPT_DISABLE_XDBE= 1
|
|
.endif
|
|
|
|
# xdg-utils: Create dependency for xdg-utils (Portland project)
|
|
# xdg-utils are used for WWW-Browser and eMail redirection
|
|
.if !empty(PKG_OPTIONS:Mxdg-utils)
|
|
DEPENDS+= xdg-utils>=1.1:../../misc/xdg-utils
|
|
.endif
|