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

Add Win32 versions of unlink and rename --- loop until success.

This commit is contained in:
Bruce Momjian
2003-04-22 02:18:09 +00:00
parent 5ed27e35f3
commit dfc6649c4d
3 changed files with 27 additions and 6 deletions

9
configure vendored
View File

@ -11145,8 +11145,13 @@ ac_cv_func_fseeko=yes
esac
# Solaris has a very slow qsort in certain cases, so we replace it.
case $host_os in
solaris*) LIBOBJS="$LIBOBJS qsort.$ac_objext" ;;
case $host_os in solaris*)
LIBOBJS="$LIBOBJS qsort.$ac_objext" ;;
esac
# Win32 can't to rename or unlink on an open file
case $host_os in win32*)
LIBOBJS="$LIBOBJS dirmod.$ac_objext" ;;
esac
# On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;