this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[CoreServices] Update macOS System Version to 11.6. Added SystemVersionCompat.plist

Thomas A 1586d4b6 260697e7

+25 -4
+1
src/frameworks/CoreServices/CMakeLists.txt
··· 87 87 LINK_FLAGS " -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/reexport.exp") 88 88 89 89 install(FILES SystemVersion.plist DESTINATION "libexec/darling/System/Library/CoreServices") 90 + install(FILES SystemVersionCompat.plist DESTINATION "libexec/darling/System/Library/CoreServices")
+6 -4
src/frameworks/CoreServices/SystemVersion.plist
··· 5 5 <key>ProductBuildVersion</key> 6 6 <string>Darling</string> 7 7 <key>ProductCopyright</key> 8 - <string>2012-2021 Lubos Dolezel</string> 8 + <string>2012-2023 Lubos Dolezel</string> 9 9 <key>ProductName</key> 10 - <string>Mac OS X</string> 10 + <string>macOS</string> 11 11 <key>ProductUserVisibleVersion</key> 12 - <string>10.15</string> 12 + <string>11.6</string> 13 13 <key>ProductVersion</key> 14 - <string>10.15</string> 14 + <string>11.6</string> 15 + <key>iOSSupportVersion</key> 16 + <string>14.7</string> 15 17 </dict> 16 18 </plist>
+18
src/frameworks/CoreServices/SystemVersionCompat.plist
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 + <plist version="1.0"> 4 + <dict> 5 + <key>ProductBuildVersion</key> 6 + <string>Darling</string> 7 + <key>ProductCopyright</key> 8 + <string>2012-2023 Lubos Dolezel</string> 9 + <key>ProductName</key> 10 + <string>Mac OS X</string> 11 + <key>ProductUserVisibleVersion</key> 12 + <string>10.16</string> 13 + <key>ProductVersion</key> 14 + <string>10.16</string> 15 + <key>iOSSupportVersion</key> 16 + <string>14.7</string> 17 + </dict> 18 + </plist>