head 1.3; access; symbols pkgsrc-2026Q1:1.3.0.32 pkgsrc-2026Q1-base:1.3 pkgsrc-2025Q4:1.3.0.30 pkgsrc-2025Q4-base:1.3 pkgsrc-2025Q3:1.3.0.28 pkgsrc-2025Q3-base:1.3 pkgsrc-2025Q2:1.3.0.26 pkgsrc-2025Q2-base:1.3 pkgsrc-2025Q1:1.3.0.24 pkgsrc-2025Q1-base:1.3 pkgsrc-2024Q4:1.3.0.22 pkgsrc-2024Q4-base:1.3 pkgsrc-2024Q3:1.3.0.20 pkgsrc-2024Q3-base:1.3 pkgsrc-2024Q2:1.3.0.18 pkgsrc-2024Q2-base:1.3 pkgsrc-2024Q1:1.3.0.16 pkgsrc-2024Q1-base:1.3 pkgsrc-2023Q4:1.3.0.14 pkgsrc-2023Q4-base:1.3 pkgsrc-2023Q3:1.3.0.12 pkgsrc-2023Q3-base:1.3 pkgsrc-2023Q2:1.3.0.10 pkgsrc-2023Q2-base:1.3 pkgsrc-2023Q1:1.3.0.8 pkgsrc-2023Q1-base:1.3 pkgsrc-2022Q4:1.3.0.6 pkgsrc-2022Q4-base:1.3 pkgsrc-2022Q3:1.3.0.4 pkgsrc-2022Q3-base:1.3 pkgsrc-2022Q2:1.3.0.2 pkgsrc-2022Q2-base:1.3 pkgsrc-2019Q2:1.1.0.2 pkgsrc-2019Q2-base:1.1; locks; strict; comment @// @; 1.3 date 2022.04.10.07.47.22; author nia; state Exp; branches; next 1.2; commitid l2QzYKUYuWoRTCzD; 1.2 date 2019.09.16.22.46.21; author nia; state dead; branches; next 1.1; commitid LCRU5SpFMHhAZhDB; 1.1 date 2019.06.17.08.08.31; author nia; state Exp; branches; next ; commitid HJ0nqpv1vH6t3wrB; desc @@ 1.3 log @mumble: missing includes on netbsd @ text @$NetBSD$ Add missing include on NetBSD. --- src/mumble/ServerHandler.cpp.orig 2022-01-18 01:00:00.350014000 +0000 +++ src/mumble/ServerHandler.cpp @@@@ -51,7 +51,7 @@@@ # include # include #else -# if defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) +# if defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) || defined(Q_OS_NETBSD) # include # endif # include @ 1.2 log @mumble: Update to 1.3.0 Full release notes: https://www.mumble.info/blog/mumble-1.3.0-release-announcement/ @ text @d1 1 a1 1 $NetBSD: patch-src_mumble_ServerHandler.cpp,v 1.1 2019/06/17 08:08:31 nia Exp $ d3 3 a5 1 --- src/mumble/ServerHandler.cpp.orig 2017-01-27 06:48:33.000000000 +0000 d7 9 a15 18 @@@@ -37,7 +37,6 @@@@ #include "Cert.h" #include "Connection.h" #include "Database.h" -#include "Global.h" #include "MainWindow.h" #include "Message.h" #include "NetworkConfig.h" @@@@ -47,6 +46,9 @@@@ #include "SSL.h" #include "User.h" +// We define a global macro called 'g'. This can lead to issues when included code uses 'g' as a type or parameter name (like protobuf 3.7 does). As such, for now, we have to make this our last include. +#include "Global.h" + ServerHandlerMessageEvent::ServerHandlerMessageEvent(const QByteArray &msg, unsigned int mtype, bool flush) : QEvent(static_cast(SERVERSEND_EVENT)) { qbaMsg = msg; uiType = mtype; @ 1.1 log @mumble: Fix build with newer protobuf. While here, use a working portaudio library and make it a default. https://github.com/mumble-voip/mumble/pull/3623 @ text @d1 1 a1 1 $NetBSD$ @