Changeset 162
- Timestamp:
- Aug 20, 2006, 1:01:59 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r160 r162 24 24 25 25 version pre0.5: 26 - 'configure' now checks for APR libraries. 26 27 - Added a --enable-debug option to autoconf. The project is 27 28 compiled without debug code by default. Use './configure -
trunk/README
r149 r162 25 25 1 Prerequisites 26 26 27 i ) Subversion development files, i.e., header files and program27 ia) Subversion development files, i.e., header files and program 28 28 libraries, version 1.4 or later. 29 30 ib) This item should not be an issue if item ia) is fulfilled; the 31 Apache Portable Runtime (APR) should be available if the subversion 32 API was succesfully compiled. Subversion depends on APR and in 33 consequence, the dependency is inherited by svndigest. 29 34 30 35 ii) Gnuplot. … … 33 38 must be compiled with a C++ compiler that supports 'long long' 34 39 types - GCC does this. This is due to the fact that one of the 35 underlying libraries, apr, is using 'long long'. apris written in40 underlying libraries, APR, is using 'long long'. APR is written in 36 41 C and the C standard allows 'long long'. 37 42 … … 54 59 interfaces in ANSI C" written by Nicolas Devillard. The C implemention 55 60 is available through http://ndevilla.free.fr/ . 61 62 svndigest build system uses an M4 macro (build_support/find_apr.m4) 63 created within the Apache project (The Apache Software Foundation). No 64 changes is made to the M4 script. The apache license text is available 65 as buid_support/apache_LICENSE-2.0.txt. -
trunk/configure.ac
r161 r162 56 56 fi 57 57 58 # Apache Portable Runtime (APR) checks 58 59 AC_ARG_WITH(apr, 59 60 [ --with-apr=DIR prefix for installed APR or path to APR build … … 62 63 [ APR_PATH=$prefix ]) 63 64 AC_SUBST(APR_PATH) 65 # Include macros distributed within the APR project 66 sinclude(./build_support/find_apr.m4) 67 APR_FIND_APR(,,1) 64 68 65 69 AC_ARG_WITH(svn, … … 92 96 at http://www.gnuplot.info).]) 93 97 98 if test $apr_found = "no"; then 99 AC_MSG_WARN([APR not found. The Apache Portable Runtime (APR) 100 library cannot be found. Please supply the appropriate --with-apr 101 option to 'configure'.]) 102 fi 103 94 104 echo "" 95 echo " Nowtype 'make ; make check'."105 echo "If no warnings appear above it is safe to type 'make ; make check'." 96 106 echo ""
Note: See TracChangeset
for help on using the changeset viewer.