Skip to content

Commit 673dfed

Browse files
[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. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@191782 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 24bfe11 commit 673dfed

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Source/WTF/ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2015-10-30 Philippe Normand <[email protected]>
2+
3+
[GTK][Mac] fix WTF build
4+
https://bugs.webkit.org/show_bug.cgi?id=150502
5+
6+
Reviewed by Alex Christensen.
7+
8+
* wtf/CMakeLists.txt: Add CommonCryptoSPI.h in the headers.
9+
110
2015-10-29 Alex Christensen <[email protected]>
211

312
Fix Mac CMake build

Source/WTF/wtf/CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,15 @@ set(WTF_LIBRARIES
235235
${CMAKE_DL_LIBS}
236236
)
237237

238+
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
239+
list(APPEND WTF_HEADERS
240+
spi/darwin/CommonCryptoSPI.h
241+
)
242+
list(APPEND WTF_INCLUDE_DIRECTORIES
243+
"${WTF_DIR}/wtf/spi/darwin"
244+
)
245+
endif ()
246+
238247
# FIXME: Port bmalloc to Windows. https://bugs.webkit.org/show_bug.cgi?id=143310
239248
if (NOT WIN32)
240249
list(APPEND WTF_LIBRARIES bmalloc)

0 commit comments

Comments
 (0)