summaryrefslogtreecommitdiff
path: root/net-im/telegram-desktop/files/patch-Telegram_SourceFiles_platform_freebsd_info__freebsd.h
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/telegram-desktop/files/patch-Telegram_SourceFiles_platform_freebsd_info__freebsd.h')
-rw-r--r--net-im/telegram-desktop/files/patch-Telegram_SourceFiles_platform_freebsd_info__freebsd.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/net-im/telegram-desktop/files/patch-Telegram_SourceFiles_platform_freebsd_info__freebsd.h b/net-im/telegram-desktop/files/patch-Telegram_SourceFiles_platform_freebsd_info__freebsd.h
deleted file mode 100644
index b3a6b6300afe..000000000000
--- a/net-im/telegram-desktop/files/patch-Telegram_SourceFiles_platform_freebsd_info__freebsd.h
+++ /dev/null
@@ -1,59 +0,0 @@
---- Telegram/SourceFiles/platform/freebsd/info_freebsd.h.orig 2019-07-28 03:19:18 UTC
-+++ Telegram/SourceFiles/platform/freebsd/info_freebsd.h
-@@ -0,0 +1,56 @@
-+/*
-+This file is part of Telegram Desktop,
-+the official desktop application for the Telegram messaging service.
-+
-+For license and copyright information please follow this link:
-+https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
-+*/
-+#pragma once
-+
-+#include "platform/platform_info.h"
-+
-+namespace Platform {
-+
-+inline constexpr bool IsLinux() {
-+ return true;
-+}
-+
-+inline constexpr bool IsLinux32Bit() {
-+#ifdef Q_OS_LINUX32
-+ return true;
-+#else // Q_OS_LINUX32
-+ return false;
-+#endif // Q_OS_LINUX32
-+}
-+
-+inline constexpr bool IsLinux64Bit() {
-+#ifdef Q_OS_LINUX64
-+ return true;
-+#else // Q_OS_LINUX64
-+ return false;
-+#endif // Q_OS_LINUX64
-+}
-+
-+inline constexpr bool IsWindows() { return false; }
-+inline constexpr bool IsWindowsStoreBuild() { return false; }
-+inline bool IsWindowsXPOrGreater() { return false; }
-+inline bool IsWindowsVistaOrGreater() { return false; }
-+inline bool IsWindows7OrGreater() { return false; }
-+inline bool IsWindows8OrGreater() { return false; }
-+inline bool IsWindows8Point1OrGreater() { return false; }
-+inline bool IsWindows10OrGreater() { return false; }
-+inline constexpr bool IsMac() { return false; }
-+inline constexpr bool IsMacOldBuild() { return false; }
-+inline constexpr bool IsMacStoreBuild() { return false; }
-+inline bool IsMac10_6OrGreater() { return false; }
-+inline bool IsMac10_7OrGreater() { return false; }
-+inline bool IsMac10_8OrGreater() { return false; }
-+inline bool IsMac10_9OrGreater() { return false; }
-+inline bool IsMac10_10OrGreater() { return false; }
-+inline bool IsMac10_11OrGreater() { return false; }
-+inline bool IsMac10_12OrGreater() { return false; }
-+inline bool IsMac10_13OrGreater() { return false; }
-+inline bool IsMac10_14OrGreater() { return false; }
-+
-+} // namespace Platform
-+