forked from SkyFire/MopCore547
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core/Buildsystem: Add suport for vs2015
Core/Dep: remove mysqllite dependency, now user MUST install mysql server to use included libs Also remove lots of warnings in vs2015
- Loading branch information
1 parent
834308c
commit c9320ed
Showing
303 changed files
with
371 additions
and
199,512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* -*- C++ -*- */ | ||
//============================================================================= | ||
/** | ||
* @file config-win32-msvc-11.h | ||
* | ||
* @brief Microsoft Visual C++ 11.0 configuration file. | ||
* | ||
* This file is the ACE configuration file for Microsoft Visual C++ version 11. | ||
* | ||
* @note Do not include this file directly, include config-win32.h instead. | ||
*/ | ||
//============================================================================= | ||
|
||
#ifndef ACE_CONFIG_WIN32_MSVC_11_H | ||
#define ACE_CONFIG_WIN32_MSVC_11_H | ||
#include /**/ "ace/pre.h" | ||
|
||
#ifndef ACE_CONFIG_WIN32_H | ||
#error Use config-win32.h in config.h instead of this header | ||
#endif /* ACE_CONFIG_WIN32_H */ | ||
|
||
#ifndef ACE_WIN32_VC11 | ||
# define ACE_WIN32_VC11 | ||
#endif | ||
|
||
// Until we have specific msvc11 settings, include the msvc10 file | ||
#include "ace/config-win32-msvc-10.h" | ||
|
||
#include /**/ "ace/post.h" | ||
#endif /* ACE_CONFIG_WIN32_MSVC_10_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* -*- C++ -*- */ | ||
//============================================================================= | ||
/** | ||
* @file config-win32-msvc-12.h | ||
* | ||
* @brief Microsoft Visual C++ 12.0 configuration file. | ||
* | ||
* This file is the ACE configuration file for Microsoft Visual C++ version 12. | ||
* | ||
* @note Do not include this file directly, include config-win32.h instead. | ||
*/ | ||
//============================================================================= | ||
|
||
#ifndef ACE_CONFIG_WIN32_MSVC_12_H | ||
#define ACE_CONFIG_WIN32_MSVC_12_H | ||
#include /**/ "ace/pre.h" | ||
|
||
#ifndef ACE_CONFIG_WIN32_H | ||
#error Use config-win32.h in config.h instead of this header | ||
#endif /* ACE_CONFIG_WIN32_H */ | ||
|
||
#ifndef ACE_WIN32_VC12 | ||
# define ACE_WIN32_VC12 | ||
#endif | ||
|
||
// Until we have specific msvc12 settings, include the msvc11 file | ||
#include "ace/config-win32-msvc-11.h" | ||
|
||
#include /**/ "ace/post.h" | ||
#endif /* ACE_CONFIG_WIN32_MSVC_10_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* -*- C++ -*- */ | ||
//============================================================================= | ||
/** | ||
* @file config-win32-msvc-14.h | ||
* | ||
* @brief Microsoft Visual C++ 14.0 configuration file. | ||
* | ||
* This file is the ACE configuration file for Microsoft Visual C++ version 2015. | ||
* | ||
* @note Do not include this file directly, include config-win32.h instead. | ||
*/ | ||
//============================================================================= | ||
|
||
#ifndef ACE_CONFIG_WIN32_MSVC_14_H | ||
#define ACE_CONFIG_WIN32_MSVC_14_H | ||
#include /**/ "ace/pre.h" | ||
|
||
#ifndef ACE_CONFIG_WIN32_H | ||
#error Use config-win32.h in config.h instead of this header | ||
#endif /* ACE_CONFIG_WIN32_H */ | ||
|
||
#ifndef ACE_WIN32_VC14 | ||
# define ACE_WIN32_VC14 | ||
#endif | ||
|
||
// Until we have specific msvc14 settings, include the msvc12 file | ||
#include "ace/config-win32-msvc-12.h" | ||
|
||
#define ACE_HAS_POSIX_TIME 1 | ||
#define ACE_LACKS_TIMESPEC_T 1 | ||
|
||
// According to MS the Visual Studio 2015 C-runtime has a | ||
// C99 compliant vsnprintf/vsnwprintf, this is a change compared to | ||
// previous versions | ||
#define ACE_HAS_C99_VSNPRINTF | ||
#define ACE_HAS_C99_VSNWPRINTF | ||
|
||
// Visual Studio 2015 has 3 parameter wcstok | ||
#define ACE_HAS_3_PARAM_WCSTOK | ||
|
||
// Visual Studio 2015 has adequate C++11 support | ||
#define ACE_HAS_CPP11 | ||
|
||
#include /**/ "ace/post.h" | ||
#endif /* ACE_CONFIG_WIN32_MSVC_14_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.