https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285244
--- Comment #2 from Adriaan de Groot <adr...@freebsd.org> --- Here's a minimal program demonstrating the difference; compiles against both Qt5 and Qt6, when doing so against ports it prints different answers: ``` #include <QtCore/QTimeZone> #include <QtCore/QCoreApplication> #include <QtCore/QDebug> int main(int argc, char **argv) { QCoreApplication app(argc,argv); qWarning() << QTimeZone::systemTimeZoneId(); } ``` -- You are receiving this mail because: You are the assignee for the bug.