Changes between Initial Version and Version 1 of Ticket #57028, comment 4
- Timestamp:
- Aug 29, 2018, 10:46:27 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #57028, comment 4
initial v1 9 9 10 10 Should the patch then check for or point to the MacOS SDK path when /usr/include/ is not present? 11 12 I see if you look at line 52 in the file '''meson.build''' shows: 13 14 {{{ 15 uuid_inc = include_directories('/usr/include/uuid') 16 }}} 17 18 When I inserted '''/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/uuid''' in place of '''/usr/include/uuid''' the completes and fully installs. Recap: I changed line 52 to now show: 19 20 {{{ 21 uuid_inc = include_directories('/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/includ/uuid') 22 }}}