Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0b09955

Browse files
Edmund MerglEdmund Mergl
Edmund Mergl
authored and
Edmund Mergl
committed
pgsql no more needs to be installed for perl
1 parent b22418d commit 0b09955

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

src/configure

+7-7
Original file line numberDiff line numberDiff line change
@@ -890,13 +890,13 @@ else
890890
fi
891891

892892

893-
if test "$USE_PERL" = "true"
894-
then
895-
if test ! -x "$prefix"/bin/postgres -a ! -x "$ac_default_prefix"/bin/postgres
896-
then echo "configure: warning: perl support disabled; postgres not previously installed" 1>&2
897-
USE_PERL=
898-
fi
899-
fi
893+
#if test "$USE_PERL" = "true"
894+
#then
895+
# if test ! -x "$prefix"/bin/postgres -a ! -x "$ac_default_prefix"/bin/postgres
896+
# then echo "configure: warning: perl support disabled; postgres not previously installed" 1>&2
897+
# USE_PERL=
898+
# fi
899+
#fi
900900
export USE_PERL
901901

902902
echo $ac_n "checking setting ASSERT CHECKING""... $ac_c" 1>&6

src/configure.in

+9-9
Original file line numberDiff line numberDiff line change
@@ -265,15 +265,15 @@ AC_ARG_WITH(
265265
USE_PERL=false; AC_MSG_RESULT(disabled)
266266
)
267267

268-
dnl Verify that postgres is already installed
269-
dnl per instructions for perl interface installation
270-
if test "$USE_PERL" = "true"
271-
then
272-
if test ! -x "$prefix"/bin/postgres -a ! -x "$ac_default_prefix"/bin/postgres
273-
then AC_MSG_WARN(perl support disabled; postgres not previously installed)
274-
USE_PERL=
275-
fi
276-
fi
268+
#dnl Verify that postgres is already installed
269+
#dnl per instructions for perl interface installation
270+
#if test "$USE_PERL" = "true"
271+
#then
272+
# if test ! -x "$prefix"/bin/postgres -a ! -x "$ac_default_prefix"/bin/postgres
273+
# then AC_MSG_WARN(perl support disabled; postgres not previously installed)
274+
# USE_PERL=
275+
# fi
276+
#fi
277277
export USE_PERL
278278

279279
dnl Unless we specify the command line options

0 commit comments

Comments
 (0)