very slow icedtea6 builds
Gary Benson
gbenson at redhat.com
Wed Jul 2 05:27:46 PDT 2008
Gary Benson wrote:
> Can you try with the attached patch?
Yeah...
-------------- next part --------------
diff -r e0b9e60483f8 acinclude.m4
--- a/acinclude.m4 Tue Jul 01 14:16:32 2008 +0100
+++ b/acinclude.m4 Wed Jul 02 13:24:47 2008 +0100
@@ -670,28 +670,33 @@ AC_DEFUN([SET_CORE_OR_SHARK_BUILD],
AC_DEFUN([SET_CORE_OR_SHARK_BUILD],
[
AC_MSG_CHECKING(whether to use the Shark JIT)
- use_shark=no
+ shark_selected=no
AC_ARG_ENABLE([shark], [AS_HELP_STRING(--enable-shark, use Shark JIT)],
[
case "${enableval}" in
no)
;;
*)
- if test "x${ZERO_BUILD_TRUE}" = x; then
- use_shark=yes
- fi
+ shark_selected=yes
;;
esac
])
+
+ use_core=no
+ use_shark=no
+ if test "x${CACAO}" != "xno"; then
+ use_core=yes
+ elif test "x${ZERO_BUILD_TRUE}" = "x"; then
+ if test "x${shark_selected}" = "xyes"; then
+ use_shark=yes
+ else
+ use_core=yes
+ fi
+ fi
AC_MSG_RESULT($use_shark)
- if test "x${CACAO}" != "xno"; then
- AM_CONDITIONAL(CORE_BUILD, true)
- AM_CONDITIONAL(SHARK_BUILD, false)
- else
- AM_CONDITIONAL(CORE_BUILD, test "x${use_shark}" != xyes)
- AM_CONDITIONAL(SHARK_BUILD, test "x${use_shark}" = xyes)
- fi
+ AM_CONDITIONAL(CORE_BUILD, test "x${use_core}" = xyes)
+ AM_CONDITIONAL(SHARK_BUILD, test "x${use_shark}" = xyes)
])
AC_DEFUN([AC_CHECK_WITH_CACAO],
More information about the distro-pkg-dev
mailing list