mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Use test && test rather than test -a, per Peter.
This commit is contained in:
2
configure
vendored
2
configure
vendored
@ -14528,7 +14528,7 @@ fi
|
|||||||
|
|
||||||
# Force use of our snprintf if system's doesn't do arg control
|
# Force use of our snprintf if system's doesn't do arg control
|
||||||
# This feature is used by NLS
|
# This feature is used by NLS
|
||||||
if test "$enable_nls" = yes -a $pgac_need_repl_snprintf = no; then
|
if test "$enable_nls" = yes && test $pgac_need_repl_snprintf = no; then
|
||||||
echo "$as_me:$LINENO: checking whether printf supports argument control" >&5
|
echo "$as_me:$LINENO: checking whether printf supports argument control" >&5
|
||||||
echo $ECHO_N "checking whether printf supports argument control... $ECHO_C" >&6
|
echo $ECHO_N "checking whether printf supports argument control... $ECHO_C" >&6
|
||||||
if test "${pgac_cv_printf_arg_control+set}" = set; then
|
if test "${pgac_cv_printf_arg_control+set}" = set; then
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl $PostgreSQL: pgsql/configure.in,v 1.404 2005/03/02 14:48:22 momjian Exp $
|
dnl $PostgreSQL: pgsql/configure.in,v 1.405 2005/03/02 15:42:35 momjian Exp $
|
||||||
dnl
|
dnl
|
||||||
dnl Developers, please strive to achieve this order:
|
dnl Developers, please strive to achieve this order:
|
||||||
dnl
|
dnl
|
||||||
@ -1068,7 +1068,7 @@ AC_MSG_ERROR([[
|
|||||||
|
|
||||||
# Force use of our snprintf if system's doesn't do arg control
|
# Force use of our snprintf if system's doesn't do arg control
|
||||||
# This feature is used by NLS
|
# This feature is used by NLS
|
||||||
if test "$enable_nls" = yes -a $pgac_need_repl_snprintf = no; then
|
if test "$enable_nls" = yes && test $pgac_need_repl_snprintf = no; then
|
||||||
PGAC_FUNC_PRINTF_ARG_CONTROL
|
PGAC_FUNC_PRINTF_ARG_CONTROL
|
||||||
if test $pgac_cv_printf_arg_control != yes ; then
|
if test $pgac_cv_printf_arg_control != yes ; then
|
||||||
pgac_need_repl_snprintf=yes
|
pgac_need_repl_snprintf=yes
|
||||||
|
Reference in New Issue
Block a user