Changeset 232023 in webkit


Ignore:
Timestamp:
May 21, 2018 11:19:10 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

[CMake][WebCore] fix sqlite include dir variable
https://bugs.webkit.org/show_bug.cgi?id=185825

Patch by Olivier Blin <Olivier Blin> on 2018-05-21
Reviewed by Konstantin Tokarev.

WebCore's CMakeLists.txt used SQLITE_INCLUDE_DIRS, but only SQLITE_INCLUDE_DIR is defined.

No new tests, build fix only.

  • CMakeLists.txt: Use SQLITE_INCLUDE_DIR instead of SQLITE_INCLUDE_DIRS.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r232020 r232023  
    150150    ${LIBXML2_INCLUDE_DIR}
    151151    ${LIBXSLT_INCLUDE_DIR}
    152     ${SQLITE_INCLUDE_DIRS}
     152    ${SQLITE_INCLUDE_DIR}
    153153    ${ZLIB_INCLUDE_DIRS}
    154154)
  • trunk/Source/WebCore/ChangeLog

    r232020 r232023  
     12018-05-21  Olivier Blin  <olivier.blin@softathome.com>
     2
     3        [CMake][WebCore] fix sqlite include dir variable
     4        https://bugs.webkit.org/show_bug.cgi?id=185825
     5
     6        Reviewed by Konstantin Tokarev.
     7
     8        WebCore's CMakeLists.txt used SQLITE_INCLUDE_DIRS, but only SQLITE_INCLUDE_DIR is defined.
     9
     10        No new tests, build fix only.
     11
     12        * CMakeLists.txt: Use SQLITE_INCLUDE_DIR instead of SQLITE_INCLUDE_DIRS.
     13
    1142018-05-21  Olivier Blin  <olivier.blin@softathome.com>
    215
Note: See TracChangeset for help on using the changeset viewer.