Changeset 214837 in webkit


Ignore:
Timestamp:
Apr 3, 2017 2:03:52 PM (7 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed, attempt to fix build with libgcrypt < 1.7.0

  • pal/crypto/gcrypt/Utilities.h:
Location:
trunk/Source/WebCore/PAL
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/PAL/ChangeLog

    r214825 r214837  
     12017-04-03  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed, attempt to fix build with libgcrypt < 1.7.0
     4
     5        * pal/crypto/gcrypt/Utilities.h:
     6
    172017-04-03  Zan Dobersek  <zdobersek@igalia.com>
    28
  • trunk/Source/WebCore/PAL/pal/crypto/gcrypt/Utilities.h

    r214609 r214837  
    3333namespace GCrypt {
    3434
     35// Copied from gcrypt.h. This macro is new in version 1.7.0, which we do not
     36// want to require yet. Remove this in summer 2019.
     37#ifndef gcry_cipher_final
     38#define gcry_cipher_final(a) \
     39            gcry_cipher_ctl ((a), GCRYCTL_FINALIZE, NULL, 0)
     40#endif
     41
    3542static inline void logError(gcry_error_t error)
    3643{
Note: See TracChangeset for help on using the changeset viewer.