pkgsrc/news/slrn/options.mk
wiz 9e5b72fbdf slrn: update to 1.0.3a.
Update provided by Michael Bäuerle via wip.

Version 1.0.3 release notes
===========================

  Version 1.0.3 is primarily a bug-fix release.  See changes.txt for
  details.

  Support for SSLv3 has been disabled since it is to POODLE attacks.

  On 32 bit systems, support has been added for files larger than 2GB.

  Support added for both 32 and 64 bit mingw and cygwin compilers.

Version 1.0.2 release notes
===========================

  Version 1.0.2 is primarily a bug-fix release.  See changes.txt for
  details.

  Note: slang version 2.2.3 or later is required.  Version 2.3.0 is
  the current version.

  The intrinsic function get_header_flags was modified to return the
  full set of flags when called with an optional argument.  Symbolic
  constants for the corresponding flags were added to the interpreter
  interface.

  The value for query_read_group_cutoff was increased to 1000.

  Support for building slrnpull on win32 systems was added.
2018-09-21 14:27:37 +00:00

37 lines
829 B
Makefile

# $NetBSD: options.mk,v 1.3 2018/09/21 14:27:37 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.slrn
PKG_SUPPORTED_OPTIONS= canlock ssl uulib
PKG_SUGGESTED_OPTIONS= canlock ssl uulib
.include "../../mk/bsd.options.mk"
###
### canlock support
###
.if !empty(PKG_OPTIONS:Mcanlock)
. include "../../news/libcanlock/buildlink3.mk"
CONFIGURE_ARGS+= --with-canlock=${BUILDLINK_PREFIX.libcanlock}
.else
CONFIGURE_ARGS+= --without-canlock
.endif
###
### SSL support
###
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
.else
CONFIGURE_ARGS+= --without-ssl
.endif
###
### uulib support
###
.if !empty(PKG_OPTIONS:Muulib)
. include "../../converters/uulib/buildlink3.mk"
CONFIGURE_ARGS+= --with-uu=${BUILDLINK_PREFIX.uulib}
.else
CONFIGURE_ARGS+= --without-uu
.endif