Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Adding an -x-includes flag for Macosx to point it to where Xquartz stores its includes Typo fix in codebale |
|---|---|
| Timelines: | family | ancestors | descendants | both | autosetup |
| Files: | files | file ages | folders |
| SHA1: |
f825c3ba379bc51b21c040751e9d1de8 |
| User & Date: | hypnotoad 2015-03-18 21:54:11 |
Context
|
2015-03-24
| ||
| 14:10 | Fixed the path for where odie seeks sources check-in: 737166e23a user: hypnotoad tags: autosetup | |
|
2015-03-18
| ||
| 21:54 | Adding an -x-includes flag for Macosx to point it to where Xquartz stores its includes Typo fix in codebale check-in: f825c3ba37 user: hypnotoad tags: autosetup | |
| 16:16 | Loosing the cmodules that have been sent over to odielib check-in: 2b421a41f8 user: hypnotoad tags: autosetup | |
Changes
Changes to auto.def.
| ︙ | ︙ | |||
165 166 167 168 169 170 171 |
switch $::odie(window_system) {
windows {
set ::odie(window_system) windows
}
x11 {
set ::odie(window_system) x11
set ::odie(teacup_profile) $::odie(teacup_os)-x11-$::odie(cpu)
| | | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
switch $::odie(window_system) {
windows {
set ::odie(window_system) windows
}
x11 {
set ::odie(window_system) x11
set ::odie(teacup_profile) $::odie(teacup_os)-x11-$::odie(cpu)
lappend ::odie_tk(config_flags) --enable-aqua=no --x-includes=/opt/X11/include
}
default {
set ::odie(window_system) cocoa
set ::odie(teacup_profile_tk) $::odie(teacup_profile)
lappend ::odie_tk(config_flags) --enable-aqua=yes
}
}
|
| ︙ | ︙ |
Changes to autosetup/lib/codebale.tcl.
| ︙ | ︙ | |||
556 557 558 559 560 561 562 |
}
}
return lib${pkgname}${pkgvers}$suffix
}
}
proc realpath path {
| | | | 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 |
}
}
return lib${pkgname}${pkgvers}$suffix
}
}
proc realpath path {
if { !$::odie(windows) } {
return $path
}
if {[string index $path 0] eq "/" && [string index $path 2] eq "/"} {
return [string index $path 1]:[string range $path 2 end]
}
return $path
}
proc cygpath path {
if { !$::odie(windows) } {
return $path
}
if {[string index $path 1] != ":" } {
return $path
}
set path [file-normalize $path]
return /[string tolower [string index $path 0]][string range $path 2 end]
|
| ︙ | ︙ |