From 2aa1a1791f94e06ae106ca1264bb7cb11a80ce7b Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Thu, 7 Oct 2004 09:44:50 -0400 Subject: [PATCH] COMP: No need for ldap for now --- Source/CTest/Curl/CMakeLists.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Source/CTest/Curl/CMakeLists.txt b/Source/CTest/Curl/CMakeLists.txt index 32145ff22..deadb9609 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)