Differences From Artifact [d1ba583817]:
- File kitsh/buildsrc/kitsh-0.0/configure.ac — 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: 667) [annotate] [blame] [check-ins using]
To Artifact [ea43bce0fb]:
- File
kitsh/buildsrc/kitsh-0.0/configure.ac
— part of check-in
[cacf7999db]
at
2010-09-26 04:38:10
on branch trunk
— Updated to find libraries to link to dynamically
Updated to add "unix" directory to header search path (user: rkeene, size: 725) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 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 AC_SEARCH_LIBS(inflate, z zlib,, [ AC_MSG_WARN([Couldn't find inflate (normally in zlib)!]) ]) AC_SEARCH_LIBS(acos, m,, [ AC_MSG_WARN([Couldn't find acos (normally in libm)!]) ]) AC_SEARCH_LIBS(dlsym, dl,, [ AC_MSG_WARN([Couldn't find dlsym (normally in libdl)!]) ]) dnl Produce output | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 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 archives we need to link to DC_FIND_TCLKIT_LIBS dnl Find the appropriate libraries to link to AC_SEARCH_LIBS(inflate, z zlib,, [ AC_MSG_WARN([Couldn't find inflate (normally in zlib)!]) ]) AC_SEARCH_LIBS(acos, m,, [ AC_MSG_WARN([Couldn't find acos (normally in libm)!]) ]) AC_SEARCH_LIBS(dlsym, dl,, [ AC_MSG_WARN([Couldn't find dlsym (normally in libdl)!]) ]) dnl Produce output |
︙ | ︙ |