diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-07 13:44:50 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-07 13:44:50 (GMT) |
commit | 2aa1a1791f94e06ae106ca1264bb7cb11a80ce7b (patch) | |
tree | 8302c10b56d1e58d5e2f2a5a0905f9f948e145f2 /Source | |
parent | b727f3158935a597b8e6f8944c60eec18a9b846c (diff) | |
download | CMake-2aa1a1791f94e06ae106ca1264bb7cb11a80ce7b.zip CMake-2aa1a1791f94e06ae106ca1264bb7cb11a80ce7b.tar.gz CMake-2aa1a1791f94e06ae106ca1264bb7cb11a80ce7b.tar.bz2 |
COMP: No need for ldap for now
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/Curl/CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Source/CTest/Curl/CMakeLists.txt b/Source/CTest/Curl/CMakeLists.txt index 32145ff..deadb96 100644 --- a/Source/CTest/Curl/CMakeLists.txt +++ b/Source/CTest/Curl/CMakeLists.txt @@ -63,7 +63,6 @@ SET(libCurl_SRCS inet_ntop.c inet_pton.c krb4.c - ldap.c llist.c md5.c memdebug.c @@ -86,6 +85,14 @@ SET(libCurl_SRCS version.c ) +SET(CURL_DISABLE_LDAP 1) +IF(NOT CURL_DISABLE_LDAP) + SET(libCurl_SRCS + ${libCurl_SRCS} + ldap.c + ) +ENDIF(NOT CURL_DISABLE_LDAP) + # if we have Kerberos 4, right now this is never on #OPTION(CURL_KRB4 "Use Kerberos 4" OFF) IF(CURL_KRB4) |