During an exp-run for llvm 15 (see bug 265425), it turned out that
japanese/kakasi failed to build with clang 15:
kanjiio.c:1083:11: error: incompatible integer to pointer conversion assigning to 'iconv_t' (aka 'struct __tag_iconv_t *') from 'int' [-Wint-conversion]
fromutf8 = -1;
^ ~~
kanjiio.c:1087:9: error: incompatible integer to pointer conversion assigning to 'iconv_t' (aka 'struct __tag_iconv_t *') from 'int' [-Wint-conversion]
toutf8 = -1;
^ ~~
This is because 'fromutf8' and 'toutf8' are of pointer type, not int.
Add a cast to silence the warning.
PR: 268815
Approved by: portmgr (tcberner)
MFH: 2023Q1
During an exp-run for llvm 15 (see bug 265425), it turned out that
x11-toolkits/gtk-sharp20 failed to build with clang 15:
windowmanager.c:113:12: error: incompatible integer to pointer conversion assigning to 'gpointer' (aka 'void *') from 'long' [-Wint-conversion]
list [i] = data [i];
^ ~~~~~~~~
This is because gdk_property_get() always returns an array of longs, and
these have to be cast to whatever the desired outcome type is.
PR: 268812
Approved by: portmgr (tcberner)
MFH: 2023Q1
During an exp-run for llvm 15 (see bug 265425), it turned out that
x11/mate-panel failed to build with clang 15:
clock-location.c:454:22: error: incompatible pointer to integer conversion assigning to 'glong' (aka 'long') from 'char *(int, int)' [-Wint-conversion]
sys_timezone = timezone;
^ ~~~~~~~~
clock-location.c:462:24: error: incompatible pointer to integer conversion assigning to 'glong' (aka 'long') from 'char *(int, int)' [-Wint-conversion]
local_timezone = timezone;
^ ~~~~~~~~
This is because 'timezone' as a global external variable does not exist
on FreeBSD: it is a glibc-ism. Use struct tm's tm_gmtoff field instead,
which has its sign reversed from the glibc global. There is also no need
to manually account for DST, as tm_gmtoff includes that.
PR: 268795
Approved by: portmgr (tcberner)
MFH: 2023Q1
webtrees is the web's leading online collaborative genealogy application.
webtrees works from standard GEDCOM files, and is therefore compatible
with every major desktop application. webtrees aims to be efficient and
effective by using the right combination of third-party tools, design
techniques and open standards.
WWW: http://webtrees.net/
PR: 267463
This patch updates the port to fix the fact that the code calls
XtAppInitialize() which eats the command-line args and so causes ps(1)
to not display them. The command-line args are now saved before and restored
after the call to XtAppInitialize().
Also, correct the display of the units of total byte counts to show as "B",
"kB", "GB" etc, rather than the imprecise/incorrect "b", "k", "G" etc.
PR: 267710
Approved by: J.R. Oldroyd (maintainer)
Changes:
- Unexpected reindexing occurs when using uptime as the reindex method
- spine does not compile with SQL TLS deactivated
- Spine should prevent the script server from connecting to remote when offline
- Improve Script Server Timeout Logging
- Add SQL_NO_CACHE to Spine Queries
ChangeLog: https://www.keycloak.org/2023/01/keycloak-2003-released.html
* User role mapping tab: Show effective client roles for a user keycloak-ui
section/users
* ProviderConfigProperty.MAP_TYPE error in new UI keycloak-ui section/identity
providers
* Unable to turn on "Bypass identity confirmation" keycloak-ui
section/authentication
* Adding Form sub-flow broken on admin v2 keycloak-ui section/authentication
* Custom User Provider SPI: There are no settings to configure the periodically
synchronization of users keycloak-ui section/user federation
* Assign roles to account - paging doesn't work keycloak-ui section/users
* Realm selector requires two clicks to select something keycloak-ui
section/realms
* User management -> User in 2 subgroups with the same group name assignment
does not work keycloak-ui section/users
* Invalid language tag error when changing realm localization settings
keycloak-ui section/realm settings
* `Missing ":type" param` in the Events page when there are Client Scope
events keycloak-ui section/events
* Import client broken keycloak-ui section/clients
* New Admin Console only, unable to add client profile in the first client
policy keycloak-ui section/realm settings
* Disabling hostname strict in prod doesn't disable https keycloak dist/quarkus
* snakeyaml vulnerability GHSA-3mc7-4q67-w48m impacting CLI keycloak admin/cli
* The redirect URI cannot be verified during logout in the case when client
was removed keycloak oidc
* Wrong auth session id being used when validating auth session id cookies
keycloak core
* Update XStream to 1.4.20 to fix CVE-2022-40151 & CVE-2022-41966 keycloak
* Timeout when executing command PutMapCommand keycloak storage
* Set OkHttp to 4.10.0 in parent pom keycloak
* Lack of validation of access token on client registrations endpoint keycloak
oidc
PR: 268939
Reported by: freebsd@rheinwolf.de (maintainer)
MFH: 2023Q1 (bugfix, security fixes)
Security: CVE-2022-40151, CVE-2022-41966