head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.32 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.30 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.28 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.26 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.24 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.22 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.20 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.18 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.16 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.14 pkgsrc-2023Q4-base:1.1 pkgsrc-2023Q3:1.1.0.12 pkgsrc-2023Q3-base:1.1 pkgsrc-2023Q2:1.1.0.10 pkgsrc-2023Q2-base:1.1 pkgsrc-2023Q1:1.1.0.8 pkgsrc-2023Q1-base:1.1 pkgsrc-2022Q4:1.1.0.6 pkgsrc-2022Q4-base:1.1 pkgsrc-2022Q3:1.1.0.4 pkgsrc-2022Q3-base:1.1 pkgsrc-2022Q2:1.1.0.2 pkgsrc-2022Q2-base:1.1; locks; strict; comment @// @; 1.1 date 2022.04.25.05.26.49; author markd; state Exp; branches; next ; commitid DJVJGfnsjN4ICxBD; desc @@ 1.1 log @kwayland: update to 5.93.0 5.81.0 Bump required PlasmaWaylandProtocols Fix DTD check errors and a typo Add the activity management protocol client implementation 5.82.0 Add VRR to output device and management Use new version-controlled enumerator deprecation warning macros Add support for overscan Bump plasma-wayland-protocols dependency to 1.2.1 Bump required PlasmaWaylandProtocols 5.83.0 Use protocol files from plasma-wayland-protocols Update Plasma Wayland Protocols dependency to 1.3.0 Do not emit Surface::leave twice when an output is removed 5.85.0 Fix check for mmap failure 5.86.0 Implement set_frost in contrast protocol Implement org_kde_plasma_window_management::send_to_output Decouple activation feedback from plasma window management global plasma-window-management: Support new activation concepts 5.88.0 Correct the eglQueryWaylandBufferWL_func prototype 5.90.0 Make linux/input.h a hard dependency 5.91.0 Ensure when unmapped is emitted, ::windows() will not contain unmapped window Don't use hard-coded versions with targets and variables Install pkg-config file Deprecate PlasmaWindowModel::requestVirtualDesktop() kwayland server has been moved to plasma kwayland-server since 5.73 src/client: wrap deprecated methods in deprecation macros 5.92.0 Check executables exist in PATH before passing them to QProcess 5.93.0 Install Client headers in a dirs hierarchy matching the C++ namespaces We don't actually need Qt6WaylandCompositor @ text @$NetBSD$ linux/input.h only for linux --- src/client/fakeinput.cpp.orig 2022-04-02 10:04:14.000000000 +0000 +++ src/client/fakeinput.cpp @@@@ -10,7 +10,9 @@@@ #include #include +#ifdef Q_OS_LINUX #include +#endif #include @@@@ -98,13 +100,19 @@@@ void FakeInput::Private::sendPointerButt uint32_t b = 0; switch (button) { case Qt::LeftButton: +#ifdef BTN_LEFT b = BTN_LEFT; +#endif break; case Qt::RightButton: +#ifdef BTN_RIGHT b = BTN_RIGHT; +#endif break; case Qt::MiddleButton: +#ifdef BTN_MIDDLE b = BTN_MIDDLE; +#endif break; default: // TODO: more buttons, check implementation in QtWayland @