Changes between Initial Version and Version 1 of Ticket #57028, comment 4


Ignore:
Timestamp:
Aug 29, 2018, 10:46:27 PM (6 years ago)
Author:
chicagotripp (Altoine Barker)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #57028, comment 4

    initial v1  
    99
    1010Should the patch then check for or point to the MacOS SDK path when /usr/include/ is not present?
     11
     12I see if you look at line 52 in the file '''meson.build''' shows:
     13
     14{{{
     15uuid_inc = include_directories('/usr/include/uuid')
     16}}}
     17
     18When 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{{{
     21uuid_inc = include_directories('/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/includ/uuid')
     22}}}