diff options
author | David Tardon <dtardon@redhat.com> | 2012-05-30 12:06:42 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-05-30 12:09:31 +0200 |
commit | 8af6aa628b863b7565d397042fccefb8d78835fa (patch) | |
tree | 8e59226f961c8076b2c5820d51ce91024274fffa /RepositoryExternal.mk | |
parent | 44863e68c1a517fb2179ab8d7f3fe29d68325633 (diff) |
really fix ldap lib. name
Change-Id: If003a4283fb4d0f3edd127e77de6b812501fa65a
Diffstat (limited to 'RepositoryExternal.mk')
-rw-r--r-- | RepositoryExternal.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index 84e368a3acfb..67869be72f18 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -1290,8 +1290,14 @@ $(call gb_LinkTarget_use_external,$(1),openssl) $(call gb_LinkTarget_use_libraries,$(1),\ secur32 \ ws2_32 \ - $(if $(filter YES,$(WITH_LDAP)),ldap50) \ ) + +ifeq ($(WITH_LDAP),YES) +$(call gb_LinkTarget_add_libs,$(1),\ + nsldap32v50.lib \ +) +endif + endif endef |