Skip to content

Commit 34501e3

Browse files
committed
WIP3
1 parent 2e56a83 commit 34501e3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

postgresql-libpq-pgconfig/configure

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3732,7 +3732,8 @@ else
37323732
found_postgresql=no
37333733
fi
37343734
else $as_nop
3735-
if test -n "$PKG_CONFIG" && \
3735+
echo "foo1 $found_postgresql"
3736+
if test -n "$PKG_CONFIG" && \
37363737
{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpq >= \"\$postgresql_version_req\"\""; } >&5
37373738
($PKG_CONFIG --exists --print-errors "libpq >= "$postgresql_version_req"") 2>&5
37383739
ac_status=$?
@@ -3743,10 +3744,12 @@ else
37433744
found_postgresql=no
37443745
fi
37453746
fi
3747+
echo "foo2 $found_postgresql"
37463748
if test "X$found_postgresql" = "no"
37473749
then :
37483750
break
37493751
fi
3752+
echo "foo3 $found_postgresql"
37503753
37513754
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the PostgreSQL libraries CPPFLAGS" >&5
37523755
printf %s "checking for the PostgreSQL libraries CPPFLAGS... " >&6; }

postgresql-libpq-pgconfig/m4/ax_lib_postgresql.m4

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,12 @@ 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"
118119
[PKG_CHECK_EXISTS([libpq >= "$postgresql_version_req"],
119120
[found_postgresql=yes],[found_postgresql=no])])
121+
echo "foo2 $found_postgresql"
120122
AS_IF([test "X$found_postgresql" = "no"],[break])
123+
echo "foo3 $found_postgresql"
121124
122125
AC_CACHE_CHECK([for the PostgreSQL libraries CPPFLAGS],[ac_cv_POSTGRESQL_CPPFLAGS],
123126
[ac_cv_POSTGRESQL_CPPFLAGS="`$PKG_CONFIG libpq --cflags-only-I`" || _AX_LIB_POSTGRESQL_PKG_CONFIG_fail=yes])

0 commit comments

Comments
 (0)