Differences From Artifact [08b06ec183]:
- File kitsh/buildsrc/kitsh-0.0/aclocal.m4 — part of check-in [5a492edc2b] at 2010-09-26 04:37:55 on branch trunk — Added support for using Tcl's required libs (user: rkeene, size: 1209) [annotate] [blame] [check-ins using]
To Artifact [33966eefcb]:
- File
kitsh/buildsrc/kitsh-0.0/aclocal.m4
— part of check-in
[727034b4dd]
at
2010-09-26 04:37:58
on branch trunk
— KitCreator 0.0.2.x
Removed generated files from repository
Minor cleanup of configure activities in kitsh (user: rkeene, size: 1252) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
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]) |
︙ | ︙ |