Changeset 49008 in webkit


Ignore:
Timestamp:
Oct 1, 2009 7:50:27 PM (15 years ago)
Author:
mrowe@apple.com
Message:

Fix the Tiger build. Don't unconditionally enable 3D canvas as it is not supported on Tiger.

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r49005 r49008  
     12009-10-01  Mark Rowe  <mrowe@apple.com>
     2
     3        Fix the Tiger build.  Don't unconditionally enable 3D canvas as it is not supported on Tiger.
     4
     5        * Configurations/FeatureDefines.xcconfig:
     6
    172009-10-01  Yongjun Zhang  <yongjun.zhang@nokia.com>
    28
  • trunk/JavaScriptCore/Configurations/FeatureDefines.xcconfig

    r48400 r49008  
    2929// Set any ENABLE_FEATURE_NAME macro to an empty string to disable that feature.
    3030
    31 ENABLE_3D_CANVAS = ;
     31ENABLE_3D_CANVAS = $(ENABLE_3D_CANVAS_$(MAC_OS_X_VERSION_MAJOR));
     32ENABLE_3D_CANVAS_1050 = ENABLE_3D_CANVAS;
     33ENABLE_3D_CANVAS_1060 = ENABLE_3D_CANVAS;
    3234
    3335ENABLE_3D_RENDERING = $(ENABLE_3D_RENDERING_$(MAC_OS_X_VERSION_MAJOR));
  • trunk/WebCore/ChangeLog

    r49006 r49008  
     12009-10-01  Mark Rowe  <mrowe@apple.com>
     2
     3        Fix the Tiger build.  Don't unconditionally enable 3D canvas as it is not supported on Tiger.
     4
     5        * Configurations/FeatureDefines.xcconfig:
     6
    172009-10-01  Chris Marrin  <cmarrin@apple.com>
    28
  • trunk/WebCore/Configurations/FeatureDefines.xcconfig

    r49006 r49008  
    2929// Set any ENABLE_FEATURE_NAME macro to an empty string to disable that feature.
    3030
    31 ENABLE_3D_CANVAS = ENABLE_3D_CANVAS;
     31ENABLE_3D_CANVAS = $(ENABLE_3D_CANVAS_$(MAC_OS_X_VERSION_MAJOR));
     32ENABLE_3D_CANVAS_1050 = ENABLE_3D_CANVAS;
     33ENABLE_3D_CANVAS_1060 = ENABLE_3D_CANVAS;
    3234
    3335ENABLE_3D_RENDERING = $(ENABLE_3D_RENDERING_$(MAC_OS_X_VERSION_MAJOR));
  • trunk/WebKit/mac/ChangeLog

    r49006 r49008  
     12009-10-01  Mark Rowe  <mrowe@apple.com>
     2
     3        Fix the Tiger build.  Don't unconditionally enable 3D canvas as it is not supported on Tiger.
     4
     5        * Configurations/FeatureDefines.xcconfig:
     6
    172009-10-01  Chris Marrin  <cmarrin@apple.com>
    28
  • trunk/WebKit/mac/Configurations/FeatureDefines.xcconfig

    r49006 r49008  
    2929// Set any ENABLE_FEATURE_NAME macro to an empty string to disable that feature.
    3030
    31 ENABLE_3D_CANVAS = ENABLE_3D_CANVAS;
     31ENABLE_3D_CANVAS = $(ENABLE_3D_CANVAS_$(MAC_OS_X_VERSION_MAJOR));
     32ENABLE_3D_CANVAS_1050 = ENABLE_3D_CANVAS;
     33ENABLE_3D_CANVAS_1060 = ENABLE_3D_CANVAS;
    3234
    3335ENABLE_3D_RENDERING = $(ENABLE_3D_RENDERING_$(MAC_OS_X_VERSION_MAJOR));
Note: See TracChangeset for help on using the changeset viewer.