1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Add copydir() function because xcopy doesn't work in XP without a

window.
This commit is contained in:
Bruce Momjian
2003-05-15 17:59:17 +00:00
parent bee0ac67ee
commit 09aad5a3a6
4 changed files with 55 additions and 10 deletions

5
configure vendored
View File

@ -11395,8 +11395,9 @@ LIBOBJS="$LIBOBJS qsort.$ac_objext" ;;
esac
# Win32 can't to rename or unlink on an open file
case $host_os in win32*|mingw*)
LIBOBJS="$LIBOBJS dirmod.$ac_objext" ;;
case $host_os in mingw*)
LIBOBJS="$LIBOBJS dirmod.$ac_objext"
LIBOBJS="$LIBOBJS copydir.$ac_objext" ;;
esac
if test "$with_readline" = yes; then