Differences From Artifact [6f2999f5b1]:
- File kitsh/buildsrc/kitsh-0.0/aclocal.m4 — part of check-in [c16db35fe7] at 2010-09-26 04:39:11 on branch trunk — Updated to provide an empty input file to AC_LINK_IFELSE. It seems to need this. (user: rkeene, size: 2058) [annotate] [blame] [check-ins using]
To Artifact [d0e235eb57]:
- File
kitsh/buildsrc/kitsh-0.0/aclocal.m4
— part of check-in
[636da30116]
at
2010-09-26 04:39:19
on branch trunk
— Corrected check for mk4tcl to actually be functional
Removed support of "config.h" and started passing all defines on the command line (user: rkeene, size: 2044) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
70 71 72 73 74 75 76 | libfiles="`find "${libdir}" -name '*.a' | tr "\n" ' '`" ARCHS="${ARCHS} ${libfiles}" AC_MSG_RESULT([${libfiles}]) if test "${libfiles}" != ""; then | < < < < > | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | libfiles="`find "${libdir}" -name '*.a' | tr "\n" ' '`" ARCHS="${ARCHS} ${libfiles}" AC_MSG_RESULT([${libfiles}]) if test "${libfiles}" != ""; then if test "${proj}" = "mk4tcl"; then AC_DEFINE(KIT_INCLUDES_MK4TCL, [1], [Specify this if you link against mkt4tcl]) DC_DO_STATIC_LINK_LIBCXX fi fi done AC_SUBST(ARCHS) ]) |