Overview
Comment: | KitCreator 0.0.6.x
Updated pre-release build script to error out if configure fails. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.0.6 |
Files: | files | file ages | folders |
SHA1: | 65a6c4165684b83c714259e5ca225fa28d407a9f |
User & Date: | rkeene on 2010-09-26 04:39:23 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:39 |
Updated to support supplying a TCLKIT environment variable
Updated documentation with more examples and expanded synopsis check-in: 0616230931 user: rkeene tags: trunk | |
04:39 |
KitCreator 0.0.6.x
Updated pre-release build script to error out if configure fails. check-in: 65a6c41656 user: rkeene tags: trunk, 0.0.6 | |
04:39 |
Corrected check for mk4tcl to actually be functional
Removed support of "config.h" and started passing all defines on the command line check-in: 636da30116 user: rkeene tags: trunk | |
Changes
Modified build/makearch.info from [efda699bdd] to [337e52bd5b].
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# If set to "auto" it will be maintained in a file called .version
# in the source directory and the revision will be incremented
# each time a "makearch" is done.
#
# If @@SVNLCR@@ is used anywhere in this version number, it will be
# replaced with the highest last-changed-rev from the output of
# svn info -R (or 0)
VERS="0.0.5.@@SVNLCR@@"
# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
# @@UTIL@@ becomes the utility name ${UTIL}
# @@VERS@@ becomes the utility version
# @@DATE@@ becomes the current date
|
| |
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# If set to "auto" it will be maintained in a file called .version
# in the source directory and the revision will be incremented
# each time a "makearch" is done.
#
# If @@SVNLCR@@ is used anywhere in this version number, it will be
# replaced with the highest last-changed-rev from the output of
# svn info -R (or 0)
VERS="0.0.6.@@SVNLCR@@"
# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
# @@UTIL@@ becomes the utility name ${UTIL}
# @@VERS@@ becomes the utility version
# @@DATE@@ becomes the current date
|
Modified build/pre.sh from [6750e7ca3f] to [f422eb34cc].
8 9 10 11 12 13 14 15 16 17 18 |
( cd "${KITSHROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache rm -f *~ ./configure make distclean ) |
| | |
8 9 10 11 12 13 14 15 16 17 18 |
( cd "${KITSHROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache rm -f *~ ./configure || exit 1 make distclean ) || exit 1 |