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
7d3b7db8
Commit
7d3b7db8
authored
Aug 10, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set DYLD_LIBRARY_PATH so that 'make check' works without prior
'make install' on OS X. Per suggestion from Adam Witney.
parent
a2ec3fe8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
src/test/regress/pg_regress.sh
src/test/regress/pg_regress.sh
+11
-3
No files found.
src/test/regress/pg_regress.sh
View file @
7d3b7db8
#! /bin/sh
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.4
5 2004/06/03 00:25:47 momjian
Exp $
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.4
6 2004/08/10 22:24:06 tgl
Exp $
me
=
`
basename
$0
`
:
${
TMPDIR
=/tmp
}
...
...
@@ -328,8 +328,9 @@ then
# ----------
# Set up shared library paths, needed by psql and pg_encoding
# (if you run multibyte). LD_LIBRARY_PATH covers many platforms,
# feel free to account for others as well.
# (if you run multibyte). LD_LIBRARY_PATH covers many platforms.
# DYLD_LIBRARY_PATH works on Darwin, and maybe other Mach-based systems.
# Feel free to account for others as well.
# ----------
if
[
-n
"
$LD_LIBRARY_PATH
"
]
;
then
...
...
@@ -339,6 +340,13 @@ then
fi
export
LD_LIBRARY_PATH
if
[
-n
"
$DYLD_LIBRARY_PATH
"
]
;
then
DYLD_LIBRARY_PATH
=
"
$libdir
:
$DYLD_LIBRARY_PATH
"
else
DYLD_LIBRARY_PATH
=
$libdir
fi
export
DYLD_LIBRARY_PATH
# ----------
# Windows needs shared libraries in PATH. (Only those linked into
# executables, not dlopen'ed ones)
...
...
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