summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2015-03-25 23:36:27 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2015-03-25 23:36:27 +0000
commite25141e3cdb105e86da07b0f9c78d33cfa737a26 (patch)
tree84980e63b2a9a9e7a487e04701d5702945574dfb
parentgames category: Remove $PTHREAD_LIBS (diff)
Fix build with recent opensslv.h.
Notes
Notes: svn path=/head/; revision=382276
-rw-r--r--net/freerdp/files/patch-cmake-FindOpenSSL.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/net/freerdp/files/patch-cmake-FindOpenSSL.cmake b/net/freerdp/files/patch-cmake-FindOpenSSL.cmake
new file mode 100644
index 000000000000..ab1f912cb917
--- /dev/null
+++ b/net/freerdp/files/patch-cmake-FindOpenSSL.cmake
@@ -0,0 +1,11 @@
+--- cmake/FindOpenSSL.cmake.orig 2013-07-10 04:00:21.000000000 -0400
++++ cmake/FindOpenSSL.cmake 2015-03-25 19:26:35.154024000 -0400
+@@ -270,7 +270,7 @@
+ 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 "^#[\t ]+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.