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
3f5d3cee
Commit
3f5d3cee
authored
Jan 24, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cope with gcc that outputs a multiline version string, per Trond.
parent
47ccf37c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
configure
configure
+2
-2
configure.in
configure.in
+1
-1
No files found.
configure
View file @
3f5d3cee
...
@@ -1481,7 +1481,7 @@ else
...
@@ -1481,7 +1481,7 @@ else
if
{
(
eval echo
configure:1482:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:1482:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
;
then
for
file
in
conftest.
*
;
do
for
file
in
conftest.
*
;
do
case
$file
in
case
$file
in
*
.c
|
*
.
C
|
*
.
o
|
*
.obj
)
;;
*
.c
|
*
.o
|
*
.obj
)
;;
*
)
ac_cv_exeext
=
`
echo
$file
|
sed
-e
s/conftest//
`
;;
*
)
ac_cv_exeext
=
`
echo
$file
|
sed
-e
s/conftest//
`
;;
esac
esac
done
done
...
@@ -1629,7 +1629,7 @@ fi
...
@@ -1629,7 +1629,7 @@ fi
# Create compiler version string
# Create compiler version string
if
test
x
"
$GCC
"
=
x
"yes"
;
then
if
test
x
"
$GCC
"
=
x
"yes"
;
then
cc_string
=
"GCC
`
${
CC
}
--version
`
"
cc_string
=
"GCC
`
${
CC
}
--version
|
head
-1
`
"
else
else
cc_string
=
$CC
cc_string
=
$CC
fi
fi
...
...
configure.in
View file @
3f5d3cee
...
@@ -297,7 +297,7 @@ AC_SUBST(GCC)
...
@@ -297,7 +297,7 @@ AC_SUBST(GCC)
# Create compiler version string
# Create compiler version string
if test x"$GCC" = x"yes" ; then
if test x"$GCC" = x"yes" ; then
cc_string="GCC `${CC} --version`"
cc_string="GCC `${CC} --version
| head -1
`"
else
else
cc_string=$CC
cc_string=$CC
fi
fi
...
...
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