diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | install.js | 20 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 25 insertions, 2 deletions
@@ -2,6 +2,7 @@ Anope Version S V N -------------------- Provided by Anope Dev. <dev@anope.org> - 2006 09/10 A Added SASET AUTOOP to NickServ to match SET AUTOOP. [#588] +09/11 A Added detection in install.js for the latest PlatformSDK. [#596] 08/09 F Fixed port checking when using command line switches. [#575] 08/14 F Fixed db_mysql_query for better robustness. [#585] 08/27 F Fixed mod_current_module being incorrect resulting in segfault. [#593] diff --git a/install.js b/install.js index a68011eb4..8e5b1557d 100644 --- a/install.js +++ b/install.js @@ -105,7 +105,25 @@ var installerQuestions = [ var buildPackages = [ { - 'name' : 'Microsoft Visual Studio 2005', + 'name' : 'Microsoft Visual Studio 2005 (New PSDK)', + 'libpaths' : [ + 'Program Files\\Microsoft Visual Studio 8\\VC\\Lib', + 'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Lib' + ], + 'incpaths' : [ + 'Program Files\\Microsoft Visual Studio 8\\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' + ] + }, + { + 'name' : 'Microsoft Visual Studio 2005 (Old PSDK)', 'libpaths' : [ 'Program Files\\Microsoft Visual Studio 8\\VC\\Lib', 'Program Files\\Microsoft Platform SDK\\Lib' diff --git a/version.log b/version.log index 5cdfd67a6..6998d9b05 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="15" VERSION_EXTRA="-svn" -VERSION_BUILD="1152" +VERSION_BUILD="1153" # $Log$ # +# BUILD : 1.7.15 (1153) +# BUGS : 596 +# NOTES : Applied first part of Heinz's win32 patch +# # BUILD : 1.7.15 (1152) # BUGS : 599 # NOTES : Corrected valid nick characters for /OS SVSNICK by making the bs_bot isvalidnick() macro global via services.h |