mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Use our own snprintf() only if NLS is enabled, and support %qd and %I64d.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl $PostgreSQL: pgsql/configure.in,v 1.403 2005/02/28 20:55:18 tgl Exp $
|
||||
dnl $PostgreSQL: pgsql/configure.in,v 1.404 2005/03/02 14:48:22 momjian Exp $
|
||||
dnl
|
||||
dnl Developers, please strive to achieve this order:
|
||||
dnl
|
||||
@ -1067,7 +1067,8 @@ AC_MSG_ERROR([[
|
||||
|
||||
|
||||
# Force use of our snprintf if system's doesn't do arg control
|
||||
if test $pgac_need_repl_snprintf = no; then
|
||||
# This feature is used by NLS
|
||||
if test "$enable_nls" = yes -a $pgac_need_repl_snprintf = no; then
|
||||
PGAC_FUNC_PRINTF_ARG_CONTROL
|
||||
if test $pgac_cv_printf_arg_control != yes ; then
|
||||
pgac_need_repl_snprintf=yes
|
||||
|
Reference in New Issue
Block a user