re PR libgcj/20750 (libgcj needs a --with-java-home configure option)
2005-04-05 Thomas Fitzsimmons <fitzsim@redhat.com> * doc/install.texi (Configuration): Document --with-java-home. 2005-04-05 Thomas Fitzsimmons <fitzsim@redhat.com> PR libgcj/20750 * Makefile.am (AM_CXXFLAGS): Define JAVA_HOME. * Makefile.in: Regenerate. * configure.ac: Add --with-java-home option. * configure: Regenerate. * external/Makefile.in: Regenerate. * external/sax/Makefile.in: Regenerate. * external/w3c_dom/Makefile.in: Regenerate. * gcj/Makefile.in: Regenerate. * include/Makefile.in: Regenerate. * testsuite/Makefile.in: Regenerate. * java/lang/natRuntime.cc (insertSystemProperties): Set java.home to JAVA_HOME macro. From-SVN: r97671
This commit is contained in:
parent
c72a879da7
commit
c33b7bf04a
14 changed files with 107 additions and 6 deletions
|
@ -213,6 +213,13 @@ AC_ARG_ENABLE(libgcj-multifile,
|
|||
esac],[enable_libgcj_multifile=no])
|
||||
AM_CONDITIONAL(ONESTEP, test "$enable_libgcj_multifile" = yes)
|
||||
|
||||
AC_ARG_WITH(java-home,
|
||||
AS_HELP_STRING([--with-java-home=DIRECTORY],
|
||||
[value of java.home system property]),
|
||||
[JAVA_HOME="${withval}"], [JAVA_HOME=""])
|
||||
AM_CONDITIONAL(JAVA_HOME_SET, test ! -z "$JAVA_HOME")
|
||||
AC_SUBST(JAVA_HOME)
|
||||
|
||||
# What is the native OS API for MinGW?
|
||||
AC_ARG_WITH(win32-nlsapi,
|
||||
AS_HELP_STRING([--with-win32-nlsapi=ansi or unicows or unicode],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue