Title: [191782] trunk/Source/WTF
Revision
191782
Author
[email protected]
Date
2015-10-30 01:17:18 -0700 (Fri, 30 Oct 2015)

Log Message

[GTK][Mac] fix WTF build
https://bugs.webkit.org/show_bug.cgi?id=150502

Reviewed by Alex Christensen.

* wtf/CMakeLists.txt: Add CommonCryptoSPI.h in the headers.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (191781 => 191782)


--- trunk/Source/WTF/ChangeLog	2015-10-30 08:01:16 UTC (rev 191781)
+++ trunk/Source/WTF/ChangeLog	2015-10-30 08:17:18 UTC (rev 191782)
@@ -1,3 +1,12 @@
+2015-10-30  Philippe Normand  <[email protected]>
+
+        [GTK][Mac] fix WTF build
+        https://bugs.webkit.org/show_bug.cgi?id=150502
+
+        Reviewed by Alex Christensen.
+
+        * wtf/CMakeLists.txt: Add CommonCryptoSPI.h in the headers.
+
 2015-10-29  Alex Christensen  <[email protected]>
 
         Fix Mac CMake build

Modified: trunk/Source/WTF/wtf/CMakeLists.txt (191781 => 191782)


--- trunk/Source/WTF/wtf/CMakeLists.txt	2015-10-30 08:01:16 UTC (rev 191781)
+++ trunk/Source/WTF/wtf/CMakeLists.txt	2015-10-30 08:17:18 UTC (rev 191782)
@@ -235,6 +235,15 @@
     ${CMAKE_DL_LIBS}
 )
 
+if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
+    list(APPEND WTF_HEADERS
+        spi/darwin/CommonCryptoSPI.h
+    )
+    list(APPEND WTF_INCLUDE_DIRECTORIES
+        "${WTF_DIR}/wtf/spi/darwin"
+    )
+endif ()
+
 # FIXME: Port bmalloc to Windows. https://bugs.webkit.org/show_bug.cgi?id=143310
 if (NOT WIN32)
     list(APPEND WTF_LIBRARIES bmalloc)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to