- Timestamp:
- Dec 25, 2006, 1:04:59 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r219 r221 26 26 ====================================================================== 27 27 28 29 Please read README for compilation prerequisites. 28 30 29 31 -
trunk/README
r185 r221 21 21 USA. 22 22 ====================================================================== 23 24 25 Table of contents 26 27 0 What is svndigest? 28 1 Prerequisites 29 2 Compilation and installation 30 3 Running svndigest 31 4 Acknowledgements 32 5 Developer information 23 33 24 34 … … 81 91 changes is made to the M4 script. The apache license text is available 82 92 as buid_support/apache_LICENSE-2.0.txt. 93 94 95 5 Developer information 96 97 a) At first checkout from the repository, and when configure.ac is 98 changed, you must run './bootstrap' to setup autoconf files. 99 100 b) All tests are not enabled by default since some of the testes 101 depends on being run from a subversion WC. Add '--enable-wctests' to 102 configure to enable WC depedent tests. 103 104 c) Create a distribution package with 'make dist'. Remember to test 105 the package with 'make distcheck'. If required packages are installed 106 in non-standard locations you need to pass this information to 107 'distcheck'. This is done by using the variable 108 DISTCHECK_CONFIGURE_FLAGS as 109 110 DISTCHECK_CONFIGURE_FLAGS="--with-apr=/usr/loca/apr" make distcheck 111 112 Usually you need to set DISTCHECK_CONFIGURE_FLAGS to whatever options 113 you pass to configure. -
trunk/bin/Makefile.am
r171 r221 28 28 noinst_HEADERS = Parameter.h 29 29 30 LDADD = $(STATICFLAG) @top_srcdir@/lib/libsvndigest.la30 LDADD = $(STATICFLAG) @top_builddir@/lib/libsvndigest.la 31 31 32 32 AM_CPPFLAGS = -I@top_srcdir@/lib -
trunk/test/Makefile.am
r220 r221 29 29 check_PROGRAMS = $(TESTS) 30 30 31 LDADD = $(STATICFLAG) @top_srcdir@/lib/libsvndigest.la31 LDADD = $(STATICFLAG) @top_builddir@/lib/libsvndigest.la 32 32 33 33 AM_CPPFLAGS = -I@top_srcdir@/lib
Note: See TracChangeset
for help on using the changeset viewer.