Overview
Comment: | KitCreator 0.2.2.x
Upgraded to latest ZLib Updated ZLIB URL to work even when it is not the latest version, since the zlib website only hosts the current version |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.2.2 |
Files: | files | file ages | folders |
SHA1: | 622194333732ae30eedd28b8c0dab18f1c9cf556 |
User & Date: | rkeene on 2010-09-26 04:42:32 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:42 |
Updated to support using vfs::zstreamed
Removed zlib hack check-in: 265eb37604 user: rkeene tags: trunk | |
04:42 |
KitCreator 0.2.2.x
Upgraded to latest ZLib Updated ZLIB URL to work even when it is not the latest version, since the zlib website only hosts the current version check-in: 6221943337 user: rkeene tags: trunk, 0.2.2 | |
04:42 |
KitCreator 0.2.1.x
Fixed failure to clean kitsh directory when producing releases check-in: 65a0497bd0 user: rkeene tags: trunk, 0.2.1 | |
Changes
Modified build/makearch.info from [06687ddac9] to [7dfbe91758].
12 12 # If set to "auto" it will be maintained in a file called .version 13 13 # in the source directory and the revision will be incremented 14 14 # each time a "makearch" is done. 15 15 # 16 16 # If @@SVNLCR@@ is used anywhere in this version number, it will be 17 17 # replaced with the highest last-changed-rev from the output of 18 18 # svn info -R (or 0) 19 -VERS="0.2.1.@@SVNLCR@@" 19 +VERS="0.2.2.@@SVNLCR@@" 20 20 21 21 # Space sperated list of documents, if they exist, they will be 22 22 # prefixed with the contents of the DOC_HDR file and substitution 23 23 # will occur: 24 24 # @@UTIL@@ becomes the utility name ${UTIL} 25 25 # @@VERS@@ becomes the utility version 26 26 # @@DATE@@ becomes the current date
Modified zlib/build.sh from [d2bfb61304] to [9514b69964].
7 7 fi 8 8 if [ -z "${TCLVERS}" ]; then 9 9 echo 'ERROR: The TCLVERS environment variable is not set' >&2 10 10 11 11 exit 1 12 12 fi 13 13 14 -ZLIBVERS="1.2.3" 14 +ZLIBVERS="1.2.4" 15 15 SRC="src/zlib-${ZLIBVERS}.tar.gz" 16 -SRCURL="http://www.zlib.net/zlib-${ZLIBVERS}.tar.gz" 16 +SRCURL="http://sourceforge.net/projects/libpng/files/zlib/${ZLIBVERS}/zlib-${ZLIBVERS}.tar.gz/download" 17 17 BUILDDIR="$(pwd)/build/zlib-${ZLIBVERS}" 18 18 OUTDIR="$(pwd)/out" 19 19 INSTDIR="$(pwd)/inst" 20 20 export ZLIBVERS SRC SRCURL BUILDDIR OUTDIR INSTDIR 21 21 22 22 rm -rf 'build' 'out' 'inst' 23 23 mkdir 'build' 'out' 'inst' || exit 1