diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-12-22 19:37:06 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-12-22 19:37:06 (GMT) |
commit | 3cb2a0ffa6f87954825cb311999fde1902b576de (patch) | |
tree | 25c17b2af4e41bbee08606554b765f3e2d2dbcf0 /Source/cmSystemTools.h | |
parent | 766ef1d01136747605b58c243e6074dda00667f8 (diff) | |
download | CMake-3cb2a0ffa6f87954825cb311999fde1902b576de.zip CMake-3cb2a0ffa6f87954825cb311999fde1902b576de.tar.gz CMake-3cb2a0ffa6f87954825cb311999fde1902b576de.tar.bz2 |
Move cURL dependent code out of CMakeLib to fix complex tests.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 7bdc14f..e5bb305 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -342,18 +342,6 @@ public: static std::string RelativePath(const char* local, const char* remote); #ifdef CMAKE_BUILD_WITH_CMAKE - enum HTTPMethod { - HTTP_GET, - HTTP_POST - }; - - /** - * Perform an HTTP request. - */ - static int HTTPRequest(std::string url, HTTPMethod method, - std::string& response, - std::string fields = "", int timeout = 10); - /** Remove an environment variable */ static bool UnsetEnv(const char* value); |