Changeset 27050 in webkit


Ignore:
Timestamp:
Oct 25, 2007 11:21:17 AM (16 years ago)
Author:
alp
Message:

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

Reviewed by Brady.

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

Re-enable database support in the GTK+ port, with a fix.

Initialize GLib threading as early as possible.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r27048 r27050  
     12007-10-25  Alp Toker  <alp@atoker.com>
     2
     3        Reviewed by Brady.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=15686
     6        GtkLauncher aborts on launch due to uninitialized threading subsystem
     7
     8        Re-enable database support in the GTK+ port, with a fix.
     9
     10        * WebCore.pro:
     11
    1122007-10-25  Jon Honeycutt  <jhoneycutt@apple.com>
    213
  • trunk/WebCore/WebCore.pro

    r27047 r27050  
    5252
    5353gtk-port: PKGCONFIG += gthread-2.0
    54 
    55 # Database support temporarily disabled, see http://bugs.webkit.org/show_bug.cgi?id=15686
    56 gtk-port: DEFINES += ENABLE_ICONDATABASE=0 ENABLE_DATABASE=0
    5754
    5855# Optional components (look for defs in config.h and included files!)
     
    961958}
    962959
    963 # ENABLE_DATABASE probably cannot be disabled without breaking things
    964960contains(DEFINES, ENABLE_DATABASE=1) {
    965961    FEATURE_DEFINES_JAVASCRIPT += ENABLE_DATABASE=1
  • trunk/WebKit/gtk/Api/webkitgtkglobal.cpp

    r27047 r27050  
    4040    WebCore::InitializeLoggingChannelsIfNecessary();
    4141
     42    WebCore::initializeThreading();
     43
    4244#if ENABLE(DATABASE)
    4345    // FIXME: It should be possible for client applications to override this default location
  • trunk/WebKit/gtk/ChangeLog

    r27047 r27050  
     12007-10-25  Alp Toker  <alp@atoker.com>
     2
     3        Reviewed by Brady.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=15686
     6        GtkLauncher aborts on launch due to uninitialized threading subsystem
     7
     8        Re-enable database support in the GTK+ port, with a fix.
     9
     10        Initialize GLib threading as early as possible.
     11
     12        * Api/webkitgtkglobal.cpp:
     13
    1142007-10-25  Alp Toker  <alp@atoker.com>
    215
Note: See TracChangeset for help on using the changeset viewer.