diff options
Diffstat (limited to 'gnu/usr.bin/cvs/configure.in')
-rw-r--r-- | gnu/usr.bin/cvs/configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/configure.in b/gnu/usr.bin/cvs/configure.in index 2296f71af59..cc678db8985 100644 --- a/gnu/usr.bin/cvs/configure.in +++ b/gnu/usr.bin/cvs/configure.in @@ -63,7 +63,7 @@ AC_TYPE_MODE_T AC_TYPE_SIZE_T AC_TYPE_PID_T AC_STRUCT_ST_BLKSIZE -AC_REPLACE_FUNCS(mkdir rename strstr dup2 strerror valloc waitpid vasprintf strtoul) +AC_REPLACE_FUNCS(mkdir rename strstr dup2 strerror valloc waitpid memmove vasprintf strtoul) AC_CHECK_FUNCS(fchmod fsync ftime mktemp putenv vprintf ftruncate timezone getpagesize initgroups fchdir sigaction sigprocmask sigvec sigsetmask sigblock tempnam tzset readlink wait3) dnl @@ -348,6 +348,12 @@ if test "$ac_cv_func_crypt" = yes; then fi fi # enable_server +dnl For the moment we will assume that all systems which have +dnl the unixyness to run configure are unixy enough to do the +dnl PreservePermissions stuff. I have this sinking feeling that +dnl things won't be that simple, before long. +AC_DEFINE(PRESERVE_PERMISSIONS_SUPPORT) + dnl On cygwin32, we configure like a Unix system, but we use the dnl Windows support code in lib/fncase.c to handle the case dnl insensitive file system. We also need some support libraries. We |