diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-01 16:33:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-01 16:33:25 +0000 |
commit | 4442d7e8ee42829859f645451d7a8b1c3e0aa9e2 (patch) | |
tree | 7851010689069fc354c862899d3a691a19ad6944 /configure.in | |
parent | a69a8d9c708a1e66c5427ad177573c8e450da8c6 (diff) | |
download | glibc-4442d7e8ee42829859f645451d7a8b1c3e0aa9e2.tar.gz glibc-4442d7e8ee42829859f645451d7a8b1c3e0aa9e2.tar.xz glibc-4442d7e8ee42829859f645451d7a8b1c3e0aa9e2.zip |
Update.
2000-11-01 Ulrich Drepper <drepper@redhat.com> * configure.in (with_cvs): Test for pserver access.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 44d1df2848..ae69b470e9 100644 --- a/configure.in +++ b/configure.in @@ -66,8 +66,12 @@ AC_ARG_WITH(elf, dnl --with-elf if using the ELF object format, elf=$withval, elf=no) AC_ARG_WITH(cvs, dnl -[ --without-cvs if CVS should not be used], +[ --without-cvs if CVS should not be used], with_cvs=$withval, with_cvs=yes) +if test "$with_cvs" = yes && test -d CVS && grep :pserver: CVS/Root > /dev/null +then + with_cvs=no +fi AC_SUBST(with_cvs) AC_ARG_WITH(headers, dnl |