Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8e469b4f
Commit
8e469b4f
authored
Oct 07, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Beos regression patch.
parent
43d402e3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
6 deletions
+18
-6
configure.in
configure.in
+1
-0
src/test/regress/pg_regress.sh
src/test/regress/pg_regress.sh
+15
-4
src/test/regress/regress.sh
src/test/regress/regress.sh
+2
-2
No files found.
configure.in
View file @
8e469b4f
...
...
@@ -56,6 +56,7 @@ PGAC_ARG_REQ(with, template, [],
case $host_os in
aix*) template=aix ;;
beos*) template=beos ;;
bsdi*) template=bsdi ;;
cygwin*) template=win ;;
dgux*) template=dgux ;;
...
...
src/test/regress/pg_regress.sh
View file @
8e469b4f
#! /bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.
5 2000/10/03 19:37:39 petere
Exp $
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.
6 2000/10/07 14:55:16 momjian
Exp $
me
=
`
basename
$0
`
:
${
TMPDIR
=/tmp
}
...
...
@@ -147,11 +147,11 @@ done
# ----------
# When on Windows
or QNX
, don't use Unix sockets.
# When on Windows
, QNX or BeOS
, don't use Unix sockets.
# ----------
case
$host_platform
in
*
-
*
-cygwin
*
|
*
-
*
-qnx
*
)
*
-
*
-cygwin
*
|
*
-
*
-qnx
*
|
*
beos
*
)
unix_sockets
=
no
;;
*
)
unix_sockets
=
yes
;;
...
...
@@ -169,6 +169,17 @@ case $host_platform in
DIFFFLAGS
=
-w
;;
esac
# ----------
# Set up the GMAKE variable correctly.
# ----------
case
$host_platform
in
*
beos
*
)
GMAKE
=
make
;;
*
)
GMAKE
=
gmake
;;
esac
# ----------
# Set backend timezone and datestyle explicitly
...
...
@@ -286,7 +297,7 @@ then
message
"creating temporary installation"
mkdir
-p
"
$LOGDIR
"
||
{
(
exit
2
)
;
exit
;
}
${
MAKE
:-
gmake
}
-C
"
$top_builddir
"
DESTDIR
=
"
$temp_install
"
install
>
"
$LOGDIR
/install.log"
2>&1
${
MAKE
:-
$GMAKE
}
-C
"
$top_builddir
"
DESTDIR
=
"
$temp_install
"
install
>
"
$LOGDIR
/install.log"
2>&1
if
[
$?
-ne
0
]
then
...
...
src/test/regress/regress.sh
View file @
8e469b4f
#!/bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.5
4 2000/10/07 14:39:20
momjian Exp $
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.5
5 2000/10/07 14:55:16
momjian Exp $
#
if
[
$#
-eq
0
]
;
then
echo
"Syntax:
$0
<hostname> [extra-tests]"
...
...
@@ -11,7 +11,7 @@ shift
extratests
=
"
$*
"
case
$hostname
in
i
*
86-pc-cygwin
*
|
i386-
*
-qnx
*
|
beos
)
i
*
86-pc-cygwin
*
|
i386-
*
-qnx
*
|
*
beos
*
)
HOSTLOC
=
"-h localhost"
;;
*
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment