Index: build/makearch.info ================================================================== --- build/makearch.info +++ build/makearch.info @@ -14,11 +14,11 @@ # 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@@" +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} Index: build/pre.sh ================================================================== --- build/pre.sh +++ build/pre.sh @@ -8,10 +8,11 @@ ( cd "${KITSHROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache + rm -f *~ ./configure make distclean ) Index: kitsh/buildsrc/kitsh-0.0/aclocal.m4 ================================================================== --- kitsh/buildsrc/kitsh-0.0/aclocal.m4 +++ kitsh/buildsrc/kitsh-0.0/aclocal.m4 @@ -21,17 +21,18 @@ fi else tclconfigsh="${with_tcl}/tclConfig.sh" fi - - source "${tclconfigsh}" + 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}" + 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) DELETED kitsh/buildsrc/kitsh-0.0/config.h.in Index: kitsh/buildsrc/kitsh-0.0/config.h.in ================================================================== --- kitsh/buildsrc/kitsh-0.0/config.h.in +++ kitsh/buildsrc/kitsh-0.0/config.h.in @@ -1,34 +0,0 @@ -/* 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