Overview
Comment: | Updated to reflect recent TEA changes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ce19a6da6ac3ea4558b946b70fd04f80 |
User & Date: | wart on 2000-01-24 22:25:11 |
Other Links: | manifest | tags |
Context
2000-01-24
| ||
22:39 | Updated to reflect recent TEA changes check-in: 6c1a82694a user: wart tags: trunk | |
22:25 | Updated to reflect recent TEA changes check-in: ce19a6da6a user: wart tags: trunk | |
20:17 | Build fixes for tls check-in: 32428d7230 user: wart tags: trunk | |
Changes
Modified tcl.m4 from [6fcc44f52b] to [2ff5125b81].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | # tcl.m4 -- # # This file provides a set of autoconf macros to help TEA-enable # a Tcl extension. # |
︙ | |||
299 300 301 302 303 304 305 | 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | - + | AC_DEFUN(SC_ENABLE_GCC, [ AC_ARG_ENABLE(gcc, [ --enable-gcc allow use of gcc if available [--disable-gcc]], [ok=$enableval], [ok=no]) if test "$ok" = "yes"; then CC=gcc else case "`uname -s`" in |
︙ | |||
1890 1891 1892 1893 1894 1895 1896 | 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 | - - | ;; esac if test "x$1_LIB_NAME" = x ; then AC_MSG_ERROR(not found) else AC_MSG_RESULT(${$1_LIB_SPEC}) fi |
︙ | |||
2201 2202 2203 2204 2205 2206 2207 | 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 | - - + + | AC_DEFUN(SC_PROG_TCLSH, [ AC_MSG_CHECKING([for tclsh]) AC_CACHE_VAL(ac_cv_path_tclsh, [ search_path=`echo ${exec_prefix}/bin:${prefix}/bin:${TCL_BIN_DIR}:${TCL_BIN_DIR}/../bin:${PATH} | sed -e 's/:/ /g'` for dir in $search_path ; do |
︙ | |||
2245 2246 2247 2248 2249 2250 2251 | 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 | - - + + | AC_DEFUN(SC_PROG_WISH, [ AC_MSG_CHECKING([for wish]) AC_CACHE_VAL(ac_cv_path_wish, [ search_path=`echo ${exec_prefix}/bin:${prefix}/bin:${TCL_BIN_DIR}:${TCL_BIN_DIR}/../bin:${PATH} | sed -e 's/:/ /g'` for dir in $search_path ; do |
︙ |