Overview
| Comment: | Improved compiling CMake-based yajl for yajltcl |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
71be3ff1a11355c5fcbf1383cc2d867b |
| User & Date: | rkeene on 2016-09-06 14:29:12 |
| Other Links: | manifest | tags |
Context
|
2016-09-06
| ||
| 15:21 | Fixed issue with static linking of TLS when also building a local static executable check-in: 20deaf934e user: rkeene tags: trunk | |
| 14:29 | Improved compiling CMake-based yajl for yajltcl check-in: 71be3ff1a1 user: rkeene tags: trunk | |
| 07:47 | Added TUAPI and tDOM check-in: 36d65f9f09 user: rkeene tags: trunk | |
Changes
Modified yajltcl/build.sh from [fd907b16f4] to [16e015d0cc].
| ︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + |
"${_download}" "${url}" "${archive}" "${hash}" || return 1
fi
(
gzip -dc "${archive}" | tar -xf - || exit 1
cd "${yajlbuilddir}" || exit 1
if [ "${KC_CROSSCOMPILE}" = '1' ]; then
case "${KC_CROSSCOMPILE_HOST_OS}" in
*-mingw32|*-mingw32msvc|*-mingw64)
cmake_system_name='Windows'
;;
*)
cmake_system_name="$(
echo "${KC_CROSSCOMPILE_HOST_OS}" | \
cut -f 3 -d - | \
sed 's@[0-9\.]*$@@' | \
awk '{ f = substr($1, 1, 1); r = substr($1, 2); print toupper(f) tolower(r) }' | \
sed 's@bsd$@BSD@;s@^Aix@AIX@;s@^Hpux@HPUX@'
)"
;;
esac
|
| ︙ |