Overview
| Comment: | Remove reference to itcl in thread build script. Probably a copy/paste remnant. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
98b83d1ed8c4f6173d5c295bfe93b0e1 |
| User & Date: | schelte on 2013-08-18 10:12:41 |
| Other Links: | manifest | tags |
Context
|
2013-08-18
| ||
| 10:20 | Provide a build script for the dbus extension, making it available as an optional package that can be included when building a tclkit. check-in: 591a13879c user: schelte tags: trunk | |
| 10:12 | Remove reference to itcl in thread build script. Probably a copy/paste remnant. check-in: 98b83d1ed8 user: schelte tags: trunk | |
|
2013-08-10
| ||
| 17:49 | Updated Android.mk file check-in: 005d3b6b5d user: rkeene tags: trunk | |
Changes
Modified thread/build.sh from [8b5704d8de] to [27dbaffc4b].
| ︙ | ︙ | |||
13 14 15 16 17 18 19 |
THREADVERS="2.6.5"
SRC="src/thread-${THREADVERS}.tar.gz"
SRCURL="http://sourceforge.net/projects/tcl/files/Thread%20Extension/${THREADVERS}/thread${THREADVERS}.tar.gz/download"
BUILDDIR="$(pwd)/build/thread${THREADVERS}"
OUTDIR="$(pwd)/out"
INSTDIR="$(pwd)/inst"
| | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
THREADVERS="2.6.5"
SRC="src/thread-${THREADVERS}.tar.gz"
SRCURL="http://sourceforge.net/projects/tcl/files/Thread%20Extension/${THREADVERS}/thread${THREADVERS}.tar.gz/download"
BUILDDIR="$(pwd)/build/thread${THREADVERS}"
OUTDIR="$(pwd)/out"
INSTDIR="$(pwd)/inst"
export THREADVERS SRC SRCURL BUILDDIR OUTDIR INSTDIR
# Set configure options for this sub-project
LDFLAGS="${KC_THREAD_LDFLAGS}"
CFLAGS="${KC_THREAD_CFLAGS}"
CPPFLAGS="${KC_THREAD_CPPFLAGS}"
LIBS="${KC_THREAD_LIBS}"
export LDFLAGS CFLAGS CPPFLAGS LIBS
|
| ︙ | ︙ |