aboutsummaryrefslogtreecommitdiff
path: root/ports/libjpeg-turbo/linux-cmake.patch
diff options
context:
space:
mode:
authorTsukasa Sugiura <t.sugiura0204@gmail.com>2019-05-07 01:54:05 +0900
committerPhil Christensen <philc@microsoft.com>2019-05-06 09:54:05 -0700
commitd53488c65d5124582f5b618a3a7098ff4d22f3bf (patch)
tree97bb5272875c3d7223324e0da88c7fbc96b88266 /ports/libjpeg-turbo/linux-cmake.patch
parent7864caa87a17123f89c02a0cf26cebb6dc06f2c5 (diff)
downloadvcpkg-d53488c65d5124582f5b618a3a7098ff4d22f3bf.tar.gz
vcpkg-d53488c65d5124582f5b618a3a7098ff4d22f3bf.zip
[libjpeg-turbo] Update to libjpeg-turbo 2.0.1 (#4635)
* [libjpeg-turbo] Update to libjpeg-turbo 2.0.1 * [libjpeg-turbo] workaround CMAKE_SYSTEM_PROCESSOR vcpkg bug
Diffstat (limited to 'ports/libjpeg-turbo/linux-cmake.patch')
-rw-r--r--ports/libjpeg-turbo/linux-cmake.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/ports/libjpeg-turbo/linux-cmake.patch b/ports/libjpeg-turbo/linux-cmake.patch
deleted file mode 100644
index 48a04279f..000000000
--- a/ports/libjpeg-turbo/linux-cmake.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c29e604..6e467be 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -29,10 +29,6 @@ pad_number(VERSION_MINOR 3)
- pad_number(VERSION_REVISION 3)
- set(LIBJPEG_TURBO_VERSION_NUMBER ${VERSION_MAJOR}${VERSION_MINOR}${VERSION_REVISION})
-
--if(NOT WIN32)
-- message(FATAL_ERROR "Platform not supported by this build system. Use autotools instead.")
--endif()
--
- string(TIMESTAMP BUILD "%Y%m%d")
-
- # This does nothing except when using MinGW. CMAKE_BUILD_TYPE has no meaning
-@@ -166,8 +162,10 @@ endif()
-
- if(64BIT)
- message(STATUS "64-bit build")
-+ add_compile_options(-DSIZEOF_SIZE_T=8)
- else()
- message(STATUS "32-bit build")
-+ add_compile_options(-DSIZEOF_SIZE_T=4)
- endif()
-
- if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)