Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0b09955d
Commit
0b09955d
authored
Jun 01, 1998
by
Edmund Mergl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pgsql no more needs to be installed for perl
parent
b22418d7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
src/configure
src/configure
+7
-7
src/configure.in
src/configure.in
+9
-9
No files found.
src/configure
View file @
0b09955d
...
...
@@ -890,13 +890,13 @@ else
fi
if
test
"
$USE_PERL
"
=
"true"
then
if
test
!
-x
"
$prefix
"
/bin/postgres
-a
!
-x
"
$ac_default_prefix
"
/bin/postgres
then
echo
"configure: warning: perl support disabled; postgres not previously installed"
1>&2
USE_PERL
=
fi
fi
#
if test "$USE_PERL" = "true"
#
then
#
if test ! -x "$prefix"/bin/postgres -a ! -x "$ac_default_prefix"/bin/postgres
#
then echo "configure: warning: perl support disabled; postgres not previously installed" 1>&2
#
USE_PERL=
#
fi
#
fi
export
USE_PERL
echo
$ac_n
"checking setting ASSERT CHECKING""...
$ac_c
"
1>&6
...
...
src/configure.in
View file @
0b09955d
...
...
@@ -265,15 +265,15 @@ AC_ARG_WITH(
USE_PERL=false; AC_MSG_RESULT(disabled)
)
dnl Verify that postgres is already installed
dnl per instructions for perl interface installation
if test "$USE_PERL" = "true"
then
if test ! -x "$prefix"/bin/postgres -a ! -x "$ac_default_prefix"/bin/postgres
then AC_MSG_WARN(perl support disabled; postgres not previously installed)
USE_PERL=
fi
fi
#
dnl Verify that postgres is already installed
#
dnl per instructions for perl interface installation
#
if test "$USE_PERL" = "true"
#
then
#
if test ! -x "$prefix"/bin/postgres -a ! -x "$ac_default_prefix"/bin/postgres
#
then AC_MSG_WARN(perl support disabled; postgres not previously installed)
#
USE_PERL=
#
fi
#
fi
export USE_PERL
dnl Unless we specify the command line options
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment