Overview
Comment: | Added HP-UX support to platform script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 5e09d65c21232c3007a330cd620dab2c5d828f52 |
User & Date: | rkeene on 2010-02-28 23:23:16 |
Other Links: | manifest | tags |
Context
2010-03-14
| ||
11:21 | Updated to not download "msgcat" as it is part of the core Tcl distribution check-in: b5e5d25701 user: rkeene tags: trunk | |
2010-02-28
| ||
23:23 | Added HP-UX support to platform script check-in: 5e09d65c21 user: rkeene tags: trunk | |
2010-02-11
| ||
15:48 | teaparty 0.9.5.x Updated to remove ActivevState repository cache before packaging check-in: 10b77fbc91 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/platform from [c6457b56af] to [f9b9ccb779].
26
27
28
29
30
31
32
33
34
35
36
37
38
39
..
79
80
81
82
83
84
85
86
87
88
89
|
;;
*elf*32-bit*sparc*)
CPUPLAT="sparc"
;;
*elf*64-bit*sparc*)
CPUPLAT="sparc64"
;;
esac
if [ "${MAGICOS}" != "`uname -s`" ]; then
# Cross compiling, try to determine OS ...
true
fi
;;
................................................................................
*)
CPUPLAT="ix86"
;;
esac
echo "solaris${SOLVER}-${CPUPLAT}"
;;
*)
echo "`uname -s | dd conv=lcase 2>/dev/null`-`uname -m | dd conv=lcase 2>/dev/null`"
;;
esac
|
>
>
>
>
>
>
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
..
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
;; *elf*32-bit*sparc*) CPUPLAT="sparc" ;; *elf*64-bit*sparc*) CPUPLAT="sparc64" ;; *pa-risc*) CPUPLAT="parisc" ;; esac if [ "${MAGICOS}" != "`uname -s`" ]; then # Cross compiling, try to determine OS ... true fi ;; ................................................................................ *) CPUPLAT="ix86" ;; esac echo "solaris${SOLVER}-${CPUPLAT}" ;; HP-UX) echo "hpux-${CPUPLAT}" ;; *) echo "`uname -s | dd conv=lcase 2>/dev/null`-`uname -m | dd conv=lcase 2>/dev/null`" ;; esac |