diff options
author | hobbs <hobbs> | 2000-04-19 08:32:43 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-04-19 08:32:43 (GMT) |
commit | 7f65ab0b58bee6c8d6c49e4e831d34970bc6fedd (patch) | |
tree | d0760a65b11e677dd7757cb4a48fb036769992db /generic/tcl.h | |
parent | 6f99bc0b628826792dfe213f55fba95db4bf1e05 (diff) | |
download | tcl-7f65ab0b58bee6c8d6c49e4e831d34970bc6fedd.zip tcl-7f65ab0b58bee6c8d6c49e4e831d34970bc6fedd.tar.gz tcl-7f65ab0b58bee6c8d6c49e4e831d34970bc6fedd.tar.bz2 |
* README:
* generic/tcl.h:
* tools/tcl.wse.in:
* unix/configure.in:
* unix/tcl.spec:
* win/configure.in:
* win/README.binary: bumped version to 8.3.1
* win/tcl.hpj.in: updated copyright date
* generic/tclEnv.c: environment support for Mac OS/X
* unix/tclUnixPort.h: environment support for Mac OS/X
* unix/tclLoadDyld.c: new file for Mac OS/X dl functions
* unix/Makefile.in: added install-strip target; bindir, libdir,
mandir, includedir vars; tclLoadDyld.c target [Bug: 2527]
* unix/tclUnixChan.c (CreateSocket): force a socket back into
blocking mode (default state) after a -async connect succeeds.
[Bug: 4388]
* generic/tclEvent.c (TclInitSubsystems): Moved tclLibraryPath to
thread-local storage to prevent thread-related race condition.
[Bug: 5033]
* unix/tclAppInit.c (main): removed #ifdef TCL_TEST that sets the
library path as it was unnecessary and conflicts with move of
tclLibraryPath to thread-local storage.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 3e49b10..cccf9f6 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -7,12 +7,12 @@ * Copyright (c) 1987-1994 The Regents of the University of California. * Copyright (c) 1993-1996 Lucent Technologies. * Copyright (c) 1994-1998 Sun Microsystems, Inc. - * Copyright (c) 1998-1999 by Scriptics Corporation. + * Copyright (c) 1998-2000 by Scriptics Corporation. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.69 2000/04/17 20:32:21 welch Exp $ + * RCS: @(#) $Id: tcl.h,v 1.70 2000/04/19 08:32:44 hobbs Exp $ */ #ifndef _TCL @@ -49,6 +49,7 @@ extern "C" { * win/README.binary (sections 0-4) * win/README (not patchlevel) (sections 0 and 2) * unix/README (not patchlevel) (part (h)) + * unix/tcl.spec (2 LOC Major/Minor, 1 LOC patch) * tests/basic.test (not patchlevel) (version checks) * tools/tcl.hpj.in (not patchlevel, for windows installer) * tools/tcl.wse.in (for windows installer) @@ -58,10 +59,10 @@ extern "C" { #define TCL_MAJOR_VERSION 8 #define TCL_MINOR_VERSION 3 #define TCL_RELEASE_LEVEL TCL_FINAL_RELEASE -#define TCL_RELEASE_SERIAL 0 +#define TCL_RELEASE_SERIAL 1 #define TCL_VERSION "8.3" -#define TCL_PATCH_LEVEL "8.3.0" +#define TCL_PATCH_LEVEL "8.3.1" /* * The following definitions set up the proper options for Windows |