5.5.10 and 5.5.11 adds support for nushell.
port-wise regen patch-src_args_c and remove a call to
`reset_color_pairs' that our ncurses doesn't provide.
Drop a patch thanks to upstream changes.
Don't supply build options that are now enabled by default.
New default build options:
SQLITE_ENABLE_BYTECODE_VTAB
SQLITE_ENABLE_DBPAGE_VTAB
SQLITE_ENABLE_FTS4
SQLITE_ENABLE_MATH_FUNCTIONS
Add build option SQLITE_MAX_ALLOCATION_SIZE,
set to 0x00fffeff (16M - 1 - 256), inspired by default 0x7ffffeff.
https://sqlite.org/compile.html
PostgreSQL port where it's used for building plpython, so remove the build
dependency (and as a bonus, it wasn't synced with the py27->py3 switch,
so this gets rid of another py27 user).
changelog:
Installation and configuration changes
* Renamed plugin module for dNSDomain/dNSDomain2 schema to
web2ldap.app.plugin.dnsdomain. You might have to adjust your plugin
import configuration in web2ldapcnf.plugins.
New features/enhancements
* Registered UCS attribute lockTime with plugin class SecondsSinceEpoch.
* Registered MS AD attribute msRTCSIP-PrimaryUserAddress with plugin
class Uri.
* Added new plugin module web2ldap.app.plugins.dnszone (web2ldap#60).
Bug fixes
* Fixed returning the diagnosticMessage text as error message in
case no more information could be extracted from it.
* Fixed plugin class for GUID values in MS AD to use little-endian
encoding/decoding.
Refactoring
* Renamed entry-point sub-module to web2ldap.__main__.
* Abandoned obsolete optimization with codecs.lookup() (closes#58).
ok sthen
If we need to make an exception we can do it and properly document the
reason but by default we should just use the default login class.
rc.d uses daemon or the login class provided in login.conf.d so this has
no impact there.
discussed with sthen@, tb@ and robert@
praying that my grep/sed skills did not break anything and still
believing in portbump :-)
Add build options (https://sqlite.org/compile.html):
-DSQLITE_ENABLE_API_ARMOR
Enables code that attempts to detect misuse of the SQLite API.
-DSQLITE_ENABLE_GEOPOLY
Enable the Geopoly extension.