Changeset 221 for trunk


Ignore:
Timestamp:
Dec 25, 2006, 1:04:59 AM (17 years ago)
Author:
Jari Häkkinen
Message:

Fixes #84. Read developer information in README about how to do 'make distcheck'.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/INSTALL

    r219 r221  
    2626======================================================================
    2727
     28
     29Please read README for compilation prerequisites.
    2830
    2931
  • trunk/README

    r185 r221  
    2121USA.
    2222======================================================================
     23
     24
     25Table of contents
     26
     270  What is svndigest?
     281  Prerequisites
     292  Compilation and installation
     303  Running svndigest
     314  Acknowledgements
     325  Developer information
    2333
    2434
     
    8191changes is made to the M4 script. The apache license text is available
    8292as buid_support/apache_LICENSE-2.0.txt.
     93
     94
     955  Developer information
     96
     97a) At first checkout from the repository, and when configure.ac is
     98changed, you must run './bootstrap' to setup autoconf files.
     99
     100b) All tests are not enabled by default since some of the testes
     101depends on being run from a subversion WC. Add '--enable-wctests' to
     102configure to enable WC depedent tests.
     103
     104c) Create a distribution package with 'make dist'. Remember to test
     105the package with 'make distcheck'. If required packages are installed
     106in non-standard locations you need to pass this information to
     107'distcheck'. This is done by using the variable
     108DISTCHECK_CONFIGURE_FLAGS as
     109
     110   DISTCHECK_CONFIGURE_FLAGS="--with-apr=/usr/loca/apr" make distcheck
     111
     112Usually you need to set DISTCHECK_CONFIGURE_FLAGS to whatever options
     113you pass to configure.
  • trunk/bin/Makefile.am

    r171 r221  
    2828noinst_HEADERS = Parameter.h
    2929
    30 LDADD =  $(STATICFLAG) @top_srcdir@/lib/libsvndigest.la
     30LDADD = $(STATICFLAG) @top_builddir@/lib/libsvndigest.la
    3131
    3232AM_CPPFLAGS = -I@top_srcdir@/lib
  • trunk/test/Makefile.am

    r220 r221  
    2929check_PROGRAMS = $(TESTS)
    3030
    31 LDADD =  $(STATICFLAG) @top_srcdir@/lib/libsvndigest.la
     31LDADD = $(STATICFLAG) @top_builddir@/lib/libsvndigest.la
    3232
    3333AM_CPPFLAGS = -I@top_srcdir@/lib
Note: See TracChangeset for help on using the changeset viewer.