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
16785db1
Commit
16785db1
authored
Jan 07, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Produce a full version string for Sun Studio.
from Zdenek
parent
d319a653
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
configure
configure
+2
-0
configure.in
configure.in
+3
-1
No files found.
configure
View file @
16785db1
...
...
@@ -26921,6 +26921,8 @@ echo "$as_me: using LDFLAGS=$LDFLAGS" >&6;}
# Create compiler version string
if
test
x
"
$GCC
"
=
x
"yes"
;
then
cc_string
=
"GCC
`
${
CC
}
--version
|
sed
q
`
"
elif
test
x
"
$SUN_STUDIO_CC
"
=
x
"yes"
;
then
cc_string
=
`
${
CC
}
-V
2>&1 |
sed
q
`
else
cc_string
=
$CC
fi
...
...
configure.in
View file @
16785db1
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.58
3 2009/01/07 03:39:33 momjian
Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.58
4 2009/01/07 10:38:44 petere
Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -1771,6 +1771,8 @@ AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
# Create compiler version string
if test x"$GCC" = x"yes" ; then
cc_string="GCC `${CC} --version | sed q`"
elif test x"$SUN_STUDIO_CC" = x"yes" ; then
cc_string=`${CC} -V 2>&1 | sed q`
else
cc_string=$CC
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