Overview
Comment: | changed copyright notice from Scriptics to Ajuba |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
17f61c8277ac4197914fcc973c2a3a59 |
User & Date: | aborr on 2000-05-30 22:18:01 |
Other Links: | manifest | tags |
Context
2000-05-31
| ||
21:24 | Moved ChannelHandler to the main channel instead of using Tls_GetParent and registering the handler with the dummy, or stacked channel. Eliminated call to Tcl_NotifyChannel from the WatchProc check-in: b29663e789 user: welch tags: trunk | |
2000-05-30
| ||
22:18 | changed copyright notice from Scriptics to Ajuba check-in: 17f61c8277 user: aborr tags: trunk | |
2000-05-18
| ||
00:38 | changed sslc.lib to sslc32.lib for Win/NT BSAFE build check-in: c94d10f128 user: aborr tags: trunk | |
Changes
Modified Makefile.in from [635cbbab1c] to [83ef94f0ab].
1 2 3 4 5 6 7 8 | # Makefile.in -- # # This file is a Makefile for the tls Tcl extension. If it has the name # "Makefile.in" then it is a template for a Makefile; to generate the # actual Makefile, run "./configure", which is a configuration script # generated by the "autoconf" program (constructs like "@foo@" will get # replaced in the actual Makefile. # | | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Makefile.in -- # # This file is a Makefile for the tls Tcl extension. If it has the name # "Makefile.in" then it is a template for a Makefile; to generate the # actual Makefile, run "./configure", which is a configuration script # generated by the "autoconf" program (constructs like "@foo@" will get # replaced in the actual Makefile. # # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: Makefile.in,v 1.9 2000/05/30 22:18:01 aborr Exp $ lib_BINARIES=$(tls_LIB_FILE) BINARIES=$(lib_BINARIES) #======================================================================== # Enumerate the names of the source files included in this package. |
︙ | ︙ |
Modified tests/all.tcl from [f5cb6a0da1] to [106b5d16a5].
1 2 3 4 5 6 | # all.tcl -- # # This file contains a top-level script to run all of the Tcl # tests. Execute it by invoking "source all.test" when running tcltest # in this directory. # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # all.tcl -- # # This file contains a top-level script to run all of the Tcl # tests. Execute it by invoking "source all.test" when running tcltest # in this directory. # # Copyright (c) 1998-2000 by Ajuba Solutions. # All rights reserved. # # RCS: @(#) $Id: all.tcl,v 1.2 2000/05/30 22:19:48 aborr Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest namespace import ::tcltest::* } set ::tcltest::testSingleFile false |
︙ | ︙ |
Modified tests/ciphers.test from [8d591c9597] to [2b7ce8274c].
1 2 3 4 5 6 | # Commands covered: tls::ciphers # # This file contains a collection of tests for one or more of the Tcl # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors. No output means no errors were found. # | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Commands covered: tls::ciphers # # This file contains a collection of tests for one or more of the Tcl # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors. No output means no errors were found. # # Copyright (c) 2000 by Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest |
︙ | ︙ |