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: | 727034b4dd1a90da5fb86b2f3047e6622effefa3 |
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 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.1.@@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.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].
6 7 8 9 10 11 12 13 14 15 16 17 |
export KITSHROOTDIR ( cd "${KITSHROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache ./configure make distclean ) |
> |
6 7 8 9 10 11 12 13 14 15 16 17 18 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
if test -z "${tclconfigsh}"; then AC_MSG_ERROR([Unable to find tclConfig.sh]) fi else tclconfigsh="${with_tcl}/tclConfig.sh" fi 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}" AC_SUBST(CFLAGS) AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) AC_SUBST(LIBS) AC_MSG_RESULT([$tclconfigsh]) |
< > | | | | | > |
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].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
/* config.h.in. Generated from configure.ac by autoheader. */ /* Have inet_addr() */ #undef HAVE_INET_ADDR /* Have inet_aton() */ #undef HAVE_INET_ATON /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if on AIX 3. System headers sometimes define this. We just want to avoid a redefinition error message. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |