Changeset 80130
- Timestamp:
- 07/04/11 20:56:34 (4 years ago)
- Location:
- branches/release_2_0
- Files:
-
- 10 edited
-
. (modified) (1 prop)
-
base (modified) (1 prop)
-
base/portmgr/fedora/macports.spec (modified) (1 prop)
-
base/src/macports1.0/macports.tcl (modified) (2 diffs)
-
base/src/pextlib1.0/sha2.c (modified) (1 prop)
-
base/src/pextlib1.0/sha2.h (modified) (1 prop)
-
base/src/pextlib1.0/sha256cmd.c (modified) (1 prop)
-
base/src/pextlib1.0/sha256cmd.h (modified) (1 prop)
-
base/src/port1.0/portconfigure.tcl (modified) (1 diff)
-
base/src/registry2.0/receipt_sqlite.tcl (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/release_2_0
-
branches/release_2_0/base
- Property svn:mergeinfo changed
/trunk/base merged: 80088
- Property svn:mergeinfo changed
-
branches/release_2_0/base/portmgr/fedora/macports.spec
- Property svn:mergeinfo changed
/trunk/base/portmgr/fedora/macports.spec merged: 80088
- Property svn:mergeinfo changed
-
branches/release_2_0/base/src/macports1.0/macports.tcl
r79690 r80130 375 375 } elseif {$devtoolscore_v >= 1204.0} { 376 376 set macports::xcodeversion "3.1.4" 377 } elseif {$devtoolscore_v > 921.0} { 378 # XXX find actual version corresponding to 3.1 377 } elseif {$devtoolscore_v >= 1100.0} { 379 378 set macports::xcodeversion "3.1" 380 379 } elseif {$devtoolscore_v >= 921.0} { … … 3027 3026 } 3028 3027 3028 # Choose a sane compiler 3029 3029 set cc_arg "" 3030 switch -glob -- $::macports::macosx_version { 3031 10.[45] { set cc_arg "CC=/usr/bin/gcc-4.0 " } 3032 10.6 { set cc_arg "CC=/usr/bin/gcc-4.2 " } 3033 10.* { set cc_arg "CC=/usr/bin/llvm-gcc-4.2 " } 3030 if {$::macports::os_platform == "darwin"} { 3031 set cc_arg "CC=/usr/bin/cc " 3034 3032 } 3035 3033 -
branches/release_2_0/base/src/pextlib1.0/sha2.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/pextlib1.0/sha2.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/pextlib1.0/sha256cmd.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/pextlib1.0/sha256cmd.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/release_2_0/base/src/port1.0/portconfigure.tcl
r79944 r80130 353 353 # internal function to determine the default compiler 354 354 proc portconfigure::configure_get_default_compiler {args} { 355 global macosx_deployment_target developer_dir 356 switch -exact ${macosx_deployment_target} { 357 "10.4" - 358 "10.5" { 359 if {![file executable /usr/bin/gcc-4.0]} { 360 if {[file executable /usr/bin/gcc-4.2]} { 361 return gcc-4.2 362 } elseif {[file executable ${developer_dir}/usr/bin/llvm-gcc-4.2]} { 363 return llvm-gcc-4.2 364 } 365 } 366 return gcc-4.0 367 } 368 "10.6" { 369 if {![file executable /usr/bin/gcc-4.2] && 370 [file executable ${developer_dir}/usr/bin/llvm-gcc-4.2]} { 371 return llvm-gcc-4.2 372 } 373 return gcc-4.2 374 } 375 "10.7" { return llvm-gcc-4.2 } 376 default { return gcc } 355 global xcodeversion macosx_deployment_target 356 if {$xcodeversion == "none" || $xcodeversion == ""} { 357 return gcc 358 } elseif {[rpm-vercomp $xcodeversion 4.0] >= 0} { 359 return llvm-gcc-4.2 360 } elseif {[rpm-vercomp $xcodeversion 3.2] >= 0 && $macosx_deployment_target != "10.4"} { 361 return gcc-4.2 362 } else { 363 return gcc-4.0 377 364 } 378 365 } -
branches/release_2_0/base/src/registry2.0/receipt_sqlite.tcl
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.

