Overview
| Comment: | Clarified STATICMK4 notes in KitDLL |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
fdef98f710ba737168b55deac9680d20 |
| User & Date: | rkeene on 2014-09-02 17:24:49 |
| Other Links: | manifest | tags |
Context
|
2014-09-03
| ||
| 01:17 | Corrected typo check-in: 09c23dfa32 user: rkeene tags: trunk | |
|
2014-09-02
| ||
| 17:25 | Started adding TkImg support, seems broken so far Leaf check-in: cb3b1b20ff user: rkeene tags: feature-tkimg | |
| 17:24 | Clarified STATICMK4 notes in KitDLL check-in: fdef98f710 user: rkeene tags: trunk | |
|
2014-08-31
| ||
| 20:14 | Updated to support disabling KitDLL check-in: 1a0dc6637d user: rkeene tags: trunk | |
Changes
Modified kitcreator from [0b4c5bb22b] to [9dbf7335c1].
| ︙ | ︙ | |||
109 110 111 112 113 114 115 116 117 118 |
if [ "${STATICTK}" != "1" -a "${STATICTK}" != "-1" ]; then
echo 'Warning: Linking Tk statically because you are building KitDLL' 2>&1
echo ' Set STATICTK to -1 if you really want to link Tk dynamically.' >&2
STATICTK="1"
export STATICTK
fi
if [ -z "${STATICMK4}" ]; then
echo 'Warning: Linking Mk4tcl dynamically because you are building KitDLL' 2>&1
| > > > | > > > | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
if [ "${STATICTK}" != "1" -a "${STATICTK}" != "-1" ]; then
echo 'Warning: Linking Tk statically because you are building KitDLL' 2>&1
echo ' Set STATICTK to -1 if you really want to link Tk dynamically.' >&2
STATICTK="1"
export STATICTK
fi
fi
if echo " ${KITCREATOR_PKGS} " | grep ' mk4tcl ' >/dev/null 2>/dev/null; then
if [ -z "${STATICMK4}" ]; then
echo 'Warning: Linking Mk4tcl dynamically because you are building KitDLL' 2>&1
echo ' Set STATICMK4 to make this message go away.' >&2
echo ' Set STATICMK4 to 1 if you really want to link Mk4tcl statically (normal default).' >&2
echo ' Set STATICMK4 to 0 to link Mk4tcl dynamically if possible (this is what is happening now).' >&2
echo ' Set STATICMK4 to -1 to build dynamically.' >&2
0 = try shared; -1 = only shared; everything else = only static
STATICMK4="0"
export STATICMK4
fi
fi
fi
|
| ︙ | ︙ |