Skip to content

Commit f33b316

Browse files
committed
WIP2
1 parent 40433a3 commit f33b316

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

postgresql-libpq-pgconfig/configure

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4003,14 +4003,16 @@ then :
40034003
_AX_LIB_POSTGRESQL_OLD_LIBS="$LIBS"
40044004
LIBS="$LIBS $POSTGRESQL_LIBS"
40054005
while true; do
4006-
ac_fn_c_check_header_compile "$LINENO" "libpq-fe.h" "ac_cv_header_libpq_fe_h" "$ac_includes_default"
4006+
echo "foo $CPPFLAGS $LDFLAGS $LIBS"
4007+
ac_fn_c_check_header_compile "$LINENO" "libpq-fe.h" "ac_cv_header_libpq_fe_h" "$ac_includes_default"
40074008
if test "x$ac_cv_header_libpq_fe_h" = xyes
40084009
then :
40094010
40104011
else $as_nop
40114012
found_postgresql=no
40124013
fi
40134014
4015+
echo "foo $found_postgresql"
40144016
if test "X$found_postgresql" = "Xno"
40154017
then :
40164018
break

postgresql-libpq-pgconfig/m4/ax_lib_postgresql.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,9 @@ AC_DEFUN([AX_LIB_POSTGRESQL],
201201
LIBS="$LIBS $POSTGRESQL_LIBS"
202202
while true; do
203203
dnl try to compile
204+
echo "foo $CPPFLAGS $LDFLAGS $LIBS"
204205
AC_CHECK_HEADER([libpq-fe.h],[],[found_postgresql=no])
206+
echo "foo $found_postgresql"
205207
AS_IF([test "X$found_postgresql" = "Xno"],[break])
206208
dnl try now to link
207209
AC_CACHE_CHECK([for the PostgreSQL library linking is working],[ac_cv_postgresql_found],

0 commit comments

Comments
 (0)