1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

From Jason Tishler <jt@dothill.com>

* doc/FAQ_MSWIN: Update to be consistent with software -- mainly change
comment from lack of Cygwin UNIX domain socket support and to list of
current Cygwin UNIX domain socket issues.
* src/include/config.h.in: Enable UNIX domain sockets for Cygwin.
* src/include/port/win.h: Disable UNIX domain sockets for Cygwin b20.1.
* src/test/regress/pg_regress.sh: Use UNIX domain sockets for Cygwin
instead of TCP/IP.
This commit is contained in:
Peter Eisentraut
2001-01-19 23:43:36 +00:00
parent d4067b53f1
commit 58f4028518
4 changed files with 24 additions and 14 deletions

View File

@ -1,5 +1,5 @@
#! /bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.17 2001/01/13 03:25:48 petere Exp $
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.18 2001/01/19 23:43:36 petere Exp $
me=`basename $0`
: ${TMPDIR=/tmp}
@ -156,11 +156,11 @@ done
# ----------
# When on Windows, QNX or BeOS, don't use Unix sockets.
# When on QNX or BeOS, don't use Unix sockets.
# ----------
case $host_platform in
*-*-cygwin* | *-*-qnx* | *beos*)
*-*-qnx* | *beos*)
unix_sockets=no;;
*)
unix_sockets=yes;;