Changeset 272
- Timestamp:
- 06/10/10 21:59:32 (20 months ago)
- Files:
-
- 1 added
- 10 edited
-
(root) (modified) (1 prop)
-
branches/stable/AutoBuild.h (modified) (1 diff)
-
branches/stable/changelog (modified) (1 diff)
-
branches/stable/include/pdh/core.hpp (modified) (1 diff)
-
branches/stable/modules/CheckDisk/CheckDisk.cpp (modified) (1 diff)
-
branches/stable/modules/CheckSystem/CheckSystem.cpp (modified) (1 diff)
-
branches/stable/modules/NSClientListener/NSClientListener.cpp (modified) (1 diff)
-
trunk/CMakeLists.txt (modified) (2 diffs)
-
trunk/build.cmake (modified) (2 diffs)
-
trunk/libs/cryptopp/CMakeLists.txt (modified) (1 diff)
-
trunk/modules/CheckDisk/CMakeLists.txt (added)
Legend:
- Unmodified
- Added
- Removed
-
-
Property
svn:ignore
set to
build
rels
-
Property
svn:ignore
set to
-
branches/stable/AutoBuild.h
r268 r272 3 3 // change the FALSE to TRUE for autoincrement of build number 4 4 #define INCREMENT_VERSION TRUE 5 #define FILEVER 0,3,8,7 66 #define PRODUCTVER 0,3,8,7 67 #define STRFILEVER _T("0.3.8.7 6")8 #define STRPRODUCTVER _T("0.3.8.7 6")9 #define STRPRODUCTDATE _T("2010-0 5-27")5 #define FILEVER 0,3,8,78 6 #define PRODUCTVER 0,3,8,78 7 #define STRFILEVER _T("0.3.8.78") 8 #define STRPRODUCTVER _T("0.3.8.78") 9 #define STRPRODUCTDATE _T("2010-06-02") 10 10 #endif // AUTOBUILD_H -
branches/stable/changelog
r268 r272 6 6 * Fix depend onservice LanManWorkStation (old win) 7 7 * Fix RtlStringFromGUID problem on NT4 8 9 2010-06-02 MickeM 10 * Fixed a few issues with listCounterInstances 8 11 9 12 2010-05-25 MickeM - 0.3.8 (take 3) -
branches/stable/include/pdh/core.hpp
r240 r272 183 183 static std::list<std::wstring> build_list(TCHAR *buffer, DWORD bufferSize) { 184 184 std::list<std::wstring> ret; 185 if (bufferSize == 0) 186 return ret; 185 187 DWORD prevPos = 0; 186 188 for (unsigned int i = 0; i<bufferSize-1; i++) { -
branches/stable/modules/CheckDisk/CheckDisk.cpp
r267 r272 231 231 ) 232 232 drives.push_back(DriveContainer(drv, tmpObject.warn, tmpObject.crit)); 233 else 234 NSC_DEBUG_MSG_STD(_T("Ignoring drive: ") + drv); 233 235 234 236 buffer = &buffer[drv.size()]; -
branches/stable/modules/CheckSystem/CheckSystem.cpp
r265 r272 1162 1162 msg += (*it); 1163 1163 } 1164 if (msg.empty()) { 1165 msg = _T("ERROR: No instances found"); 1166 return NSCAPI::returnUNKNOWN; 1167 } 1164 1168 } catch (const PDH::PDHException e) { 1165 1169 msg = _T("ERROR: Failed to enumerate counter instances: " + e.getError()); -
branches/stable/modules/NSClientListener/NSClientListener.cpp
r173 r272 244 244 case REQ_COUNTER: 245 245 case REQ_FILEAGE: 246 case REQ_INSTANCES: 246 247 return strEx::wstring_to_string(message); 247 248 -
trunk/CMakeLists.txt
r271 r272 37 37 SET(PROTOBUF_DIR "${INC_PROTOBUF_DIR}" CACHE PATH "Path to google protocol buffer root") 38 38 IF(WIN32 AND MSVC) 39 SET(PROTOBUF_INCLUDE_DIR "${PROTOBUF_DIR}/src" CACHE PATH"Path to google protocol buffer source")40 SET(PROTOBUF_LIBRARYDIR "${PROTOBUF_DIR}/vsprojects/ Release")41 SET(PROTOBUF_BINARYDIR "${PROTOBUF_DIR}/vsprojects/ Release")39 SET(PROTOBUF_INCLUDE_DIR "${PROTOBUF_DIR}/src" "Path to google protocol buffer source") 40 SET(PROTOBUF_LIBRARYDIR "${PROTOBUF_DIR}/vsprojects/x64/Release") 41 SET(PROTOBUF_BINARYDIR "${PROTOBUF_DIR}/vsprojects/debug") 42 42 ELSE(WIN32 AND MSVC) 43 43 # TODO … … 169 169 170 170 SET(NSCP_GLOBAL_DEFINES ${NSCP_GLOBAL_DEFINES} -DUNICODE -D_UNICODE -D_WIN32_WINNT=0x0400) 171 # TODO: Fix this issue! (crypto++ and masm) 172 IF (WIN32) 173 SET(NSCP_GLOBAL_DEFINES ${NSCP_GLOBAL_DEFINES} -DCRYPTOPP_DISABLE_ASM) 174 ENDIF (WIN32) 175 171 176 172 177 IF(CMAKE_HOST_UNIX) -
trunk/build.cmake
r271 r272 9 9 #SET(Boost_VERSION 1.40) 10 10 11 SET(INC_NSCP_LIBRARYDIR C:/source/lib/x 86)11 SET(INC_NSCP_LIBRARYDIR C:/source/lib/x64) 12 12 SET(INC_NSCP_INCLUDEDIR C:/source/include) 13 13 … … 19 19 20 20 SET(INC_PROTOBUF_DIR "c:/source/libraries/protobuf-2.3.0") 21 21 22 SET(INC_CRYPTOPP_DIR "c:/source/libraries/cryptopp-5.6.0") 22 23 -
trunk/libs/cryptopp/CMakeLists.txt
r255 r272 29 29 # TODO add asm echo $(.source)/x64masm.asm ; 30 30 # obj x64masm.obj : $(.source)/x64masm.asm ; 31 #enable_language(ASM_MASM) 32 #if(CMAKE_ASM_MASM_COMPILER_WORKS) 33 # set(can_use_assembler TRUE) 34 # SET(cryptopp_SOURCES ${cryptopp_SOURCES} "${CRYPTOPP_SOURCE_DIR}/x64masm.asm") 35 #else(CMAKE_ASM_MASM_COMPILER_WORKS) 36 # MESSAGE(WARNING "Failed to find mnasm") 37 #endif(CMAKE_ASM_MASM_COMPILER_WORKS) 38 IF (WIN32) 39 ADD_DEFINITIONS (-DCRYPTOPP_DISABLE_ASM) 40 SET(Cryptopp_DEFINES -DCRYPTOPP_DISABLE_ASM) 41 ENDIF (WIN32) 31 42 32 43 ADD_LIBRARY (cryptopp SHARED ${cryptopp_SOURCES})
Note: See TracChangeset
for help on using the changeset viewer.







