Changeset 9748
- Timestamp:
- Apr 8, 2011, 2:18:28 PM (14 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
bootstrap
r9743 r9748 29 29 echo "> ./configure" 30 30 echo "> make" 31 echo "> make install"32 31 echo "> sudo make install" 32 echo "> sudo ldconfig" -
configure.ac
r9633 r9748 1 AC_INIT([ariba], [0. 6.1], [http://www.ariba-underlay.org])1 AC_INIT([ariba], [0.7.0], [http://www.ariba-underlay.org]) 2 2 AM_INIT_AUTOMAKE([-Wall foreign]) 3 3 AC_CONFIG_SRCDIR([source/ariba/ariba.h]) -
docu/doxygen/Doxyfile
r9314 r9748 6 6 DOXYFILE_ENCODING = UTF-8 7 7 PROJECT_NAME = Ariba 8 PROJECT_NUMBER = 0. 6.08 PROJECT_NUMBER = 0.7.0 9 9 OUTPUT_DIRECTORY = ./ 10 10 CREATE_SUBDIRS = NO -
source/ariba/utility/logging/Logging.h
r9741 r9748 50 50 51 51 #ifdef LOGCOLORS 52 #define colorDefault { std::cout << "\033[0m"; } /*reset*/52 #define colorDefault { std::cout << "\033[0m"; } /*reset*/ 53 53 #define colorDebug { std::cout << "\033[0;33m"; } /*cyan*/ 54 54 #define colorInfo { std::cout << "\033[0;32m"; } /*green*/ 55 55 #define colorWarn { std::cout << "\033[0;34m"; } /*blue*/ 56 56 #define colorError { std::cout << "\033[0;31m"; } /*red*/ 57 58 57 #else 59 58 #define colorDefault { } … … 99 98 static int __loglevel__ = 2; //default is info 100 99 101 #define logging_trace(x) { logging_stdout(x);}100 #define logging_trace(x) { logging_stdout(x); } 102 101 #define logging_debug(x) {if(__loglevel__ <= 1){ colorDebug; logging_stdout(x); colorDefault; }} 103 102 #define logging_info(x) {if(__loglevel__ <= 2){ colorInfo; logging_stdout(x); colorDefault; }}
Note:
See TracChangeset
for help on using the changeset viewer.