- Timestamp:
- 07/13/11 23:09:17 (13 years ago)
- Location:
- trunk/FACT++
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/Makefile.am
r11382 r11388 4 4 5 5 ACLOCAL_AMFLAGS = -I .macro_dir 6 7 SVN_REVISION = -DREVISION=\"`svnversion -n .`\" 6 8 7 9 DIM_FLAGS = -DMIPSEL -DPROTOCOL=1 -Dunix -Dlinux … … 9 11 10 12 AM_CPPFLAGS = -Idim/dim $(DIM_FLAGS) $(BOOST_FLAGS) $(ROOTCPPFLAGS) \ 11 -O3 -Wall -Winit-self -Wpointer-arith -Wcast-align -Wextra -Wformat=2 13 -O3 -Wall -Winit-self -Wpointer-arith -Wcast-align -Wextra -Wformat=2 \ 14 $(SVN_REVISION) 12 15 13 16 AM_CXXFLAGS = $(AM_CPPFLAGS) $(QT4_INCLUDES) \ -
trunk/FACT++/Makefile.in
r11383 r11388 625 625 #------------------------------------------------------------------------- 626 626 ACLOCAL_AMFLAGS = -I .macro_dir 627 SVN_REVISION = -DREVISION=\"`svnversion -n .`\" 627 628 DIM_FLAGS = -DMIPSEL -DPROTOCOL=1 -Dunix -Dlinux 628 629 BOOST_FLAGS = -DBOOST_DISABLE_ASSERTS 629 630 AM_CPPFLAGS = -Idim/dim $(DIM_FLAGS) $(BOOST_FLAGS) $(ROOTCPPFLAGS) \ 630 -O3 -Wall -Winit-self -Wpointer-arith -Wcast-align -Wextra -Wformat=2 631 -O3 -Wall -Winit-self -Wpointer-arith -Wcast-align -Wextra -Wformat=2 \ 632 $(SVN_REVISION) 631 633 632 634 AM_CXXFLAGS = $(AM_CPPFLAGS) $(QT4_INCLUDES) \ -
trunk/FACT++/src/Main.h
- Property svn:keywords deleted
r11386 r11388 62 62 const Time now; 63 63 io_service.Write(now, "---------------------------- Program ----------------------------"); 64 io_service.Write(now, " Time: "+now.GetAsStr("%c"));64 io_service.Write(now, " Current time: "+now.GetAsStr("%c")); 65 65 io_service.Write(now, " Name: "+conf.GetName()); 66 66 io_service.Write(now, " Compiled: "__DATE__" "__TIME__); 67 io_service.Write(now, $Rev$);67 io_service.Write(now, " Revision: "REVISION); 68 68 io_service.Write(now, "---------------------------- Options ----------------------------"); 69 69 const multimap<string,string> map = conf.GetOptions();
Note:
See TracChangeset
for help on using the changeset viewer.