Changeset 835 for trunk/configure.ac
- Timestamp:
- Nov 8, 2009, 8:35:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r819 r835 114 114 115 115 AS_IF([test "x$enable_svn_support" = xyes], 116 [A C_CHECK_FILE([$srcdir/.svn],,117 116 [AS_IF([test -d $srcdir/.svn], [], 117 [AC_MSG_ERROR([svn support cannot be enabled: `$srcdir' is not an svn wc.])])]) 118 118 AM_CONDITIONAL([ENABLE_SVN_SUPPORT], [test "x$enable_svn_support" = "xyes"]) 119 119 … … 179 179 180 180 # checking if we build in a subversion WC 181 A C_CHECK_FILE([$srcdir/.svn], [wc_found="yes"], [wc_found="no"])181 AS_IF([test -d $srcdir/.svn], [wc_found="yes"], [wc_found="no"]) 182 182 AM_CONDITIONAL([HAVE_SVN_WC], [test "$wc_found" = "yes"]) 183 183 AC_SUBST([wc_found]) … … 185 185 # checking if we have test repo 186 186 test_repo_filename=$srcdir/test/repo; 187 A C_CHECK_FILE([$test_repo_filename],187 AS_IF([test -r $test_repo_filename], 188 188 [AC_DEFINE([HAVE_TEST_REPO],[1],[define if test repo is available]) 189 189 test_repo_found="yes"],
Note: See TracChangeset
for help on using the changeset viewer.