summaryrefslogtreecommitdiffstats
path: root/external/python3
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2018-01-30 08:28:29 +0100
committerMike Kaganski <mike.kaganski@collabora.com>2018-01-30 13:29:54 +0100
commit37070fc8dae87e0649da056d96a9a9bca810cca5 (patch)
tree71565957aab08132244d58c5789462c2c69f5e7b /external/python3
parenttdf#115090 prevent SfxBaseModel destruction during notifications (diff)
downloadcore-37070fc8dae87e0649da056d96a9a9bca810cca5.tar.gz
core-37070fc8dae87e0649da056d96a9a9bca810cca5.zip
Remove obsolete patch
A leftover from commit 147cb6a2ae63debed3dd500e19b2776cebbc0031 Change-Id: I1744f87dfe508aea6cb17b4411594dad5771b028 Reviewed-on: https://gerrit.libreoffice.org/48877 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'external/python3')
-rw-r--r--external/python3/python-msvc-disable-sse2.patch.123
1 files changed, 0 insertions, 23 deletions
diff --git a/external/python3/python-msvc-disable-sse2.patch.1 b/external/python3/python-msvc-disable-sse2.patch.1
deleted file mode 100644
index 399aa6016dfc..000000000000
--- a/external/python3/python-msvc-disable-sse2.patch.1
+++ /dev/null
@@ -1,23 +0,0 @@
-fdo#82430 disable SSE2 default of MSVC2012
-
---- python3/PCbuild/release.props.old 2014-10-01 23:47:33.348095403 +0200
-+++ python3/PCbuild/release.props 2014-10-01 23:48:05.051092945 +0200
-@@ -9,6 +9,7 @@
- <ItemDefinitionGroup>
- <ClCompile>
- <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+ <EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
- </ClCompile>
- </ItemDefinitionGroup>
- <ItemGroup>
---- python3/PCbuild/make_buildinfo.c.orig 2014-11-03 00:48:58.841000000 +0100
-+++ python3/PCbuild/make_buildinfo.c 2014-11-03 00:49:16.266200000 +0100
-@@ -109,7 +109,7 @@
-
- int main(int argc, char*argv[])
- {
-- char command[CMD_SIZE] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
-+ char command[CMD_SIZE] = "cl.exe -arch:SSE -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
- char tmppath[CMD_SIZE] = "";
- int do_unlink, result;
- char *tmpdir = NULL;