Changeset 13089 in webkit for trunk/JavaScriptCore/kjs/config.h
- Timestamp:
- Mar 2, 2006, 1:12:06 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/config.h
r12305 r13089 1 #if __APPLE__ 1 #include <kxmlcore/Platform.h> 2 3 #if PLATFORM(DARWIN) 2 4 3 5 #define HAVE_ERRNO_H 1 … … 11 13 #define HAVE_SYS_TIMEB_H 1 12 14 13 #define KJS_MULTIPLE_THREADS 1 14 15 #elif WIN32 15 #elif PLATFORM(WIN_OS) 16 16 17 17 #define HAVE_FLOAT_H 1 18 18 #define HAVE_FUNC__FINITE 1 19 19 #define HAVE_SYS_TIMEB_H 1 20 21 20 22 #define USE_SYSTEM_MALLOC 1 21 23 22 24 #else 25 26 // FIXME: is this actually used or do other platforms generate their 27 // own config.h? 23 28 24 29 #define HAVE_ERRNO_H 1 … … 33 38 #endif 34 39 35 #define HAVE_FUNC_STRTOLL 136 40 #define HAVE_ICU 1 37 41 #define HAVE_PCREPOSIX 1 42 43 // FIXME: if all platforms have these, do they really need #defines? 38 44 #define HAVE_STDINT_H 1 39 45 #define HAVE_STRING_H 1 40 41 #if __ppc__ || __PPC__ || __powerpc__42 #define KJS_CPU_PPC 143 #define WORDS_BIGENDIAN 144 #elif __ppc64__ || __PPC64__45 #define KJS_CPU_PPC64 146 #define WORDS_BIGENDIAN 147 #elif __i386__48 #define KJS_CPU_X86 149 #endif50 46 51 47 #define KXC_CHANGES 1
Note:
See TracChangeset
for help on using the changeset viewer.