Changeset 1119
- Timestamp:
- Jul 4, 2010, 8:34:07 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 23 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r1063 r1119 25 25 ACLOCAL_AMFLAGS = -I m4 26 26 27 SUBDIRS = lib bin man test27 SUBDIRS = yat lib bin man test 28 28 29 29 EXTRA_DIST = build_support/move-if-change .release_year -
trunk/bin/Makefile.am
r1086 r1119 33 33 34 34 LDADD = $(top_builddir)/lib/libsvndigest.a \ 35 $(top_builddir)/ lib/yat/libyat.a $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS)35 $(top_builddir)/yat/libyat.a $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS) 36 36 AM_LDFLAGS = $(APR_LDFLAGS) $(SVN_LDFLAGS) $(PLPLOT_LDFLAGS) 37 37 38 AM_CPPFLAGS = -I$(top_srcdir) /lib$(DEFAULT_CPPFLAGS) \38 AM_CPPFLAGS = -I$(top_srcdir) $(DEFAULT_CPPFLAGS) \ 39 39 $(APR_CPPFLAGS) $(SVN_CPPFLAGS) $(PLPLOT_CPPFLAGS) 40 40 AM_CXXFLAGS = $(DEFAULT_CXXFLAGS) -
trunk/bin/Parameter.cc
r1091 r1119 25 25 #include "Parameter.h" 26 26 27 #include " OptionVersion.h"28 #include " ../lib/utility.h" // to avoid inclusion of yat file27 #include "lib/OptionVersion.h" 28 #include "lib/utility.h" // to avoid inclusion of yat file 29 29 30 30 #include "yat/ColumnStream.h" -
trunk/bin/Parameter.h
r1082 r1119 24 24 */ 25 25 26 #include " OptionVersion.h"26 #include "lib/OptionVersion.h" 27 27 28 28 #include "yat/CommandLine.h" -
trunk/bin/svncopyright.cc
r1102 r1119 22 22 #include "svncopyrightParameter.h" 23 23 24 #include " Configuration.h"25 #include " Directory.h"26 #include " main_utility.h"24 #include "lib/Configuration.h" 25 #include "lib/Directory.h" 26 #include "lib/main_utility.h" 27 27 28 28 #include <cassert> -
trunk/bin/svncopyrightParameter.cc
r1060 r1119 24 24 #include "svncopyrightParameter.h" 25 25 26 #include " OptionVersion.h"26 #include "lib/OptionVersion.h" 27 27 28 28 #include <cassert> -
trunk/bin/svncopyrightParameter.h
r1060 r1119 25 25 #include "Parameter.h" 26 26 27 #include " OptionVersion.h"27 #include "lib/OptionVersion.h" 28 28 29 29 #include "yat/CommandLine.h" -
trunk/bin/svndigest.cc
r1102 r1119 23 23 #include "svndigestParameter.h" 24 24 25 #include " Configuration.h"26 #include " css.h"27 #include " Directory.h"28 #include " first_page.h"29 #include " Graph.h"30 #include " html_utility.h"31 #include " main_utility.h"32 #include " rmdirhier.h"33 #include " Stats.h"34 #include " StatsCollection.h"35 #include " SVN.h"36 #include " SVNinfo.h"37 #include " SVNlog.h"38 #include " ../lib/utility.h"25 #include "lib/Configuration.h" 26 #include "lib/css.h" 27 #include "lib/Directory.h" 28 #include "lib/first_page.h" 29 #include "lib/Graph.h" 30 #include "lib/html_utility.h" 31 #include "lib/main_utility.h" 32 #include "lib/rmdirhier.h" 33 #include "lib/Stats.h" 34 #include "lib/StatsCollection.h" 35 #include "lib/SVN.h" 36 #include "lib/SVNinfo.h" 37 #include "lib/SVNlog.h" 38 #include "lib/utility.h" 39 39 40 40 #include "yat/Exception.h" -
trunk/bin/svndigestParameter.cc
r1088 r1119 25 25 #include "svndigestParameter.h" 26 26 27 #include " OptionVersion.h"28 #include " ../lib/utility.h" // to avoid inclusion of yat file27 #include "lib/OptionVersion.h" 28 #include "lib/utility.h" 29 29 30 30 #ifdef HAVE_PLPLOT -
trunk/bin/svndigestParameter.h
r1082 r1119 26 26 #include "Parameter.h" 27 27 28 #include " OptionVersion.h"28 #include "LIB/OptionVersion.h" 29 29 30 30 #include "yat/CommandLine.h" -
trunk/configure.ac
r1057 r1119 325 325 bin/Makefile 326 326 lib/Makefile 327 lib/yat/Makefile327 yat/Makefile 328 328 man/Makefile 329 329 test/environment.h 330 330 test/Makefile]) 331 331 332 AC_CONFIG_HEADER([ lib/yat/config_public.h])332 AC_CONFIG_HEADER([yat/config_public.h]) 333 333 334 334 # Print failure status information about selected items, and exit if -
trunk/lib/Makefile.am
r1090 r1119 25 25 SVN_REVISION = `$(SVNVERSION) $(top_srcdir)` 26 26 27 SUBDIRS = yat . 28 29 AM_CPPFLAGS = $(DEFAULT_CPPFLAGS) $(APR_CPPFLAGS) $(SVN_CPPFLAGS) \ 30 $(PLPLOT_CPPFLAGS) 27 AM_CPPFLAGS = -I$(top_srcdir) $(DEFAULT_CPPFLAGS) \ 28 $(APR_CPPFLAGS) $(SVN_CPPFLAGS) $(PLPLOT_CPPFLAGS) 31 29 AM_CXXFLAGS = $(DEFAULT_CXXFLAGS) 32 30 -
trunk/test/Makefile.am
r1104 r1119 56 56 check_LIBRARIES = libsvndigesttest.a 57 57 58 59 58 LDADD = $(builddir)/libsvndigesttest.a \ 60 59 $(top_builddir)/lib/libsvndigest.a \ 61 $(top_builddir)/ lib/yat/libyat.a \60 $(top_builddir)/yat/libyat.a \ 62 61 $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS) 63 62 AM_LDFLAGS = $(APR_LDFLAGS) $(SVN_LDFLAGS) $(PLPLOT_LDFLAGS) 64 63 65 AM_CPPFLAGS = -I$(top_srcdir) /lib$(APR_CPPFLAGS) $(SVN_CPPFLAGS) \64 AM_CPPFLAGS = -I$(top_srcdir) $(APR_CPPFLAGS) $(SVN_CPPFLAGS) \ 66 65 $(DEFAULT_CPPFLAGS) $(PLPLOT_CPPFLAGS) 67 66 AM_CXXFLAGS = $(DEFAULT_CXXFLAGS) -
trunk/test/Suite.cc
r1104 r1119 26 26 #include "environment.h" 27 27 28 #include " Stats.h"29 #include " StatsCollection.h"30 #include " ../lib/utility.h"28 #include "lib/Stats.h" 29 #include "lib/StatsCollection.h" 30 #include "lib/utility.h" 31 31 32 32 #include <algorithm> -
trunk/test/cache_partial_test.cc
r1104 r1119 24 24 #include "Suite.h" 25 25 26 #include "File.h" 27 #include "SVN.h" 28 #include "SVNinfo.h" 29 30 #include "../lib/utility.h" 26 #include "lib/File.h" 27 #include "lib/SVN.h" 28 #include "lib/SVNinfo.h" 29 #include "lib/utility.h" 31 30 32 31 #include <iostream> -
trunk/test/color_test.cc
r978 r1119 20 20 */ 21 21 22 #include " Colors.h"22 #include "lib/Colors.h" 23 23 24 24 #include <iostream> -
trunk/test/config_test.cc
r1090 r1119 23 23 #include "Suite.h" 24 24 25 #include " Configuration.h"25 #include "lib/Configuration.h" 26 26 27 27 namespace theplu{ -
trunk/test/copyright_test.cc
r1094 r1119 23 23 #include "Suite.h" 24 24 25 #include " Configuration.h"26 #include " File.h"27 #include " SVN.h"28 #include " SVNinfo.h"25 #include "lib/Configuration.h" 26 #include "lib/File.h" 27 #include "lib/SVN.h" 28 #include "lib/SVNinfo.h" 29 29 30 30 #include <cassert> -
trunk/test/date_test.cc
r978 r1119 20 20 */ 21 21 22 #include " Date.h"22 #include "lib/Date.h" 23 23 24 24 #include <iostream> -
trunk/test/htmlstream_test.cc
r991 r1119 22 22 #include "Suite.h" 23 23 24 #include " HtmlStream.h"24 #include "lib/HtmlStream.h" 25 25 26 26 #include <sstream> -
trunk/test/parser_test.cc
r978 r1119 21 21 */ 22 22 23 #include " LineTypeParser.h"23 #include "lib/LineTypeParser.h" 24 24 25 25 #include <iostream> -
trunk/test/stats_test.cc
r1094 r1119 23 23 #include "Suite.h" 24 24 25 #include " AddStats.h"26 #include " BlameStats.h"27 #include " ClassicStats.h"28 #include " Configuration.h"29 #include " Stats.h"30 #include " SVN.h"25 #include "lib/AddStats.h" 26 #include "lib/BlameStats.h" 27 #include "lib/ClassicStats.h" 28 #include "lib/Configuration.h" 29 #include "lib/Stats.h" 30 #include "lib/SVN.h" 31 31 32 32 #include <algorithm> -
trunk/test/trac_test.cc
r978 r1119 21 21 */ 22 22 23 #include " Configuration.h"24 #include " HtmlStream.h"25 #include " html_utility.h"26 #include " Trac.h"23 #include "lib/Configuration.h" 24 #include "lib/HtmlStream.h" 25 #include "lib/html_utility.h" 26 #include "lib/Trac.h" 27 27 28 28 #include <fstream>
Note: See TracChangeset
for help on using the changeset viewer.