Skip to content

Commit 47db1fa

Browse files
committed
again
1 parent 34501e3 commit 47db1fa

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

postgresql-libpq-pgconfig/configure

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3732,8 +3732,7 @@ else
37323732
found_postgresql=no
37333733
fi
37343734
else $as_nop
3735-
echo "foo1 $found_postgresql"
3736-
if test -n "$PKG_CONFIG" && \
3735+
if test -n "$PKG_CONFIG" && \
37373736
{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpq >= \"\$postgresql_version_req\"\""; } >&5
37383737
($PKG_CONFIG --exists --print-errors "libpq >= "$postgresql_version_req"") 2>&5
37393738
ac_status=$?
@@ -3744,12 +3743,10 @@ else
37443743
found_postgresql=no
37453744
fi
37463745
fi
3747-
echo "foo2 $found_postgresql"
3748-
if test "X$found_postgresql" = "no"
3746+
if test "X$found_postgresql" = "Xno"
37493747
then :
37503748
break
37513749
fi
3752-
echo "foo3 $found_postgresql"
37533750
37543751
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the PostgreSQL libraries CPPFLAGS" >&5
37553752
printf %s "checking for the PostgreSQL libraries CPPFLAGS... " >&6; }
@@ -4006,16 +4003,14 @@ then :
40064003
_AX_LIB_POSTGRESQL_OLD_LIBS="$LIBS"
40074004
LIBS="$LIBS $POSTGRESQL_LIBS"
40084005
while true; do
4009-
echo "foo $CPPFLAGS $LDFLAGS $LIBS"
4010-
ac_fn_c_check_header_compile "$LINENO" "libpq-fe.h" "ac_cv_header_libpq_fe_h" "$ac_includes_default"
4006+
ac_fn_c_check_header_compile "$LINENO" "libpq-fe.h" "ac_cv_header_libpq_fe_h" "$ac_includes_default"
40114007
if test "x$ac_cv_header_libpq_fe_h" = xyes
40124008
then :
40134009
40144010
else $as_nop
40154011
found_postgresql=no
40164012
fi
40174013
4018-
echo "foo $found_postgresql"
40194014
if test "X$found_postgresql" = "Xno"
40204015
then :
40214016
break
@@ -4027,7 +4022,6 @@ then :
40274022
printf %s "(cached) " >&6
40284023
else $as_nop
40294024
4030-
echo "here $CPPFLAGS $LDFLAGS $LIBS"
40314025
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
40324026
/* end confdefs.h. */
40334027

postgresql-libpq-pgconfig/m4/ax_lib_postgresql.m4

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,9 @@ AC_DEFUN([_AX_LIB_POSTGRESQL_PKG_CONFIG],
115115
_AX_LIB_POSTGRESQL_PKG_CONFIG_fail=no;
116116
AS_IF([test "X$postgresql_version_req" = "X"],
117117
[PKG_CHECK_EXISTS([libpq],[found_postgresql_pkg_config=yes],[found_postgresql=no])],
118-
echo "foo1 $found_postgresql"
119118
[PKG_CHECK_EXISTS([libpq >= "$postgresql_version_req"],
120119
[found_postgresql=yes],[found_postgresql=no])])
121-
echo "foo2 $found_postgresql"
122-
AS_IF([test "X$found_postgresql" = "no"],[break])
123-
echo "foo3 $found_postgresql"
120+
AS_IF([test "X$found_postgresql" = "Xno"],[break])
124121
125122
AC_CACHE_CHECK([for the PostgreSQL libraries CPPFLAGS],[ac_cv_POSTGRESQL_CPPFLAGS],
126123
[ac_cv_POSTGRESQL_CPPFLAGS="`$PKG_CONFIG libpq --cflags-only-I`" || _AX_LIB_POSTGRESQL_PKG_CONFIG_fail=yes])
@@ -204,14 +201,11 @@ AC_DEFUN([AX_LIB_POSTGRESQL],
204201
LIBS="$LIBS $POSTGRESQL_LIBS"
205202
while true; do
206203
dnl try to compile
207-
echo "foo $CPPFLAGS $LDFLAGS $LIBS"
208204
AC_CHECK_HEADER([libpq-fe.h],[],[found_postgresql=no])
209-
echo "foo $found_postgresql"
210205
AS_IF([test "X$found_postgresql" = "Xno"],[break])
211206
dnl try now to link
212207
AC_CACHE_CHECK([for the PostgreSQL library linking is working],[ac_cv_postgresql_found],
213208
[
214-
echo "here $CPPFLAGS $LDFLAGS $LIBS"
215209
AC_LINK_IFELSE([
216210
AC_LANG_PROGRAM(
217211
[

0 commit comments

Comments
 (0)