Overview
| Comment: | Added zlib package
Added support for specifying --with-zlib to kitsh if zlib built fine |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e95acf08f001a408f7e7a1b4c6453136 |
| User & Date: | rkeene on 2010-09-26 04:40:48 |
| Other Links: | manifest | tags |
Context
|
2010-09-26
| ||
| 04:40 | KitCreator 0.1.0.x check-in: c48a3eddef user: rkeene tags: trunk, 0.1.0 | |
| 04:40 |
Added zlib package
Added support for specifying --with-zlib to kitsh if zlib built fine check-in: e95acf08f0 user: rkeene tags: trunk | |
| 04:40 |
Cleaned up LDFLAGS settings
Fixed issue with "--with-zlib" wiping out LDFLAGS check-in: 56c3d5d022 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [fd35339ae1] to [be98577a11].
| ︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | - + | fi CONFIGUREEXTRA="$@" export CONFIGUREEXTRA failedpkgs="" buildfailed="0" |
| ︙ |
Modified kitsh/build.sh from [f495d0968a] to [73b3561dba].
| ︙ | |||
29 30 31 32 33 34 35 36 37 | 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 | + + + + + + + + + + - + + + + + + |
(
cp -r 'buildsrc' 'build'
cd "${BUILDDIR}" || exit 1
# Cleanup, just incase the incoming directory was not pre-cleaned
${MAKE:-make} distclean >/dev/null 2>/dev/null
# Figure out if zlib compiled
ZLIBDIR=$(cd "${OTHERPKGSDIR}/zlib/inst"; pwd)
export ZLIBDIR
if [ ! -f "${ZLIBDIR}/lib/libz.a" ]; then
unset ZLIBDIR
fi
# Compile Kitsh
if [ -z "${ZLIBDIR}" ]; then
echo "./configure --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}"
|
| ︙ |
Added zlib/build.sh version [72ab3f6699].
|