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
e295c55f
Commit
e295c55f
authored
Apr 24, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for gmake, then make, when doing thread test.
parent
f5dd5bf2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
7 deletions
+48
-7
configure
configure
+43
-3
configure.in
configure.in
+5
-4
No files found.
configure
View file @
e295c55f
...
...
@@ -19118,6 +19118,46 @@ fi
#
if
test
"
$enable_thread_safety
"
=
yes
;
then
if
test
cross_compiling
!=
yes
;
then
for
ac_prog
in
gmake make
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set
dummy
$ac_prog
;
ac_word
=
$2
echo
"
$as_me
:
$LINENO
: checking for
$ac_word
"
>
&5
echo
$ECHO_N
"checking for
$ac_word
...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_prog_MAKE
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
if
test
-n
"
$MAKE
"
;
then
ac_cv_prog_MAKE
=
"
$MAKE
"
# Let the user override the test.
else
as_save_IFS
=
$IFS
;
IFS
=
$PATH_SEPARATOR
for
as_dir
in
$PATH
do
IFS
=
$as_save_IFS
test
-z
"
$as_dir
"
&&
as_dir
=
.
for
ac_exec_ext
in
''
$ac_executable_extensions
;
do
if
$as_executable_p
"
$as_dir
/
$ac_word$ac_exec_ext
"
;
then
ac_cv_prog_MAKE
=
"
$ac_prog
"
echo
"
$as_me
:
$LINENO
: found
$as_dir
/
$ac_word$ac_exec_ext
"
>
&5
break
2
fi
done
done
fi
fi
MAKE
=
$ac_cv_prog_MAKE
if
test
-n
"
$MAKE
"
;
then
echo
"
$as_me
:
$LINENO
: result:
$MAKE
"
>
&5
echo
"
${
ECHO_T
}
$MAKE
"
>
&6
else
echo
"
$as_me
:
$LINENO
: result: no"
>
&5
echo
"
${
ECHO_T
}
no"
>
&6
fi
test
-n
"
$MAKE
"
&&
break
done
echo
"
$as_me
:
$LINENO
: checking thread safety of required library functions."
>
&5
echo
$ECHO_N
"checking thread safety of required library functions....
$ECHO_C
"
>
&6
#
...
...
@@ -19125,12 +19165,12 @@ echo $ECHO_N "checking thread safety of required library functions.... $ECHO_C"
# If test fails for any reason, remove Makefile.global so the user can't
# compile (to simulate a configure failure).
#
gmake
-C
$srcdir
/src/tools/thread clean
>
&5
||
$MAKE
-C
$srcdir
/src/tools/thread clean
>
&5
||
(
rm
-f
src/Makefile.global
{
{
echo
"
$as_me
:
$LINENO
: error: Can not clean thread test directory."
>
&5
echo
"
$as_me
: error: Can not clean thread test directory."
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
})
gmake
-C
$srcdir
/src/tools/thread
>
&5
||
$MAKE
-C
$srcdir
/src/tools/thread
>
&5
||
(
rm
-f
src/Makefile.global
{
{
echo
"
$as_me
:
$LINENO
: error: Can not build thread test proram."
>
&5
echo
"
$as_me
: error: Can not build thread test proram."
>
&2
;
}
...
...
@@ -19140,7 +19180,7 @@ $srcdir/src/tools/thread/thread_test >&5 ||
{
{
echo
"
$as_me
:
$LINENO
: error: Thread test program failed."
>
&5
echo
"
$as_me
: error: Thread test program failed."
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
})
gmake
-C
$srcdir
/src/tools/thread clean
>
&5
||
$MAKE
-C
$srcdir
/src/tools/thread clean
>
&5
||
(
rm
-f
src/Makefile.global
{
{
echo
"
$as_me
:
$LINENO
: error: Can not clean thread test directory."
>
&5
echo
"
$as_me
: error: Can not clean thread test directory."
>
&2
;
}
...
...
configure.in
View file @
e295c55f
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.32
5 2004/04/23 23:58:07
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.32
6 2004/04/24 03:09:35
momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -1220,22 +1220,23 @@ AC_OUTPUT
#
if test "$enable_thread_safety" = yes; then
if test cross_compiling != yes; then
AC_CHECK_PROGS(MAKE, gmake make)
AC_MSG_CHECKING([thread safety of required library functions.])
#
# Clean, compile, run, and clean thread test directory.
# If test fails for any reason, remove Makefile.global so the user can't
# compile (to simulate a configure failure).
#
gmake
-C $srcdir/src/tools/thread clean >&5 ||
$MAKE
-C $srcdir/src/tools/thread clean >&5 ||
( rm -f src/Makefile.global
AC_MSG_ERROR([Can not clean thread test directory.]))
gmake
-C $srcdir/src/tools/thread >&5 ||
$MAKE
-C $srcdir/src/tools/thread >&5 ||
( rm -f src/Makefile.global
AC_MSG_ERROR([Can not build thread test proram.]))
$srcdir/src/tools/thread/thread_test >&5 ||
( rm -f src/Makefile.global
AC_MSG_ERROR([Thread test program failed.]))
gmake
-C $srcdir/src/tools/thread clean >&5 ||
$MAKE
-C $srcdir/src/tools/thread clean >&5 ||
( rm -f src/Makefile.global
AC_MSG_ERROR([Can not clean thread test directory.]))
echo "yes"
...
...
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