Changeset 27047 in webkit


Ignore:
Timestamp:
Oct 25, 2007 8:00:55 AM (16 years ago)
Author:
alp
Message:

2007-10-25 Alp Toker <alp@atoker.com>

Unreviewed fix to make the GTK+ port run.

http://bugs.webkit.org/show_bug.cgi?id=15686
GtkLauncher aborts on launch due to uninitialized threading subsystem

http://bugs.webkit.org/show_bug.cgi?id=15688
[GTK] Make it possible to disable database support

Disable database support until #15686 is fixed.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r27046 r27047  
     12007-10-25  Alp Toker  <alp@atoker.com>
     2
     3        Unreviewed fix to make the GTK+ port run.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=15686
     6        GtkLauncher aborts on launch due to uninitialized threading subsystem
     7
     8        Disable database support until #15686 is fixed.
     9
     10        * WebCore.pro:
     11
    1122007-10-25  Simon Hausmann  <hausmann@kde.org>
    213
  • trunk/WebCore/WebCore.pro

    r26906 r27047  
    5252
    5353gtk-port: PKGCONFIG += gthread-2.0
     54
     55# Database support temporarily disabled, see http://bugs.webkit.org/show_bug.cgi?id=15686
     56gtk-port: DEFINES += ENABLE_ICONDATABASE=0 ENABLE_DATABASE=0
    5457
    5558# Optional components (look for defs in config.h and included files!)
  • trunk/WebKit/gtk/Api/webkitgtkglobal.cpp

    r27010 r27047  
    4040    WebCore::InitializeLoggingChannelsIfNecessary();
    4141
     42#if ENABLE(DATABASE)
    4243    // FIXME: It should be possible for client applications to override this default location
    4344    gchar* databaseDirectory = g_build_filename(g_get_user_data_dir(), "webkit", "databases", NULL);
    4445    WebCore::DatabaseTracker::tracker().setDatabasePath(databaseDirectory);
    4546    g_free(databaseDirectory);
     47#endif
    4648}
    4749}
  • trunk/WebKit/gtk/ChangeLog

    r27010 r27047  
     12007-10-25  Alp Toker  <alp@atoker.com>
     2
     3        Unreviewed fix to make the GTK+ port run.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=15686
     6        GtkLauncher aborts on launch due to uninitialized threading subsystem
     7
     8        http://bugs.webkit.org/show_bug.cgi?id=15688
     9        [GTK] Make it possible to disable database support
     10
     11        Make database path initialization conditional on database support
     12        being enabled.
     13
     14        * Api/webkitgtkglobal.cpp:
     15
    1162007-10-24  Mark Rowe  <mrowe@apple.com>
    217
Note: See TracChangeset for help on using the changeset viewer.