Changeset 83178 in webkit


Ignore:
Timestamp:
Apr 7, 2011 9:37:12 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-07 Siddharth Mathur <siddharth.mathur@nokia.com>

Reviewed by Laszlo Gombos.

[Qt][WK2][Symbian] Temporary build fix until native Symbian IPC is done. Implement fake socketpair() as it's not available.
https://bugs.webkit.org/show_bug.cgi?id=57877

  • UIProcess/Launcher/qt/ProcessLauncherQt.cpp: (WebKit::socketpair): socketpair() which returns -1
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r83177 r83178  
     12011-04-07  Siddharth Mathur  <siddharth.mathur@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt][WK2][Symbian] Temporary build fix until native Symbian IPC is done. Implement fake socketpair() as it's not available.
     6        https://bugs.webkit.org/show_bug.cgi?id=57877
     7
     8        * UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
     9        (WebKit::socketpair): socketpair() which returns -1
     10
    1112011-04-07  Michael Saboff  <msaboff@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp

    r81968 r83178  
    8484}
    8585
     86#if OS(SYMBIAN)
     87// FIXME: Symbian's POSIX layer doesn't have a socketpair(), so
     88// the following is just to fix the build until a pure Symbian
     89// IPC implementation lands on trunk
     90static int socketpair(int, int, int , int[2])
     91{
     92    return -1;
     93}
     94#endif
     95
    8696void ProcessLauncher::launchProcess()
    8797{
Note: See TracChangeset for help on using the changeset viewer.