Changeset 95904 in webkit


Ignore:
Timestamp:
Sep 23, 2011 10:30:04 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

[DRT] Include the right config file for EFL's DRT.
https://bugs.webkit.org/show_bug.cgi?id=67042

Patch by Raphael Kubo da Costa <kubo@profusion.mobi> on 2011-09-23
Reviewed by Martin Robinson.

Ports which use CMake as their buildsystem (such as the EFL one) also
have config.h files, but they are named differently, so include the
right one depending on the buildsystem being used.

  • DumpRenderTree/config.h:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r95894 r95904  
     12011-09-23  Raphael Kubo da Costa  <kubo@profusion.mobi>
     2
     3        [DRT] Include the right config file for EFL's DRT.
     4        https://bugs.webkit.org/show_bug.cgi?id=67042
     5
     6        Reviewed by Martin Robinson.
     7
     8        Ports which use CMake as their buildsystem (such as the EFL one) also
     9        have config.h files, but they are named differently, so include the
     10        right one depending on the buildsystem being used.
     11
     12        * DumpRenderTree/config.h:
     13
    1142011-09-23  Adam Klein  <adamk@chromium.org>
    215
  • trunk/Tools/DumpRenderTree/config.h

    r94916 r95904  
    2222
    2323#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
     24#if defined(BUILDING_WITH_CMAKE)
     25#include "cmakeconfig.h"
     26#else
    2427#include "autotoolsconfig.h"
     28#endif
    2529#endif
    2630
Note: See TracChangeset for help on using the changeset viewer.