summaryrefslogtreecommitdiff
path: root/libre/p7zip/osversion.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-04-16 18:54:33 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-04-16 19:01:11 -0300
commit5075361afc8a19799e5313510610ad413ff058e0 (patch)
tree8d6d296e46172ba7dd92f6017501c17c84f9a8b7 /libre/p7zip/osversion.patch
parent833a32fa22a55153e08932eb1d1d37a5ca7ab4dc (diff)
p7zip-9.38.1-3.parabola1: updating revision from Arch
Drop the 7zFM graphical frontend; we don't want to have to depend on wxgtk and the interface itself is a bit unintuitive. Alternative GUI archive managers include: file-roller, engrampa, kdeutils-ark.
Diffstat (limited to 'libre/p7zip/osversion.patch')
-rw-r--r--libre/p7zip/osversion.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/libre/p7zip/osversion.patch b/libre/p7zip/osversion.patch
deleted file mode 100644
index 49e0653e4..000000000
--- a/libre/p7zip/osversion.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff -Naur old/CPP/7zip/UI/FileManager/FM.cpp new/CPP/7zip/UI/FileManager/FM.cpp
---- old/CPP/7zip/UI/FileManager/FM.cpp 2015-01-18 08:59:09.000000000 -1000
-+++ new/CPP/7zip/UI/FileManager/FM.cpp 2015-02-09 11:39:55.575712452 -1000
-@@ -348,24 +348,7 @@
-
- bool IsLargePageSupported()
- {
-- #ifdef _WIN64
- return true;
-- #else
-- OSVERSIONINFO versionInfo;
-- versionInfo.dwOSVersionInfoSize = sizeof(versionInfo);
-- if (!::GetVersionEx(&versionInfo))
-- return false;
-- if (versionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || versionInfo.dwMajorVersion < 5)
-- return false;
-- if (versionInfo.dwMajorVersion > 5)
-- return true;
-- if (versionInfo.dwMinorVersion < 1)
-- return false;
-- if (versionInfo.dwMinorVersion > 1)
-- return true;
-- // return IsWow64();
-- return false;
-- #endif
- }
-
- #if 0 //#ifndef UNDER_CE