Changeset 10412 in webkit for trunk/JavaScriptCore/kjs/config.h


Ignore:
Timestamp:
Aug 31, 2005, 12:57:56 AM (20 years ago)
Author:
darin
Message:

Reviewed, tweaked, and landed by Darin.

  • kjs/config.h: Added a WIN32 case in here, with suitable defines. (To be tweaked as necessary.)
  • kjs/function.cpp: Took out APPLE_CHANGES around use of ICU.
  • kjs/operations.cpp: Removed some bogus code that always set HAVE_FLOAT_H.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/config.h

    r5028 r10412  
     1#if !WIN32
     2
    13#define HAVE_FUNC_ISINF 1
    24#define HAVE_FUNC_ISNAN 1
    3 #define HAVE_FUNC_STRTOLL 1
    4 #define HAVE_STRING_H 1
    55#define HAVE_STRINGS_H 1
    66#define HAVE_SYS_PARAM_H 1
    77#define HAVE_SYS_TIME_H 1
     8#define TIME_WITH_SYS_TIME 1
     9
     10#else
     11
     12#define HAVE_FLOAT_H 1
     13#define HAVE_FUNC__FINITE 1
     14
     15#endif
     16
     17#define HAVE_FUNC_STRTOLL 1
     18#define HAVE_ICU 1
    819#define HAVE_PCREPOSIX 1
    9 #define TIME_WITH_SYS_TIME 1
     20#define HAVE_STRING_H 1
     21
    1022#ifdef __ppc__
    1123#define WORDS_BIGENDIAN 1
Note: See TracChangeset for help on using the changeset viewer.