diff options
author | Adam <Adam@anope.org> | 2014-04-12 21:46:19 -0400 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-04-13 16:07:58 +0200 |
commit | 88dccdd5f04e9244323de0eb197590ab8e7292fd (patch) | |
tree | 27a9d4e71ebec0a58072ce68a90ba0d295ae4d14 /src/modules/extra/m_ldapauth.cpp | |
parent | 6d075c9c2ba9c71223c51357751cbead87fb71d3 (diff) |
Change Windows libraries to be dynamically linked
Diffstat (limited to 'src/modules/extra/m_ldapauth.cpp')
-rw-r--r-- | src/modules/extra/m_ldapauth.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_ldapauth.cpp b/src/modules/extra/m_ldapauth.cpp index 5b3f1e7cc..6c765fb2e 100644 --- a/src/modules/extra/m_ldapauth.cpp +++ b/src/modules/extra/m_ldapauth.cpp @@ -31,8 +31,8 @@ #include <ldap.h> #ifdef _WIN32 -# pragma comment(lib, "ldap.lib") -# pragma comment(lib, "lber.lib") +# pragma comment(lib, "libldap.lib") +# pragma comment(lib, "liblber.lib") #endif /* $ModDesc: Allow/Deny connections based upon answer from LDAP server */ |