165 | | if {[file exists ${developer_dir}/SDKs/MacOSX10.3.9.sdk] || |
166 | | [file exists ${developer_dir}/SDKs/MacOSX10.4u.sdk] || |
167 | | [file exists ${developer_dir}/SDKs/MacOSX10.5.sdk] || |
168 | | ${build_arch} == "ppc"} { |
169 | | lappend build_targets ppc |
| 165 | # Support for PPC was dropped in Darwin 11 (Mac OS X 10.7) |
| 166 | if {${os.major} < 11} { |
| 167 | if {[file exists ${developer_dir}/SDKs/MacOSX10.3.9.sdk] || |
| 168 | [file exists ${developer_dir}/SDKs/MacOSX10.4u.sdk] || |
| 169 | [file exists ${developer_dir}/SDKs/MacOSX10.5.sdk] || |
| 170 | ${build_arch} == "ppc"} { |
| 171 | lappend build_targets ppc |
| 172 | } |