diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-03-09 22:40:10 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-03-09 22:40:10 +0000 |
commit | df6b11db52b6ac546ab8291e9fc89d7ced66d710 (patch) | |
tree | da08a5e253b059f665128dcb5bb5c2a4635c8cdd | |
parent | 832e6df893e07e06f5540938f5e4e9f4c50105ab (diff) | |
download | postgresql-df6b11db52b6ac546ab8291e9fc89d7ced66d710.tar.gz postgresql-df6b11db52b6ac546ab8291e9fc89d7ced66d710.zip |
Add comment for Win32.
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/configure b/configure index 9d579f933de..f171125c259 100755 --- a/configure +++ b/configure @@ -12075,7 +12075,7 @@ case $host_os in solaris*) LIBOBJS="$LIBOBJS qsort.$ac_objext" ;; esac -# Win32 can't to rename or unlink on an open file +# Win32 support case $host_os in mingw*) LIBOBJS="$LIBOBJS copydir.$ac_objext" LIBOBJS="$LIBOBJS gettimeofday.$ac_objext" @@ -12083,6 +12083,7 @@ LIBOBJS="$LIBOBJS pipe.$ac_objext" LIBOBJS="$LIBOBJS rand.$ac_objext" ;; esac +# Win32 can't to rename or unlink on an open file case $host_os in mingw*|cygwin*) LIBOBJS="$LIBOBJS dirmod.$ac_objext" ;; esac diff --git a/configure.in b/configure.in index bf7629b2295..2b83e64216b 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $PostgreSQL: pgsql/configure.in,v 1.318 2004/03/03 17:37:22 momjian Exp $ +dnl $PostgreSQL: pgsql/configure.in,v 1.319 2004/03/09 22:40:10 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -903,7 +903,7 @@ case $host_os in solaris*) AC_LIBOBJ(qsort) ;; esac -# Win32 can't to rename or unlink on an open file +# Win32 support case $host_os in mingw*) AC_LIBOBJ(copydir) AC_LIBOBJ(gettimeofday) @@ -911,6 +911,7 @@ AC_LIBOBJ(pipe) AC_LIBOBJ(rand) ;; esac +# Win32 can't to rename or unlink on an open file case $host_os in mingw*|cygwin*) AC_LIBOBJ(dirmod) ;; esac |