Changeset 191662 in webkit


Ignore:
Timestamp:
Oct 28, 2015 1:41:46 AM (8 years ago)
Author:
berto@igalia.com
Message:

[SOUP] Cannot build the network process in glibc-based BSD systems
https://bugs.webkit.org/show_bug.cgi?id=150618

Reviewed by Carlos Garcia Campos.

  • wtf/Platform.h: Don't enable HAVE_STAT_BIRTHTIME if the system

is using glibc.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r191424 r191662  
     12015-10-28  Alberto Garcia  <berto@igalia.com>
     2
     3        [SOUP] Cannot build the network process in glibc-based BSD systems
     4        https://bugs.webkit.org/show_bug.cgi?id=150618
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * wtf/Platform.h: Don't enable HAVE_STAT_BIRTHTIME if the system
     9        is using glibc.
     10
    1112015-10-21  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Source/WTF/wtf/Platform.h

    r191254 r191662  
    616616#endif
    617617
    618 #if OS(DARWIN) || OS(FREEBSD) || OS(NETBSD)
     618#if (OS(DARWIN) || OS(FREEBSD) || OS(NETBSD)) && !defined(__GLIBC__)
    619619#define HAVE_STAT_BIRTHTIME 1
    620620#endif
Note: See TracChangeset for help on using the changeset viewer.