projects
/
umurmur.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e700401
)
building with gnutls is now possible
author
Felix Morgner
<felix.morgner@gmail.com>
Fri, 30 Jan 2015 16:25:03 +0000
(17:25 +0100)
committer
Felix Morgner
<felix.morgner@gmail.com>
Sat, 31 Jan 2015 12:12:20 +0000
(13:12 +0100)
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index 712535374c9e29ac95d5f4118d0a0a40c57a02bc..7b784e4760ce6eb9132b283a97172835cd440500 100644
(file)
--- a/
CMakeLists.txt
+++ b/
CMakeLists.txt
@@
-43,7
+43,8
@@
elseif("${SSL}" STREQUAL "polarssl")
elseif("${SSL}" STREQUAL "gnutls")
find_package(GnuTLS REQUIRED)
if(GNUTLS_FOUND)
- set(SSLIMP_LIBRARIES ${GNUTLS_LIBRARIES})
+ set(USE_GNUTLS ON)
+ set(SSLIMP_LIBRARIES "${GNUTLS_LIBRARIES} crypto") # FIXME: port AES128-OCB
set(SSLIMP_INCLUDE_DIR ${GNUTLS_INCLUDE_DIR})
set(SSLIMP_LIBRARY_DIR ${GNUTLS_LIB_DIR})
endif(GNUTLS_FOUND)