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 26 ;; 27 27 *elf*32-bit*sparc*) 28 28 CPUPLAT="sparc" 29 29 ;; 30 30 *elf*64-bit*sparc*) 31 31 CPUPLAT="sparc64" 32 32 ;; 33 + *pa-risc*) 34 + CPUPLAT="parisc" 35 + ;; 33 36 esac 34 37 35 38 if [ "${MAGICOS}" != "`uname -s`" ]; then 36 39 # Cross compiling, try to determine OS ... 37 40 true 38 41 fi 39 42 ;; ................................................................................ 79 82 *) 80 83 CPUPLAT="ix86" 81 84 ;; 82 85 esac 83 86 84 87 echo "solaris${SOLVER}-${CPUPLAT}" 85 88 ;; 89 + HP-UX) 90 + echo "hpux-${CPUPLAT}" 91 + ;; 86 92 *) 87 93 echo "`uname -s | dd conv=lcase 2>/dev/null`-`uname -m | dd conv=lcase 2>/dev/null`" 88 94 ;; 89 95 esac