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
3e4e00eb
Commit
3e4e00eb
authored
Jun 11, 2000
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small bug fix
parent
c500cdd2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
configure
configure
+3
-3
configure.in
configure.in
+3
-3
No files found.
configure
View file @
3e4e00eb
...
...
@@ -7084,7 +7084,7 @@ fi
if
[
$HAVE_LONG_LONG_INT_64
-eq
1
]
;
then
if
[
x
"
$HAVE_LONG_LONG_INT_64
"
=
xyes
]
;
then
if
[
x
$SNPRINTF
=
x
]
;
then
echo
$ac_n
"checking whether snprintf handles 'long long int' as %lld""...
$ac_c
"
1>&6
echo
"configure:7091: checking whether snprintf handles 'long long int' as %lld"
>
&5
...
...
@@ -7328,7 +7328,7 @@ cat >> confdefs.h <<EOF
EOF
if
[
$HAVE_LONG_LONG_INT_64
-eq
1
]
;
then
if
[
x
"
$HAVE_LONG_LONG_INT_64
"
=
xyes
]
;
then
echo
$ac_n
"checking alignment of long long int""...
$ac_c
"
1>&6
echo
"configure:7334: checking alignment of long long int"
>
&5
if
eval
"test
\"
`
echo
'$''{'
pgac_cv_alignof_long_long_int
'+set}'
`
\"
= set"
;
then
...
...
@@ -7417,7 +7417,7 @@ if test $pgac_cv_alignof_double != 'sizeof(double)' ; then
if
test
$MAX_ALIGNOF
-lt
$pgac_cv_alignof_double
;
then
MAX_ALIGNOF
=
$pgac_cv_alignof_double
fi
if
test
$HAVE_LONG_LONG_INT_64
-eq
1
&&
test
$MAX_ALIGNOF
-lt
$pgac_cv_alignof_long_long_int
;
then
if
test
x
"
$HAVE_LONG_LONG_INT_64
"
=
xyes
&&
test
$MAX_ALIGNOF
-lt
$pgac_cv_alignof_long_long_int
;
then
MAX_ALIGNOF
=
"
$pgac_cv_alignof_long_long_int
"
fi
else
...
...
configure.in
View file @
3e4e00eb
...
...
@@ -911,7 +911,7 @@ dnl We cope with snprintfs that use either %lld or %qd as the format.
dnl If neither works, fall back to our own snprintf emulation (which we
dnl know uses %lld).
if [[
$HAVE_LONG_LONG_INT_64 -eq 1
]] ; then
if [[
x"$HAVE_LONG_LONG_INT_64" = xyes
]] ; then
if [[ x$SNPRINTF = x ]] ; then
AC_MSG_CHECKING(whether snprintf handles 'long long int' as %lld)
AC_TRY_RUN([#include <stdio.h>
...
...
@@ -1002,7 +1002,7 @@ dnl Determine memory alignment requirements for the basic C datatypes.
PGAC_CHECK_ALIGNOF(short)
PGAC_CHECK_ALIGNOF(int)
PGAC_CHECK_ALIGNOF(long)
if [[
$HAVE_LONG_LONG_INT_64 -eq 1
]] ; then
if [[
x"$HAVE_LONG_LONG_INT_64" = xyes
]] ; then
PGAC_CHECK_ALIGNOF(long long int)
fi
PGAC_CHECK_ALIGNOF(double)
...
...
@@ -1016,7 +1016,7 @@ if test $pgac_cv_alignof_double != 'sizeof(double)' ; then
if test $MAX_ALIGNOF -lt $pgac_cv_alignof_double ; then
MAX_ALIGNOF=$pgac_cv_alignof_double
fi
if test
$HAVE_LONG_LONG_INT_64 -eq 1
&& test $MAX_ALIGNOF -lt $pgac_cv_alignof_long_long_int ; then
if test
x"$HAVE_LONG_LONG_INT_64" = xyes
&& test $MAX_ALIGNOF -lt $pgac_cv_alignof_long_long_int ; then
MAX_ALIGNOF="$pgac_cv_alignof_long_long_int"
fi
else
...
...
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