Changeset 43766 in webkit


Ignore:
Timestamp:
May 15, 2009 5:43:52 AM (15 years ago)
Author:
jmalonzo@webkit.org
Message:

2009-05-15 Fridrich Strba <fridrich.strba@bluewin.ch>

Reviewed by Jan Alonzo.

Use AC_CANONICAL_HOST instead of AC_CANONICAL_SYSTEM, since
the JIT compiler is not a cross-compiler

  • configure.ac:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r43628 r43766  
     12009-05-15  Fridrich Strba  <fridrich.strba@bluewin.ch>
     2
     3        Reviewed by Jan Alonzo.
     4
     5        Use AC_CANONICAL_HOST instead of AC_CANONICAL_SYSTEM, since
     6        the JIT compiler is not a cross-compiler
     7
     8        * configure.ac:
     9
    1102009-05-13  Xan Lopez  <xlopez@igalia.com>
    211
  • trunk/configure.ac

    r43628 r43766  
    1212
    1313AC_CONFIG_HEADERS([autotoolsconfig.h])
    14 AC_CANONICAL_SYSTEM
     14AC_CANONICAL_HOST
    1515
    1616WEBKIT_MAJOR_VERSION=webkit_major_version
     
    496496              [],[enable_jit="yes"])
    497497if test "$enable_jit" = "yes"; then
    498     case "$target_cpu" in
     498    case "$host_cpu" in
    499499        i*86|x86_64)
    500500            AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
     
    503503            AC_DEFINE([ENABLE_JIT_OPTIMIZE_PROPERTY_ACCESS], [1], [Define to enable optimized property access])
    504504            AC_DEFINE([ENABLE_JIT_OPTIMIZE_ARITHMETIC], [1], [Define to enable optimized arithmetic])
    505             case "$target_cpu" in
     505            case "$host_cpu" in
    506506                i*86)
    507507                    AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_VA_LIST], [1], [Use stub va_list])
     
    514514        ;;
    515515        *)
    516             enable_jit="no (CPU '$target_cpu' not supported)"
     516            enable_jit="no (CPU '$host_cpu' not supported)"
    517517        ;;
    518518    esac
Note: See TracChangeset for help on using the changeset viewer.