diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | include/services.h | 5 | ||||
-rw-r--r-- | include/sysconf.h.win32 | 1 | ||||
-rw-r--r-- | install.js | 17 | ||||
-rw-r--r-- | version.log | 6 |
5 files changed, 27 insertions, 3 deletions
@@ -4,6 +4,7 @@ Anope Version S V N 08/29 A Added InspIRCd11 vIdent support. [#684] 08/30 A Added support for channel keys to UnrealIRCd 3.2 SVSJOIN command. [#774] 08/31 A Added hostip member to user_ struct so we can now use users' IPs. [ #00] +12/03 A Support for MS VC++ 2008 Express. [#802] 06/15 F Non-existing servers being SQUIT'd when they were juped. [#726] 06/15 F Back online notice being sent to juped servers. [#726] 06/15 F Not informing opers a SQUIT for a juped server was received. [#718] diff --git a/include/services.h b/include/services.h index 8329535bf..19efdedde 100644 --- a/include/services.h +++ b/include/services.h @@ -113,6 +113,11 @@ #include <dirent.h> #endif +#ifdef _WIN32 +/* VS2008 hates having this define before its own */ +#define vsnprintf _vsnprintf +#endif + #ifdef USE_RDB # define MAX_SQL_BUF 4096 #endif diff --git a/include/sysconf.h.win32 b/include/sysconf.h.win32 index 7ad4ddf53..a11694469 100644 --- a/include/sysconf.h.win32 +++ b/include/sysconf.h.win32 @@ -38,7 +38,6 @@ typedef unsigned __int8 u_int8_t; /* Windows/MSVC likes to name things differently */
#define snprintf _snprintf
-#define vsnprintf _vsnprintf
#define popen _popen
#define pclose _pclose
#define ftruncate _chsize
diff --git a/install.js b/install.js index 7d6b6fc1f..66e9943d7 100644 --- a/install.js +++ b/install.js @@ -71,7 +71,22 @@ var installerQuestions = [ ]; var buildPackages = [ - + { + 'name' : 'Microsoft Visual Studio 2008 (New PSDK)', + 'libpaths' : [ + 'Program Files\\Microsoft Visual Studio 9.0\\VC\\Lib', + 'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Lib' + ], + 'incpaths' : [ + 'Program Files\\Microsoft Visual Studio 9.0\\VC\\Include', + 'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Include' + ], + 'nmake' : [ + 'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Bin', + ], + 'additional_switches' : [ '/w' ], + 'installedDrive' : 'C' + }, { 'name' : 'Microsoft Visual Studio 2005 (New PSDK)', 'libpaths' : [ diff --git a/version.log b/version.log index 99b5aa733..85d1ee1ea 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="19" VERSION_EXTRA="-svn" -VERSION_BUILD="1315" +VERSION_BUILD="1316" # $Log$ # +# BUILD : 1.7.19 (1316) +# BUGS : 802 +# NOTES : Added support for MSVC++ 2008 Express (damn names.. gcc-4.4 would be so much shorter) +# # BUILD : 1.7.19 (1315) # BUGS : # NOTES : Left an oops after the last commit :) |