aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2015-01-30 10:11:42 +0000
committerMike McQuaid2015-01-30 10:11:42 +0000
commit0b16961bd31be7271abb540f580263ee85b796b1 (patch)
tree51bbe43f73ab05bb3ae927c7746f0a24c773312e /Library
parent41529fd4abe4c6e0a5f59e265d03a015d92d0e06 (diff)
downloadhomebrew-0b16961bd31be7271abb540f580263ee85b796b1.tar.bz2
cmake: remove unused embedded patch .
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cmake.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Formula/cmake.rb b/Library/Formula/cmake.rb
index a31313262..4a8a96136 100644
--- a/Library/Formula/cmake.rb
+++ b/Library/Formula/cmake.rb
@@ -117,19 +117,3 @@ class Cmake < Formula
system "#{bin}/cmake", "."
end
end
-
-__END__
-
-diff --git a/Modules/FindOpenSSL.cmake b/Modules/FindOpenSSL.cmake
-index 340b417..6b4f985 100644
---- a/Modules/FindOpenSSL.cmake
-+++ b/Modules/FindOpenSSL.cmake
-@@ -279,7 +279,7 @@ if (OPENSSL_INCLUDE_DIR)
- set(OPENSSL_VERSION "${_OPENSSL_VERSION}")
- elseif(OPENSSL_INCLUDE_DIR AND EXISTS "${OPENSSL_INCLUDE_DIR}/openssl/opensslv.h")
- file(STRINGS "${OPENSSL_INCLUDE_DIR}/openssl/opensslv.h" openssl_version_str
-- REGEX "^#define[\t ]+OPENSSL_VERSION_NUMBER[\t ]+0x([0-9a-fA-F])+.*")
-+ REGEX "^# *define[\t ]+OPENSSL_VERSION_NUMBER[\t ]+0x([0-9a-fA-F])+.*")
-
- # The version number is encoded as 0xMNNFFPPS: major minor fix patch status
- # The status gives if this is a developer or prerelease and is ignored here.