COMP: No need for ldap for now

This commit is contained in:
Andy Cedilnik 2004-10-07 09:44:50 -04:00
parent b727f31589
commit 2aa1a1791f
1 changed files with 8 additions and 1 deletions

View File

@ -63,7 +63,6 @@ SET(libCurl_SRCS
inet_ntop.c inet_ntop.c
inet_pton.c inet_pton.c
krb4.c krb4.c
ldap.c
llist.c llist.c
md5.c md5.c
memdebug.c memdebug.c
@ -86,6 +85,14 @@ SET(libCurl_SRCS
version.c 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 # if we have Kerberos 4, right now this is never on
#OPTION(CURL_KRB4 "Use Kerberos 4" OFF) #OPTION(CURL_KRB4 "Use Kerberos 4" OFF)
IF(CURL_KRB4) IF(CURL_KRB4)