Overview
| Comment: | Completed rename |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5d8baf9914957b312e8607493375ee40 |
| User & Date: | rkeene on 2014-10-24 20:13:54.867 |
| Other Links: | manifest | tags |
Context
|
2014-10-24
| ||
| 20:28 | Updated to have working Makefile check-in: def9a63955 user: rkeene tags: trunk | |
| 20:13 | Completed rename check-in: 5d8baf9914 user: rkeene tags: trunk | |
| 20:12 | First half of renaming check-in: cc9b79793c user: rkeene tags: trunk | |
Changes
Modified build-common.sh
from [4e129d0a2f]
to [9e9c539c66].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + - + | #! /bin/bash set -e case "$1" in clean|distclean) rm -rf out inst rm -f libtuapi.a tuapi.o tuapi.so rm -f tuapi.tcl.h exit 0 ;; esac |
Modified build-dyn.sh
from [68b9f210b2]
to [8040cbd4a5].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - - + + |
# /bin/bash
# Perform common build options
. build-common.sh
# Compile using the same options as Tcl
TCLCONFIGSH="$(find /usr/lib /usr/lib64 /usr/local/lib /usr/local/lib64 /lib /lib64 -name tclConfig.sh -print -quit)"
. "${TCLCONFIGSH}"
|
Modified build-static.sh
from [8d87567e49]
to [5b519e7aae].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - + + |
#! /bin/bash
# Perform common build options
. build-common.sh
# Define variables
KITCREATORROOT="$(readlink -f '..')"
# Compile using the same options as Tcl
TCLCONFIGSH='/usr/lib64/tclConfig.sh'
. "${TCLCONFIGSH}"
|
Modified build.sh
from [a96c51243e]
to [4362283f8d].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - - + + |
#! /bin/bash
# Perform common build options
. build-common.sh
# Define variables
KITCREATORROOT="$(readlink -f '..')"
# Compile using the same options as Tcl
TCLCONFIGSH="${KITCREATORROOT}/tcl/inst/lib/tclConfig.sh"
. "${TCLCONFIGSH}"
|
| ︙ |
Name change
from system.tcl
to tuapi.tcl.