Skip to content

Commit 067cb82

Browse files
committed
The problem is that $ac_cv_prog_gcc is empty, instead of 'no' or
whatsoever. The patch is not a solution, because configure is generated from configure.in, and I don't know how to patch it to get a working 'configure'. From: "Pedro J. Lobo" <pjlobo@euitt.upm.es>
1 parent ded3f3b commit 067cb82

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3224,7 +3224,7 @@ else
32243224
fi
32253225
rm -f conftest*
32263226

3227-
if test $ac_cv_prog_gcc = yes; then
3227+
if test x$ac_cv_prog_gcc = xyes; then
32283228
echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&6
32293229
echo "configure:3230: checking whether ${CC-cc} needs -traditional" >&5
32303230
if eval "test \"`echo '$''{'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then

src/configure.in

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,6 @@ else
259259
AC_DEFINE(NO_ASSERT_CHECKING)
260260
fi
261261

262-
dnl We use the default value of 5432 for the DEF_PGPORT value. If
263-
dnl we over-ride it with --with-pgport=port then we bypass this piece
264262
if test "X$with_compiler" != "X"
265263
then
266264
CC=$with_compiler

0 commit comments

Comments
 (0)