Overview
| Comment: | Added support for using Tcl's required libs | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 5a492edc2bef2bb6a73af15d1c409f04 | 
| User & Date: | rkeene on 2010-09-26 04:37:55 | 
| Other Links: | manifest | tags | 
Context
| 2010-09-26 | ||
| 04:37 | KitCreator 0.0.2.x Removed generated files from repository Minor cleanup of configure activities in kitshcheck-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 | |
| 04:37 | Added support for creating proper kitsh environment check-in: 5996f7a35f user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [fe1b839d01] to [08b06ec183].
| 
 | 
 | < < < < < < < < < < < < < < < < | 1 2 3 4 5 6 7 | 
AC_DEFUN(DC_DO_TCL, [
	AC_MSG_CHECKING([path to tcl])
	AC_ARG_WITH(tcl, AC_HELP_STRING([--with-tcl], [directory containing tcl configuration (tclConfig.sh)]), [], [
		with_tcl="auto"
	])
	if test "${with_tcl}" = "auto"; then
 | 
| ︙ | ︙ | |||
| 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 
	source "${tclconfigsh}"
	CFLAGS="${CFLAGS} ${TCL_INCLUDE_SPEC} -I${TCL_SRC_DIR}/generic"
	CPPFLAGS="${CPPFLAGS} ${TCL_INCLUDE_SPEC} -I${TCL_SRC_DIR}/generic"
	LDFLAGS="${LDFLAGS}"
	AC_SUBST(CFLAGS)
	AC_SUBST(CPPFLAGS)
	AC_SUBST(LDFLAGS)
	AC_MSG_RESULT([$tclconfigsh])
])
AC_DEFUN(DC_DO_STATIC_LINK_LIBCXX, [
	AC_MSG_CHECKING([for how to statically link to libstdc++])
 | > > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 
	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])
])
AC_DEFUN(DC_DO_STATIC_LINK_LIBCXX, [
	AC_MSG_CHECKING([for how to statically link to libstdc++])
 | 
| ︙ | ︙ | 
Modified kitsh/buildsrc/kitsh-0.0/configure.ac from [6a3c97057b] to [d1ba583817].
| 1 2 3 4 5 6 7 8 9 10 11 | dnl What are we running AC_INIT(kitsh, 0.0) AC_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_AIX AC_GNU_SOURCE | < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | dnl What are we running AC_INIT(kitsh, 0.0) AC_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_AIX AC_GNU_SOURCE dnl Find the appropriate Tcl headers and libraries DC_DO_TCL dnl Find out how to statically link to libstdc++ (for Metakit) DC_DO_STATIC_LINK_LIBCXX dnl Find the appropriate libraries to link to | 
| ︙ | ︙ |