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
127ea18f
Commit
127ea18f
authored
Feb 10, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add configure support for determining UINT64_FORMAT, the appropriate
snprintf format for uint64 items.
parent
feed7cf1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
7 deletions
+24
-7
configure
configure
+11
-3
configure.in
configure.in
+9
-4
src/include/pg_config.h.in
src/include/pg_config.h.in
+4
-0
No files found.
configure
View file @
127ea18f
...
...
@@ -13659,9 +13659,8 @@ fi
# If we found "long int" is 64 bits, assume snprintf handles it. If
# we found we need to use "long long int", better check. We cope with
# snprintfs that use either %lld, %qd, or %I64d as the format. If
# neither works, fall back to our own snprintf emulation (which we
# know uses %lld).
# snprintfs that use %lld, %qd, or %I64d as the format. If none of these
# work, fall back to our own snprintf emulation (which we know uses %lld).
if
test
"
$HAVE_LONG_LONG_INT_64
"
=
yes
;
then
if
test
$pgac_need_repl_snprintf
=
no
;
then
...
...
@@ -13744,10 +13743,13 @@ esac
# Here if we previously decided we needed to use our own snprintf
LONG_LONG_INT_FORMAT
=
'%lld'
fi
LONG_LONG_UINT_FORMAT
=
`
echo
"
$LONG_LONG_INT_FORMAT
"
|
sed
's/d$/u/'
`
INT64_FORMAT
=
"
\"
$LONG_LONG_INT_FORMAT
\"
"
UINT64_FORMAT
=
"
\"
$LONG_LONG_UINT_FORMAT
\"
"
else
# Here if we are not using 'long long int' at all
INT64_FORMAT
=
'"%ld"'
UINT64_FORMAT
=
'"%lu"'
fi
...
...
@@ -13756,6 +13758,12 @@ cat >>confdefs.h <<_ACEOF
_ACEOF
cat
>>
confdefs.h
<<
_ACEOF
#define UINT64_FORMAT
$UINT64_FORMAT
_ACEOF
if
test
$pgac_need_repl_snprintf
=
yes
;
then
LIBOBJS
=
"
$LIBOBJS
snprintf.
$ac_objext
"
fi
...
...
configure.in
View file @
127ea18f
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.31
3 2004/02/02 22:20:32 momjian
Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.31
4 2004/02/10 19:55:45 tgl
Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -1063,9 +1063,8 @@ fi
# If we found "long int" is 64 bits, assume snprintf handles it. If
# we found we need to use "long long int", better check. We cope with
# snprintfs that use either %lld, %qd, or %I64d as the format. If
# neither works, fall back to our own snprintf emulation (which we
# know uses %lld).
# snprintfs that use %lld, %qd, or %I64d as the format. If none of these
# work, fall back to our own snprintf emulation (which we know uses %lld).
if test "$HAVE_LONG_LONG_INT_64" = yes ; then
if test $pgac_need_repl_snprintf = no; then
...
...
@@ -1079,15 +1078,21 @@ if test "$HAVE_LONG_LONG_INT_64" = yes ; then
# Here if we previously decided we needed to use our own snprintf
LONG_LONG_INT_FORMAT='%lld'
fi
LONG_LONG_UINT_FORMAT=`echo "$LONG_LONG_INT_FORMAT" | sed 's/d$/u/'`
INT64_FORMAT="\"$LONG_LONG_INT_FORMAT\""
UINT64_FORMAT="\"$LONG_LONG_UINT_FORMAT\""
else
# Here if we are not using 'long long int' at all
INT64_FORMAT='"%ld"'
UINT64_FORMAT='"%lu"'
fi
AC_DEFINE_UNQUOTED(INT64_FORMAT, $INT64_FORMAT,
[Define to the appropriate snprintf format for 64-bit ints, if any.])
AC_DEFINE_UNQUOTED(UINT64_FORMAT, $UINT64_FORMAT,
[Define to the appropriate snprintf format for unsigned 64-bit ints, if any.])
if test $pgac_need_repl_snprintf = yes; then
AC_LIBOBJ(snprintf)
fi
...
...
src/include/pg_config.h.in
View file @
127ea18f
...
...
@@ -588,6 +588,10 @@
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
#undef TM_IN_SYS_TIME
/* Define to the appropriate snprintf format for unsigned 64-bit ints, if any.
*/
#undef UINT64_FORMAT
/* Define to 1 to build with assertion checks. (--enable-cassert) */
#undef USE_ASSERT_CHECKING
...
...
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