Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-07Auto-update LICENSE.header in source filesDavide Beatrici
2019-10-10qmake: remove Qt 4 logicDavide Beatrici
2019-10-10Set target macOS version to 10.9Davide Beatrici
"libstdc++" was deprecated with Xcode 8 and is not supported in Xcode 10. The new library is "libc++", available with macOS 10.9+. https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes
2019-01-26Merge PR #3589: Crossbuild fixDavide Beatrici
2019-01-25Auto-update LICENSE.header in source filesDavide Beatrici
2019-01-19qmake/compiler.pri: use PKG_CONFIG instead of hardcoding call to pkg-configChris Knadle
Patch supplied by Helmut Grohne <helmut@subdivi.de> in Debian bug #919453 https://bugs.debian.org/919453 Use set variable PKG_CONIFG to allow calling the pkg-config for the architecture supplied in the build environment to allow cross building.
2018-02-19qmake: set custom build folders globally, with separated directories for ↵davidebeatrici
each build file type
2018-01-02Auto-update LICENSE.header in source files.Mikkel Krautz
2017-12-31qmake/compiler.pri: target macOS 10.8 when building against Qt 5.10 or above.Mikkel Krautz
Qt 5.10 uses features available only on macOS 10.8, such as std::future<void>. See the referenced issue for more information. Fixes mumble-voip/mumble#3288
2017-04-17qmake/compiler.pri: add CONFIG(dpkg-buildflags).Mikkel Krautz
Shelling out to dpkg-buildflags to get the preferred build flags is now the way to go on Debian. Previously, our PPA packages used hardening-wrapper to pass the proper hardening flags to the package. That package is no longer available in Debian unstable or Ubuntu zesty. To remedy that situation, we have to add flags ourselves via dpkg-buildflags. This commit implements a new CONFIG flag, CONFIG(dpkg-buildflags) which will query dpkg-buildflags and append the retrieved CFLAGS, CXXFLAGS, CPPFLAGS and LDFLAGS to QMAKE_CFLAGS, QMAKE_CXXFLAGS, QMAKE_CPPFLAGS, QMAKE_LDFLAGS to ensure they are used in the Mumble build.
2017-03-18qmake/compiler.pri: fix value of MUMBLE_ARCH on Qt 5.Mikkel Krautz
The MinGW PR changed MUMBLE_ARCH to use QT_ARCH on Qt 5. However, QT_ARCH uses 'i386' for 32-bit x86, we're currently using 'x86' throughout our .pro files. To fix this problem, we map 'i386' back to 'x86'. This is currently breaking the win32-static (x86) build.
2017-03-17compiler.pri: Use the Unix block for win32-g++ tooDavide Beatrici
So that we use the G++ features when compiling with MinGW.
2017-03-17compiler.pri: Enable SSE and SSE2 for MinGWDavide Beatrici
2017-03-17compiler.pri: Define "MINGW_HAS_SECURE_API" to enable secure functionsDavide Beatrici
MXE's MinGW has the secure functions disabled by default, because their headers check if "MINGW_HAS_SECURE_API" is defined.
2017-03-17compiler.pri: Add CONFIG(symbols) support to win32-g++ build.Davide Beatrici
2017-03-17compiler.pri: Use QT_ARCH instead of QMAKE_target.arch with Qt 5Davide Beatrici
QMAKE_target.arch doesn't return "x86_64" with MinGW x64.
2017-03-05Move .pri files and "toolchain" folder in "qmake"Davide Beatrici