]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/libraries.h
don't test for __WIN95__ which doesn't exist any more; don't do compiler checks here...
[wxWidgets.git] / include / wx / msw / libraries.h
index 827f6824363ee238a0ded412820428d53c387d9e..20805529d037e34ee072070a4b01f39df7527304 100644 (file)
 // can be used where libs must be added conditionally, for those compilers that
 // support a way to do that.
 
-// Newer versions of VC++ support the /GS option which add buffer overflow
-// checks. This adds into the generated code calls to support functions in in
-// the runtime library.
-//
-// Starting with VC++ 8 this option is on by default, and code such as the
-// runtime library that we need to link is compiled with it. Some versions of
-// the runtime library don't include the support code, and a separate library
-// bufferoverflowu.lib must be linked. If all versions of VC++ 8 that can
-// compile wxWidgets have this lib we can link it here, if not then this will
-// have to be removed.
-//
-// More information: http://support.microsoft.com/?id=894573
-
-#if defined __VISUALC__ && __VISUALC__ >= 1400
-    #pragma comment(lib,"bufferoverflowu.lib")
-#endif
-
 #endif // _WX_MSW_LIBRARIES_H_