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
b85faa87
Commit
b85faa87
authored
Sep 11, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Send thread test output to file descriptor 5 like configure does rather
than /dev/null, which Win32 doesn't have.
parent
8becd824
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
config/acx_pthread.m4
config/acx_pthread.m4
+1
-1
configure
configure
+1
-1
No files found.
config/acx_pthread.m4
View file @
b85faa87
...
...
@@ -140,7 +140,7 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if test "`(eval $ac_link 2>&1
>/dev/null
)`" = ""; then
if test "`(eval $ac_link 2>&1
1>&5
)`" = ""; then
# we continue with more flags because Linux needs -lpthread
# for libpq builds on PostgreSQL. The test above only
# tests for building binaries, not shared libraries.
...
...
configure
View file @
b85faa87
...
...
@@ -13336,7 +13336,7 @@ main ()
}
_ACEOF
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
if
test
"
`
(
eval
$ac_link
2>&1
>
/dev/null
)
`
"
=
""
;
then
if
test
"
`
(
eval
$ac_link
2>&1
1>&5
)
`
"
=
""
;
then
# we continue with more flags because Linux needs -lpthread
# for libpq builds on PostgreSQL. The test above only
# tests for building binaries, not shared libraries.
...
...
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