Changeset 162513 in webkit


Ignore:
Timestamp:
Jan 22, 2014 3:15:26 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Build fixes for FreeBSD.
https://bugs.webkit.org/show_bug.cgi?id=126779

Patch by Koop Mast <kwm@FreeBSD.org> on 2014-01-22
Reviewed by Csaba Osztrogonác.

  • UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp:

(WebKit::PluginProcessProxy::scanPlugin):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r162511 r162513  
     12014-01-22  Koop Mast <kwm@FreeBSD.org>
     2
     3        Build fixes for FreeBSD.
     4        https://bugs.webkit.org/show_bug.cgi?id=126779
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp:
     9        (WebKit::PluginProcessProxy::scanPlugin):
     10
    1112014-01-22  Jinwoo Song  <jinwoo7.song@samsung.com>
    212
  • trunk/Source/WebKit2/UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp

    r155032 r162513  
    4141#endif
    4242
     43#include <sys/wait.h>
     44
    4345using namespace WebCore;
    4446
     
    8082    // As a consequence, we make sure that the disposition is set to
    8183    // SIG_DFL before calling g_spawn_sync().
     84#if defined(SIGCLD)
    8285    struct sigaction action;
    8386    sigaction(SIGCLD, 0, &action);
     
    8689        sigaction(SIGCLD, &action, 0);
    8790    }
     91#endif
    8892
    8993    if (!g_spawn_sync(0, argv, 0, G_SPAWN_STDERR_TO_DEV_NULL, 0, 0, &stdOut.outPtr(), 0, &status, 0))
Note: See TracChangeset for help on using the changeset viewer.