source: webkit/trunk/JavaScriptCore/JavaScriptCorePrefix.h@ 71754

Last change on this file since 71754 was 71754, checked in by Csaba Osztrogonác, 15 years ago

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • Configurations/FeatureDefines.xcconfig:
  • JavaScriptCorePrefix.h:: Touch it to avoid incremental build failure on Windows.

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • features.gypi:

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

  • WebKitPrefix.h: Touch it to avoid incremental build failure on Windows.

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • Configurations/FeatureDefines.xcconfig:

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • win/tools/vsprops/FeatureDefines.vsprops:
  • win/tools/vsprops/FeatureDefinesCairo.vsprops:

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • Configurations/FeatureDefines.xcconfig:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCorePrefix.h: Touch WebCorePrefix.h to avoid incremental build failure on Windows.
  • config.h: Touch config.h to avoid incremental build failure on Windows.
  • features.pri:
  • html/HTMLTagNames.in:
  • rendering/RenderBlock.cpp: Remove ENABLE_RUBY guard. (WebCore::canMergeContiguousAnonymousBlocks):
  • rendering/RenderObject.cpp: Remove ENABLE_RUBY guard. (WebCore::RenderObject::createObject):
  • rendering/RenderRuby.cpp: Remove ENABLE_RUBY guard.
  • rendering/RenderRuby.h: Remove ENABLE_RUBY guard.
  • rendering/RenderRubyBase.cpp: Remove ENABLE_RUBY guard.
  • rendering/RenderRubyBase.h: Remove ENABLE_RUBY guard.
  • rendering/RenderRubyRun.cpp: Remove ENABLE_RUBY guard.
  • rendering/RenderRubyRun.h: Remove ENABLE_RUBY guard.
  • rendering/RenderRubyText.cpp: Remove ENABLE_RUBY guard.
  • rendering/RenderRubyText.h: Remove ENABLE_RUBY guard.

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • cmake/OptionsEfl.cmake:
  • cmakeconfig.h.cmake:
  • configure.ac:

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • Scripts/build-webkit:

2010-11-10 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by David Hyatt.

HTML5 Ruby support should be mandatory feature
https://bugs.webkit.org/show_bug.cgi?id=49272

Remove Ruby as optional feature.

  • Configurations/FeatureDefines.xcconfig:
  • WebKit2Prefix.h: Touch it to avoid incremental build failure on Windows.
  • Property svn:eol-style set to native
File size: 756 bytes
Line 
1#ifdef __cplusplus
2#define NULL __null
3#else
4#define NULL ((void *)0)
5#endif
6
7#include <ctype.h>
8#include <float.h>
9#include <locale.h>
10#include <math.h>
11#include <stdio.h>
12#include <stdlib.h>
13#include <string.h>
14#include <strings.h>
15#include <time.h>
16#include <sys/param.h>
17#include <sys/time.h>
18#include <sys/timeb.h>
19#include <sys/types.h>
20
21#ifdef __cplusplus
22
23#include <list>
24#include <typeinfo>
25
26#endif
27
28#ifdef __cplusplus
29#define new ("if you use new/delete make sure to include config.h at the top of the file"())
30#define delete ("if you use new/delete make sure to include config.h at the top of the file"())
31#endif
32
33/* Work around bug with C++ library that screws up Objective-C++ when exception support is disabled. */
34#undef try
35#undef catch
36
Note: See TracBrowser for help on using the repository browser.