Changeset 3030
- Timestamp:
- 25/10/2011 23:03:07 (7 months ago)
- Location:
- box/trunk/lib
- Files:
-
- 5 edited
-
common/BannerText.h (modified) (1 diff)
-
common/BoxPlatform.h (modified) (1 diff)
-
common/MainHelper.h (modified) (2 diffs)
-
common/Utils.cpp (modified) (1 diff)
-
server/Daemon.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/lib/common/BannerText.h
r2616 r3030 11 11 #define BANNERTEXT__H 12 12 13 #ifdef NEED_BOX_VERSION_H 14 # include "BoxVersion.h" 15 #endif 16 13 17 #define BANNER_TEXT(UtilityName) \ 14 18 "Box " UtilityName " v" BOX_VERSION ", (c) Ben Summers and " \ 15 "contributors 2003-201 0"19 "contributors 2003-2011" 16 20 17 21 #endif // BANNERTEXT__H -
box/trunk/lib/common/BoxPlatform.h
r3012 r3030 24 24 #ifdef _MSC_VER 25 25 #include "BoxConfig-MSVC.h" 26 # include "BoxVersion.h"26 #define NEED_BOX_VERSION_H 27 27 #else 28 28 #include "BoxConfig.h" -
box/trunk/lib/common/MainHelper.h
r3018 r3030 13 13 #include <stdio.h> 14 14 15 #ifdef NEED_BOX_VERSION_H 16 # include "BoxVersion.h" 17 #endif 18 15 19 #include "BoxException.h" 16 20 #include "Logging.h" … … 22 26 MEMLEAKFINDER_START \ 23 27 try { 28 24 29 #define MAINHELPER_END \ 25 30 } catch(std::exception &e) { \ -
box/trunk/lib/common/Utils.cpp
r2855 r3030 29 29 #endif 30 30 31 #include "Utils.h" 31 #ifdef NEED_BOX_VERSION_H 32 # include "BoxVersion.h" 33 #endif 34 32 35 #include "CommonException.h" 33 36 #include "Logging.h" 37 #include "Utils.h" 34 38 35 39 #include "MemLeakFindOn.h" -
box/trunk/lib/server/Daemon.cpp
r2934 r3030 33 33 #include <iostream> 34 34 35 #ifdef NEED_BOX_VERSION_H 36 # include "BoxVersion.h" 37 #endif 38 39 #include "Configuration.h" 35 40 #include "Daemon.h" 36 #include "Configuration.h" 41 #include "FileModificationTime.h" 42 #include "Guards.h" 43 #include "Logging.h" 37 44 #include "ServerException.h" 38 #include "Guards.h"39 45 #include "UnixUser.h" 40 #include "FileModificationTime.h"41 #include "Logging.h"42 46 #include "Utils.h" 43 47
Note: See TracChangeset
for help on using the changeset viewer.
