Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | * win/Makefile.in: Corrected compilation flags for tclPkgConfig.c so that it doesn't require Stubs. * generic/tclBasic.c (Tcl_CreateInterp): Removed comment stating that TclInitEmbeddedConfigurationInformation needs Stubs; with the change above, the comment is now erroneous. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8049481eef5a7b25506b3f87daf45b50 |
| User & Date: | kennykb 2004-06-14 22:14:10.000 |
Context
|
2004-06-15
| ||
| 20:28 | * unix/tclConfig.sh.in (TCL_EXTRA_CFLAGS): set to @CFLAGS@, which is the configure-time CFLAGS. Ad... check-in: 235c2cad60 user: hobbs tags: trunk | |
|
2004-06-14
| ||
| 22:14 | * win/Makefile.in: Corrected compilation flags for tclPkgConfig.c so that it doesn't require Stubs. ... check-in: 8049481eef user: kennykb tags: trunk | |
| 14:39 | formatting check-in: 25d4361736 user: dgp tags: trunk | |
Changes
Changes to ChangeLog.
1 2 3 4 5 6 7 | 2004-06-11 Don Porter <dgp@users.sourceforge.net> * doc/Encoding.3: Removed bogus claims about tcl_libPath. * generic/tclInterp.c (Tcl_Init): Stopped setting the tcl_libPath variable. [tclInit] can get all its directories without it. | > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 2004-06-14 Kevin Kenny <kennykb@acm.org> * win/Makefile.in: Corrected compilation flags for tclPkgConfig.c so that it doesn't require Stubs. * generic/tclBasic.c (Tcl_CreateInterp): Removed comment stating that TclInitEmbeddedConfigurationInformation needs Stubs; with the change above, the comment is now erroneous. 2004-06-11 Don Porter <dgp@users.sourceforge.net> * doc/Encoding.3: Removed bogus claims about tcl_libPath. * generic/tclInterp.c (Tcl_Init): Stopped setting the tcl_libPath variable. [tclInit] can get all its directories without it. |
| ︙ | ︙ |
Changes to generic/tclBasic.c.
| ︙ | ︙ | |||
9 10 11 12 13 14 15 | * Copyright (c) 1994-1997 Sun Microsystems, Inc. * Copyright (c) 1998-1999 by Scriptics Corporation. * Copyright (c) 2001, 2002 by Kevin B. Kenny. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * | | | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | * Copyright (c) 1994-1997 Sun Microsystems, Inc. * Copyright (c) 1998-1999 by Scriptics Corporation. * Copyright (c) 2001, 2002 by Kevin B. Kenny. 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: tclBasic.c,v 1.106 2004/06/14 22:14:11 kennykb Exp $ */ #include "tclInt.h" #include "tclCompile.h" /* * Static procedures in this file: |
| ︙ | ︙ | |||
525 526 527 528 529 530 531 |
#ifndef TCL_GENERIC_ONLY
TclSetupEnv(interp);
#endif
/*
* TIP #59: Make embedded configuration information
| | < < | 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 |
#ifndef TCL_GENERIC_ONLY
TclSetupEnv(interp);
#endif
/*
* TIP #59: Make embedded configuration information
* available.
*/
TclInitEmbeddedConfigurationInformation (interp);
/*
* Compute the byte order of this machine.
*/
|
| ︙ | ︙ |
Changes to win/Makefile.in.
1 2 3 4 5 6 7 | # # This file is a Makefile for Tcl. 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 | # # This file is a Makefile for Tcl. 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. # # RCS: @(#) $Id: Makefile.in,v 1.77 2004/06/14 22:14:12 kennykb Exp $ VERSION = @TCL_VERSION@ #---------------------------------------------------------------- # Things you can change to personalize the Makefile for your own # site (you can make these changes in either Makefile.in or # Makefile, but changes to Makefile will get lost if you re-run |
| ︙ | ︙ | |||
433 434 435 436 437 438 439 | -DCFG_INSTALL_DOCDIR=\"$(MAN_INSTALL_DIR)\" \ \ -DCFG_RUNTIME_LIBDIR=\"$(libdir)\" \ -DCFG_RUNTIME_BINDIR=\"$(bindir)\" \ -DCFG_RUNTIME_SCRDIR=\"$(TCL_LIBRARY)\" \ -DCFG_RUNTIME_INCDIR=\"$(includedir)\" \ -DCFG_RUNTIME_DOCDIR=\"$(mandir)\" \ | < > | | 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 |
-DCFG_INSTALL_DOCDIR=\"$(MAN_INSTALL_DIR)\" \
\
-DCFG_RUNTIME_LIBDIR=\"$(libdir)\" \
-DCFG_RUNTIME_BINDIR=\"$(bindir)\" \
-DCFG_RUNTIME_SCRDIR=\"$(TCL_LIBRARY)\" \
-DCFG_RUNTIME_INCDIR=\"$(includedir)\" \
-DCFG_RUNTIME_DOCDIR=\"$(mandir)\" \
-DBUILD_tcl \
@DEPARG@ $(CC_OBJNAME)
# The following objects are part of the stub library and should not
# be built as DLL objects but none of the symbols should be exported
tclStubLib.${OBJEXT}: tclStubLib.c
$(CC) -c $(CC_SWITCHES) -DSTATIC_BUILD @DEPARG@ $(CC_OBJNAME)
|
| ︙ | ︙ |