Overview
Comment: | Ditched TEA Added simple Tcl Extension building arch |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1a3fad8a69a957eba774da331e59222d |
User & Date: | rkeene on 2010-10-10 17:26:18.000 |
Other Links: | manifest | tags |
Context
2010-10-10
| ||
17:26 | Added missing file from last commit check-in: 36d3391e13 user: rkeene tags: trunk | |
17:26 | Ditched TEA Added simple Tcl Extension building arch check-in: 1a3fad8a69 user: rkeene tags: trunk | |
15:27 | Began TEA-ifying TclPKCS11 check-in: 16597afcf3 user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob
from [7b6d514242]
to [632b888f3c].
1 2 3 4 5 6 7 | aclocal.m4 aclocal.m4/* autom4te.cache autom4te.cache/* config.log config.log/* config.status | > > | 1 2 3 4 5 6 7 8 9 | Makefile Makefile/* aclocal.m4 aclocal.m4/* autom4te.cache autom4te.cache/* config.log config.log/* config.status |
︙ | ︙ |
Modified Makefile.in
from [31d0c8ba93]
to [57a46cea22].
1 | CC = @CC@ | < | | | > | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | CC = @CC@ CFLAGS = @CFLAGS@ @SHOBJFLAGS@ CPPFLAGS = @CPPFLAGS@ @DEFS@ LDFLAGS = SHOBJLDFLAGS = @SHOBJLDFLAGS@ LIBS = @LIBS@ all: tclpkcs11@SHOBJEXT@ pkcs11.h: pkcs11f.h pkcs11t.h tclpkcs11.o: tclpkcs11.c pkcs11.h tclpkcs11@SHOBJEXT@: tclpkcs11.o $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(SHOBJLDFLAGS) -o tclpkcs11@SHOBJEXT@ tclpkcs11.o $(LIBS) clean: rm -f tclpkcs11@SHOBJEXT@ tclpkcs11.o distclean: clean rm -rf autom4te.cache rm -f config.log config.status rm -f Makefile .PHONY: all clean distclean |
Added aclocal/shobj.m4 version [ef2141a606].
Deleted aclocal/tcl.m4 version [3c582bfe3b].
Modified build/autogen.sh
from [82860b7668]
to [cbb78b6ccf].
1 2 3 4 | #! /bin/bash cat aclocal/*.m4 > aclocal.m4 autoconf | > | 1 2 3 4 5 | #! /bin/bash cat aclocal/*.m4 > aclocal.m4 autoconf rm -rf autom4te.cache |
Added config.guess version [b002d71b91].
Added config.sub version [291ee26c12].
Modified configure.ac
from [05ca78adc7]
to [56a86ea8f9].
1 2 3 | dnl Define ourselves AC_INIT(tclpkcs11, 1.0) | < < < < > | | < < | | < < < > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | dnl Define ourselves AC_INIT(tclpkcs11, 1.0) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_GNU_SOURCE dnl Determine system information DC_CHK_OS_INFO dnl Perform Tcl Extension required stuff TCLEXT_INIT dnl Find out if we have the functions needed to open shared objects AC_SEARCH_LIBS(dlopen, dl,, [ AC_SEARCH_LIBS(shl_load, dld dl) ]) AC_CHECK_FUNCS(dlopen shl_load) |
︙ | ︙ |