Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit df6b11d

Browse files
committed
Add comment for Win32.
1 parent 832e6df commit df6b11d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

configure

+2-1
Original file line numberDiff line numberDiff line change
@@ -12075,14 +12075,15 @@ case $host_os in solaris*)
1207512075
LIBOBJS="$LIBOBJS qsort.$ac_objext" ;;
1207612076
esac
1207712077

12078-
# Win32 can't to rename or unlink on an open file
12078+
# Win32 support
1207912079
case $host_os in mingw*)
1208012080
LIBOBJS="$LIBOBJS copydir.$ac_objext"
1208112081
LIBOBJS="$LIBOBJS gettimeofday.$ac_objext"
1208212082
LIBOBJS="$LIBOBJS pipe.$ac_objext"
1208312083
LIBOBJS="$LIBOBJS rand.$ac_objext" ;;
1208412084
esac
1208512085

12086+
# Win32 can't to rename or unlink on an open file
1208612087
case $host_os in mingw*|cygwin*)
1208712088
LIBOBJS="$LIBOBJS dirmod.$ac_objext" ;;
1208812089
esac

configure.in

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $PostgreSQL: pgsql/configure.in,v 1.318 2004/03/03 17:37:22 momjian Exp $
2+
dnl $PostgreSQL: pgsql/configure.in,v 1.319 2004/03/09 22:40:10 momjian Exp $
33
dnl
44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -903,14 +903,15 @@ case $host_os in solaris*)
903903
AC_LIBOBJ(qsort) ;;
904904
esac
905905

906-
# Win32 can't to rename or unlink on an open file
906+
# Win32 support
907907
case $host_os in mingw*)
908908
AC_LIBOBJ(copydir)
909909
AC_LIBOBJ(gettimeofday)
910910
AC_LIBOBJ(pipe)
911911
AC_LIBOBJ(rand) ;;
912912
esac
913913

914+
# Win32 can't to rename or unlink on an open file
914915
case $host_os in mingw*|cygwin*)
915916
AC_LIBOBJ(dirmod) ;;
916917
esac

0 commit comments

Comments
 (0)