Merge pull request #159 from aerotech/master

_CRT_SECURE_NO_WARNINGS should not generate a warning if already defined
This commit is contained in:
Sergey Lyubka 2013-05-07 03:29:03 -07:00
commit ce26234ace

View File

@ -19,7 +19,9 @@
// THE SOFTWARE.
#if defined(_WIN32)
#if !defined(_CRT_SECURE_NO_WARNINGS)
#define _CRT_SECURE_NO_WARNINGS // Disable deprecation warning in VS2005
#endif
#else
#ifdef __linux__
#define _XOPEN_SOURCE 600 // For flockfile() on Linux