Overview
Comment: | KitCreator 0.0.2.x
Removed generated files from repository Minor cleanup of configure activities in kitsh |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.0.2 |
Files: | files | file ages | folders |
SHA1: |
727034b4dd1a90da5fb86b2f3047e662 |
User & Date: | rkeene on 2010-09-26 04:37:58 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:38 | Corrected typo check-in: 291050ca78 user: rkeene tags: trunk | |
04:37 |
KitCreator 0.0.2.x
Removed generated files from repository Minor cleanup of configure activities in kitsh check-in: 727034b4dd user: rkeene tags: trunk, 0.0.2 | |
04:37 | Added support for using Tcl's required libs check-in: 5a492edc2b user: rkeene tags: trunk | |
Changes
Modified build/makearch.info from [f9d6b97a0b] to [a4cb5368b5].
︙ | ︙ | |||
12 13 14 15 16 17 18 | # 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) | | | 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.2.@@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 [f947ea4178] to [6750e7ca3f].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #! /bin/bash ./kitcreator distclean KITSHROOTDIR="$(ls -1d kitsh/buildsrc/kitsh-*/)" export KITSHROOTDIR ( cd "${KITSHROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache ./configure make distclean ) | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #! /bin/bash ./kitcreator distclean KITSHROOTDIR="$(ls -1d kitsh/buildsrc/kitsh-*/)" export KITSHROOTDIR ( cd "${KITSHROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache rm -f *~ ./configure make distclean ) |
Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [08b06ec183] to [33966eefcb].
︙ | ︙ | |||
19 20 21 22 23 24 25 | if test -z "${tclconfigsh}"; then AC_MSG_ERROR([Unable to find tclConfig.sh]) fi else tclconfigsh="${with_tcl}/tclConfig.sh" fi | | | | | | | > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | if test -z "${tclconfigsh}"; then AC_MSG_ERROR([Unable to find tclConfig.sh]) fi else tclconfigsh="${with_tcl}/tclConfig.sh" fi if test -f "${tclconfigsh}"; then source "${tclconfigsh}" CFLAGS="${CFLAGS} ${TCL_INCLUDE_SPEC} -I${TCL_SRC_DIR}/generic" CPPFLAGS="${CPPFLAGS} ${TCL_INCLUDE_SPEC} -I${TCL_SRC_DIR}/generic" LDFLAGS="${LDFLAGS}" LIBS="${LIBS} ${TCL_LIBS}" fi AC_SUBST(CFLAGS) AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) AC_SUBST(LIBS) AC_MSG_RESULT([$tclconfigsh]) |
︙ | ︙ |
Deleted kitsh/buildsrc/kitsh-0.0/config.h.in version [a3db3152de].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |