mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
only link with -lwldap32 if we dont use other LDAP SDKs.
This commit is contained in:
parent
68b215157f
commit
870842ccee
@ -91,7 +91,12 @@ ifdef USE_LDAP_OPENLDAP
|
|||||||
CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
|
CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
|
||||||
DLL_LIBS += -L"$(LDAP_SDK)/lib" -lldap -llber
|
DLL_LIBS += -L"$(LDAP_SDK)/lib" -lldap -llber
|
||||||
endif
|
endif
|
||||||
DLL_LIBS += -lws2_32 -lwinmm -lwldap32
|
ifndef USE_LDAP_NOVELL
|
||||||
|
ifndef USE_LDAP_OPENLDAP
|
||||||
|
DLL_LIBS += -lwldap32
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
DLL_LIBS += -lws2_32 -lwinmm
|
||||||
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
||||||
|
|
||||||
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
||||||
|
@ -99,7 +99,12 @@ ifdef USE_LDAP_OPENLDAP
|
|||||||
CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
|
CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
|
||||||
curl_LDADD += -L"$(LDAP_SDK)/lib" -lldap -llber
|
curl_LDADD += -L"$(LDAP_SDK)/lib" -lldap -llber
|
||||||
endif
|
endif
|
||||||
curl_LDADD += -lws2_32 -lwinmm -lwldap32
|
ifndef USE_LDAP_NOVELL
|
||||||
|
ifndef USE_LDAP_OPENLDAP
|
||||||
|
curl_LDADD += -lwldap32
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
curl_LDADD += -lws2_32 -lwinmm
|
||||||
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
||||||
|
|
||||||
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
||||||
|
Loading…
Reference in New Issue
Block a user