Changeset 670 for trunk/configure.ac
- Timestamp:
- Jul 4, 2008, 2:15:16 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r669 r670 157 157 wc_found="no"; 158 158 if (test $have_svnversion != "no" && 159 159 test `$SVNVERSION -n $srcdir` != "exported"); 160 160 then 161 161 wc_found="yes"; 162 162 fi 163 163 AC_CHECK_FILE("$srcdir/lib/subversion_info.cc",info_found="yes",info_found="no") … … 206 206 all_reqs_ok="false" 207 207 else 208 209 210 208 dnl test repo is not distributed 209 AC_CONFIG_FILES([test/test_repo.sh], [chmod +x test/test_repo.sh]) 210 AC_CONFIG_FILES([test/check_repo_status.sh], [chmod +x test/check_repo_status.sh]) 211 211 fi 212 212 fi … … 214 214 # Non-existing APR is fatal -- sub-sequent compilation will fail. 215 215 if (test "$apr_found" = "no") ; then 216 217 218 219 216 AC_MSG_WARN([APR not found. The Apache Portable Runtime 217 (APR) library cannot be found. Please make sure APR is installed 218 and supply the appropriate --with-apr option to 'configure'.]) 219 all_reqs_ok="false" 220 220 fi 221 221 222 222 # Non-existing subversion API is fatal -- sub-sequent compilation will fail. 223 223 if (test "$svn_found" = "no") ; then 224 225 226 227 if (test "$apr_found" = "no") ; then224 svn_msg="Subversion API not found. Subversion API libraries cannot 225 be found. Make sure the APIs are installed and supply the 226 appropriate --with-svn option to 'configure'." 227 if (test "$apr_found" = "no") ; then 228 228 svn_msg="$svn_msg 229 229 Note, APR was not found. Failure to locate APR affects the search 230 230 of the subversion API. Please fix the APR problem before trying 231 231 to resolve the subversion related issues." 232 fi233 234 232 fi 233 AC_MSG_WARN([$svn_msg]) 234 all_reqs_ok="false" 235 235 fi 236 236 237 237 if test $ac_cv_type_long_long_int != yes ; then 238 239 240 238 AC_MSG_WARN([Compiler $CXX does not support `long long'. 239 svndigest must be compiled with a compiler that supports `long long'.]) 240 all_reqs_ok="false" 241 241 fi 242 242 243 243 if (test "$all_reqs_ok" = "false") ; then 244 245 246 247 244 AC_MSG_ERROR([Some pre-requisites were not fulfilled, aborting 245 configure. Please consult the 'README' file for more information 246 about what is needed to compile svndigest and refer to above 247 warning messages. Needed files were NOT created.]) 248 248 fi 249 249 … … 266 266 # Failure to locate gnuplot is not considered fatal 267 267 if (test "$GNUPLOT" != "ok") ; then 268 269 270 271 272 268 AC_MSG_WARN([Gnuplot was not found. svndigest will compile 269 without gnuplot but will throw an exception at run-time. Please 270 install gnuplot (available for a wide range of operating systems 271 at http://www.gnuplot.info).]) 272 AC_MSG_NOTICE([]) 273 273 fi 274 274
Note: See TracChangeset
for help on using the changeset viewer.