X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a84d5f9da10b3bed2a1421dd8db0e3fdc0d35daa..616c0d1f3ac084bb92f0a75dc48812e8647f1b22:/include/wx/msw/libraries.h diff --git a/include/wx/msw/libraries.h b/include/wx/msw/libraries.h index 827f682436..9173fe8125 100644 --- a/include/wx/msw/libraries.h +++ b/include/wx/msw/libraries.h @@ -1,37 +1,27 @@ -///////////////////////////////////////////////////////////////////////////// -// Name: wx/msw/libraries.h -// Purpose: Pragmas for linking libs conditionally -// Author: Michael Wetherell -// Modified by: -// RCS-ID: $Id$ -// Copyright: (c) 2005 Michael Wetherell -// Licence: wxWindows licence -///////////////////////////////////////////////////////////////////////////// +/* + * Name: wx/msw/libraries.h + * Purpose: Pragmas for linking libs conditionally + * Author: Michael Wetherell + * Modified by: + * RCS-ID: $Id$ + * Copyright: (c) 2005 Michael Wetherell + * Licence: wxWindows licence + */ #ifndef _WX_MSW_LIBRARIES_H_ #define _WX_MSW_LIBRARIES_H_ -// Notes: -// -// In general the preferred place to add libs is in the bakefiles. This file -// can be used where libs must be added conditionally, for those compilers that -// support a way to do that. +/* + * Notes: + * + * In general the preferred place to add libs is in the bakefiles. This 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") +/* VC++ 5 didn't include oleacc.lib, though it came with the PSDK */ +#if defined __VISUALC__ && (wxUSE_ACCESSIBILITY || __VISUALC__ >= 1200) +#pragma comment(lib, "oleacc") #endif -#endif // _WX_MSW_LIBRARIES_H_ +#endif /* _WX_MSW_LIBRARIES_H_ */