Remove use of NDEBUG in dll.h
parent
eb107a6d6f
commit
dc09f7446c
10
dll.h
10
dll.h
|
|
@ -47,15 +47,15 @@
|
|||
|
||||
#ifdef _DLL
|
||||
// cause CRT DLL to be initialized before Crypto++ so that we can use malloc and free during DllMain()
|
||||
#ifdef NDEBUG
|
||||
#pragma comment(lib, "msvcrt")
|
||||
#ifdef CRYPTOPP_DEBUG
|
||||
# pragma comment(lib, "msvcrtd")
|
||||
# pragma comment(lib, "cryptopp")
|
||||
#else
|
||||
#pragma comment(lib, "msvcrtd")
|
||||
# pragma comment(lib, "msvcrt")
|
||||
# pragma comment(lib, "cryptopp")
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#pragma comment(lib, "cryptopp")
|
||||
|
||||
#endif // #ifdef CRYPTOPP_IMPORTS
|
||||
|
||||
#include <new> // for new_handler
|
||||
|
|
|
|||
Loading…
Reference in New Issue