Changeset 96123 in webkit


Ignore:
Timestamp:
Sep 27, 2011 10:06:26 AM (13 years ago)
Author:
Csaba Osztrogonác
Message:

Fix ENABLE(SQL_DATABASE)=0 build after r95919
https://bugs.webkit.org/show_bug.cgi?id=68902

r95919 enabled OFFLINE_WEB_APPLICATIONS by default and
it needs SQLite stuff even if ENABLE_SQL_DATABASE=0.

Reviewed by Adam Barth.

  • platform/sql/SQLiteAuthorizer.cpp:
  • platform/sql/SQLiteDatabase.cpp:
  • platform/sql/SQLiteFileSystem.cpp:
  • platform/sql/SQLiteStatement.cpp:
  • platform/sql/SQLiteTransaction.cpp:
  • storage/DatabaseAuthorizer.cpp:
Location:
trunk/Source/WebCore
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r96122 r96123  
     12011-09-27  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix ENABLE(SQL_DATABASE)=0 build after r95919
     4        https://bugs.webkit.org/show_bug.cgi?id=68902
     5
     6        r95919 enabled OFFLINE_WEB_APPLICATIONS by default and
     7        it needs SQLite stuff even if ENABLE_SQL_DATABASE=0.
     8
     9        Reviewed by Adam Barth.
     10
     11        * platform/sql/SQLiteAuthorizer.cpp:
     12        * platform/sql/SQLiteDatabase.cpp:
     13        * platform/sql/SQLiteFileSystem.cpp:
     14        * platform/sql/SQLiteStatement.cpp:
     15        * platform/sql/SQLiteTransaction.cpp:
     16        * storage/DatabaseAuthorizer.cpp:
     17
    1182011-09-27  Julien Chaffraix  <jchaffraix@webkit.org>
    219
  • trunk/Source/WebCore/platform/sql/SQLiteAuthorizer.cpp

    r95271 r96123  
    3030#include "DatabaseAuthorizer.h"
    3131
    32 #if ENABLE(SQL_DATABASE)
    33 
    3432#include <sqlite3.h>
    3533
     
    4139
    4240} // namespace WebCore
    43 
    44 #endif // ENABLE(SQL_DATABASE)
  • trunk/Source/WebCore/platform/sql/SQLiteDatabase.cpp

    r95271 r96123  
    2727#include "config.h"
    2828#include "SQLiteDatabase.h"
    29 
    30 #if ENABLE(SQL_DATABASE)
    3129
    3230#include "DatabaseAuthorizer.h"
     
    472470
    473471} // namespace WebCore
    474 
    475 #endif // ENABLE(SQL_DATABASE)
  • trunk/Source/WebCore/platform/sql/SQLiteFileSystem.cpp

    r95901 r96123  
    3232#include "config.h"
    3333#include "SQLiteFileSystem.h"
    34 
    35 #if ENABLE(SQL_DATABASE)
    3634
    3735#include "FileSystem.h"
     
    126124
    127125} // namespace WebCore
    128 
    129 #endif // ENABLE(SQL_DATABASE)
  • trunk/Source/WebCore/platform/sql/SQLiteStatement.cpp

    r95271 r96123  
    2727#include "SQLiteStatement.h"
    2828
    29 #if ENABLE(SQL_DATABASE)
    30 
    3129#include "Logging.h"
    3230#include "SQLValue.h"
     
    546544
    547545} // namespace WebCore
    548 
    549 #endif // ENABLE(SQL_DATABASE)
  • trunk/Source/WebCore/platform/sql/SQLiteTransaction.cpp

    r95271 r96123  
    2626#include "config.h"
    2727#include "SQLiteTransaction.h"
    28 
    29 #if ENABLE(SQL_DATABASE)
    3028
    3129#include "SQLiteDatabase.h"
     
    104102
    105103} // namespace WebCore
    106 
    107 #endif // ENABLE(SQL_DATABASE)
  • trunk/Source/WebCore/storage/DatabaseAuthorizer.cpp

    r95271 r96123  
    2929#include "config.h"
    3030#include "DatabaseAuthorizer.h"
    31 
    32 #if ENABLE(SQL_DATABASE)
    3331
    3432#include "PlatformString.h"
     
    435433
    436434} // namespace WebCore
    437 
    438 #endif
Note: See TracChangeset for help on using the changeset viewer.