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
f3b21184
Commit
f3b21184
authored
Sep 06, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add JAVA_HOME test for Ant.
parent
847f8b39
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
configure
configure
+5
-0
configure.in
configure.in
+4
-1
No files found.
configure
View file @
f3b21184
...
...
@@ -3020,6 +3020,11 @@ if test "${with_java+set}" = set; then
yes
)
echo
"
$as_me
:
$LINENO
: result: yes"
>
&5
echo
"
${
ECHO_T
}
yes"
>
&6
if
test
!
"
$JAVA_HOME
"
-o
!
-d
"
$JAVA_HOME
"
;
then
{
{
echo
"
$as_me
:
$LINENO
: error: Set the JAVA_HOME environment variable to build Java components"
>
&5
echo
"
$as_me
: error: Set the JAVA_HOME environment variable to build Java components"
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
}
fi
for
ac_prog
in
jakarta-ant ant ant.sh ant.bat
do
...
...
configure.in
View file @
f3b21184
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.20
6 2002/09/05 18:28:45 petere
Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.20
7 2002/09/06 14:31:16 momjian
Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -371,6 +371,9 @@ AC_SUBST(with_python)
AC_MSG_CHECKING([whether to build Java/JDBC tools])
PGAC_ARG_BOOL(with, java, no, [ --with-java build JDBC interface and Java tools],
[AC_MSG_RESULT(yes)
if test ! "$JAVA_HOME" -o ! -d "$JAVA_HOME" ; then
AC_MSG_ERROR([Set the JAVA_HOME environment variable to build Java components])
fi
PGAC_PATH_ANT
if test -z "$ANT"; then
AC_MSG_ERROR([Ant is required to build Java components])
...
...
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