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