From 85615992d784756999b45c7321cbdd2c093b6bed Mon Sep 17 00:00:00 2001 From: kaetemi Date: Thu, 25 Sep 2014 19:47:57 +0200 Subject: [PATCH] Remove some debugging --HG-- branch : feature-streamed-package --- code/nel/src/misc/CMakeLists.txt | 2 +- code/nel/src/misc/file.cpp | 2 +- code/nel/src/misc/streamed_package_manager.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/nel/src/misc/CMakeLists.txt b/code/nel/src/misc/CMakeLists.txt index 8494c23a6..7f172bbfe 100644 --- a/code/nel/src/misc/CMakeLists.txt +++ b/code/nel/src/misc/CMakeLists.txt @@ -39,7 +39,7 @@ ENDIF(UNIX) INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR} ${PNG_INCLUDE_DIR} config_file) -TARGET_LINK_LIBRARIES(nelmisc ${CMAKE_THREAD_LIBS_INIT} ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARY} nel_sevenzip) +TARGET_LINK_LIBRARIES(nelmisc ${CMAKE_THREAD_LIBS_INIT} ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARY} ${CURL_LIBRARIES} nel_sevenzip) SET_TARGET_PROPERTIES(nelmisc PROPERTIES LINK_INTERFACE_LIBRARIES "") NL_DEFAULT_PROPS(nelmisc "NeL, Library: NeL Misc") NL_ADD_RUNTIME_FLAGS(nelmisc) diff --git a/code/nel/src/misc/file.cpp b/code/nel/src/misc/file.cpp index b53a660d9..9197b35a1 100644 --- a/code/nel/src/misc/file.cpp +++ b/code/nel/src/misc/file.cpp @@ -206,7 +206,7 @@ bool CIFile::open(const std::string &path, bool text) } else if (pos > 3 && path[pos-3] == 's' && path[pos-2] == 'n' && path[pos-1] == 'p') { - nldebug("Opening a streamed package file"); + // nldebug("Opening a streamed package file"); _IsInXMLPackFile = false; _IsInBigFile = false; diff --git a/code/nel/src/misc/streamed_package_manager.cpp b/code/nel/src/misc/streamed_package_manager.cpp index 250c92d07..ffe33e76c 100644 --- a/code/nel/src/misc/streamed_package_manager.cpp +++ b/code/nel/src/misc/streamed_package_manager.cpp @@ -95,7 +95,7 @@ void CStreamedPackageManager::unloadAll() bool CStreamedPackageManager::getFile(std::string &filePath, const std::string &fileName) { - nldebug("Get file path for streamed file '%s'", fileName.c_str()); + // nldebug("Get file path for streamed file '%s'", fileName.c_str()); TEntries::iterator it = m_Entries.find(fileName); if (it == m_Entries.end())