aboutsummaryrefslogtreecommitdiff
path: root/ports/proxywrapper/fix-find-libproxy.patch
diff options
context:
space:
mode:
authorshishirb-MSFT <50385517+shishirb-MSFT@users.noreply.github.com>2021-07-07 09:24:53 -0700
committerGitHub <noreply@github.com>2021-07-07 09:24:53 -0700
commitfb0fcec3b25a424e4f70c3dc634c77699bdcfdca (patch)
tree263eb4c46c1e48d04039365c6bab8e923136b81d /ports/proxywrapper/fix-find-libproxy.patch
parenta0fa6aeb82b3956a2f52ec455061ba1916076d53 (diff)
downloadvcpkg-fb0fcec3b25a424e4f70c3dc634c77699bdcfdca.tar.gz
vcpkg-fb0fcec3b25a424e4f70c3dc634c77699bdcfdca.zip
[proxywrapper] Remove proxywrapper package (#18692)
* Remove proxywrapper package * [proxywrapper] Remove from baseline since there is no longer a tested version of the port Co-authored-by: Robert Schumacher <ras0219@outlook.com>
Diffstat (limited to 'ports/proxywrapper/fix-find-libproxy.patch')
-rw-r--r--ports/proxywrapper/fix-find-libproxy.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/ports/proxywrapper/fix-find-libproxy.patch b/ports/proxywrapper/fix-find-libproxy.patch
deleted file mode 100644
index aeb45b98d..000000000
--- a/ports/proxywrapper/fix-find-libproxy.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 5a867a4..3ba85fa 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -5,11 +5,12 @@ project(proxywrapper)
-
- include(GNUInstallDirs)
-
--find_library(proxy REQUIRED)
-+find_package(libproxy REQUIRED)
-
--add_library(proxywrapper SHARED ProxyWrapper.cpp)
-+add_library(proxywrapper ProxyWrapper.cpp)
-
--target_link_libraries(proxywrapper proxy)
-+target_link_libraries(proxywrapper PRIVATE ${LIBPROXY_LIBRARIES})
-+target_include_directories(proxywrapper PRIVATE ${LIBPROXY_INCLUDE_DIR})
-
- install(TARGETS proxywrapper EXPORT proxywrapper DESTINATION ${CMAKE_INSTALL_LIBDIR})
-