Overview
Comment: | Switched to Zlib v1.2.3, newer versions have issues with cross-compiling to systems without a "libc" (e.g., Windows) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4d2a723204a29e27a0f92b8d17409f9d |
User & Date: | rkeene on 2010-09-26 04:43:04 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:43 | Added additional aliases for MingW32 check-in: 9bbcaed141 user: rkeene tags: trunk | |
04:43 | Switched to Zlib v1.2.3, newer versions have issues with cross-compiling to systems without a "libc" (e.g., Windows) check-in: 4d2a723204 user: rkeene tags: trunk | |
04:43 | Updated to remove all non-static links to statically linked libraries check-in: 459ce657ff user: rkeene tags: trunk | |
Changes
Modified zlib/build.sh from [9514b69964] to [8abe54013f].
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /bin/bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then echo 'ERROR: The TCLVERS environment variable is not set' >&2 exit 1 fi | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #! /bin/bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then echo 'ERROR: The TCLVERS environment variable is not set' >&2 exit 1 fi ZLIBVERS="1.2.3" SRC="src/zlib-${ZLIBVERS}.tar.gz" SRCURL="http://sourceforge.net/projects/libpng/files/zlib/${ZLIBVERS}/zlib-${ZLIBVERS}.tar.gz/download" BUILDDIR="$(pwd)/build/zlib-${ZLIBVERS}" OUTDIR="$(pwd)/out" INSTDIR="$(pwd)/inst" export ZLIBVERS SRC SRCURL BUILDDIR OUTDIR INSTDIR |
︙ | ︙ |