Overview
Comment: | Updated to be more simple about loading objects |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5b517f12c10e17da4f0b1ceaf8147ba3 |
User & Date: | rkeene on 2014-05-02 01:50:21 |
Other Links: | manifest | tags |
Context
2014-05-02
| ||
02:56 | Updated namespace and command to be called "tcc4tcl" check-in: 7a4c3ad58c user: rkeene tags: trunk | |
01:50 | Updated to be more simple about loading objects check-in: 5b517f12c1 user: rkeene tags: trunk | |
01:36 | Updated to produce working pkgIndex.tcl file check-in: 0e7070d332 user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob from [666d734a04] to [0f084d884a].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - | aclocal.m4 aclocal/shobj.m4 aclocal/tcl.m4 aclocal/versionscript.m4 config.guess config.sub config.log config.status configure install-sh Makefile pkgIndex.tcl |
Modified Makefile.in from [9e8d17e35d] to [0b56aecef2].
︙ | |||
38 39 40 41 42 43 44 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - - - - + | tcltcc-static.a: tcltcc.o tcc/libtcc.a cp tcc/libtcc.a tcltcc-static.new.a $(AR) rcu tcltcc-static.new.a tcltcc.o -$(RANLIB) tcltcc-static.new.a mv tcltcc-static.new.a tcltcc-static.a |
Modified configure.ac from [248f926e05] to [7c8c9edb2e].
︙ | |||
37 38 39 40 41 42 43 | 37 38 39 40 41 42 43 44 | - + | dnl Look for appropriate headers AC_CHECK_HEADERS(unistd.h stdlib.h string.h strings.h dlfcn.h dl.h) dnl Perform Tcl Extension required stuff TCLEXT_INIT dnl Produce output |
Renamed and modified pkgIndex.tcl.tmpl.in [183dffb085] to pkgIndex.tcl.in [c9a6ef9ff1].
| 1 | - + - |
|
Modified tcc.tcl from [b543309b89] to [c56e45f7c0].
︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - - + - - - | variable commands set dir [file dirname [info script]] if {[info command ::tcc] == ""} { catch { load {} tcc } } if {[info command ::tcc] == ""} { |
︙ |