Tcl Source Code

Check-in [b436652040]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Remove the stubs functions, corrected the stub .obj file set.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | core-8-1-branch-old
Files: files | file ages | folders
SHA1: b436652040079252a6f24553d2eb62de8bcd200f
User & Date: redman 1999-03-30 02:29:55.000
Context
1999-03-30
02:36
removed stub functions check-in: 2ecf20b81d user: redman tags: core-8-1-branch-old
02:29
Remove the stubs functions, corrected the stub .obj file set. check-in: b436652040 user: redman tags: core-8-1-branch-old
01:55
Remove the stub function definitions. Change stub macros to use just the name of the function witho... check-in: adb44e19f5 user: redman tags: core-8-1-branch-old
Changes
Unified Diff Ignore Whitespace Patch
Changes to win/makefile.vc.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Visual C++ 2.x and 4.0 makefile
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# 
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
# Copyright (c) 1998-1999 by Scriptics Corporation.
#
# RCS: @(#) $Id: makefile.vc,v 1.1.2.20 1999/03/19 04:01:26 stanton Exp $

# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from 
# location of the compiler directories.

#
# Project directories








|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Visual C++ 2.x and 4.0 makefile
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# 
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
# Copyright (c) 1998-1999 by Scriptics Corporation.
#
# RCS: @(#) $Id: makefile.vc,v 1.1.2.21 1999/03/30 02:29:55 redman Exp $

# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from 
# location of the compiler directories.

#
# Project directories
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
	$(TMPDIR)\tclWinMtherr.obj \
	$(TMPDIR)\tclWinNotify.obj \
	$(TMPDIR)\tclWinPipe.obj \
	$(TMPDIR)\tclWinSock.obj \
	$(TMPDIR)\tclWinThrd.obj \
	$(TMPDIR)\tclWinTime.obj 

TCLSTUBOBJS = \
	$(TMPDIR)\tclStubLib.obj \
	$(TMPDIR)\tclStubs.obj \
	$(TMPDIR)\tclPlatStubs.obj \
	$(TMPDIR)\tclIntStubs.obj \
	$(TMPDIR)\tclIntPlatStubs.obj

cc32		= "$(TOOLS32)\bin\cl.exe"
link32		= "$(TOOLS32)\bin\link.exe"
rc32		= "$(TOOLS32_rc)\bin\rc.exe"
include32	= -I"$(TOOLS32)\include"
lib32		= "$(TOOLS32)\bin\lib.exe"








<
|
<
<
<
<







198
199
200
201
202
203
204

205




206
207
208
209
210
211
212
	$(TMPDIR)\tclWinMtherr.obj \
	$(TMPDIR)\tclWinNotify.obj \
	$(TMPDIR)\tclWinPipe.obj \
	$(TMPDIR)\tclWinSock.obj \
	$(TMPDIR)\tclWinThrd.obj \
	$(TMPDIR)\tclWinTime.obj 


TCLSTUBOBJS = $(TMPDIR)\tclStubLib.obj \





cc32		= "$(TOOLS32)\bin\cl.exe"
link32		= "$(TOOLS32)\bin\link.exe"
rc32		= "$(TOOLS32_rc)\bin\rc.exe"
include32	= -I"$(TOOLS32)\include"
lib32		= "$(TOOLS32)\bin\lib.exe"

506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530

$(TMPDIR)\tclWinReg.obj : $(WINDIR)\tclWinReg.c
	$(cc32) $(TCL_CFLAGS) -DUSE_TCL_STUBS -Fo$@ $?

# 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

$(TMPDIR)\tclStubs.obj : $(GENERICDIR)\tclStubs.c
	$(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -Fo$@ $?

$(TMPDIR)\tclPlatStubs.obj : $(GENERICDIR)\tclPlatStubs.c
	$(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -Fo$@ $?

$(TMPDIR)\tclIntStubs.obj : $(GENERICDIR)\tclIntStubs.c
	$(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -Fo$@ $?

$(TMPDIR)\tclPlatIntStubs.obj : $(GENERICDIR)\tclPlatIntStubs.c
	$(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -Fo$@ $?

# Dedependency rules

$(GENERICDIR)\regcomp.c: \
	$(GENERICDIR)\regguts.h \
	$(GENERICDIR)\regc_lex.c \
	$(GENERICDIR)\regc_color.c \







|


<
<
<
<
<
<
<
<







501
502
503
504
505
506
507
508
509
510








511
512
513
514
515
516
517

$(TMPDIR)\tclWinReg.obj : $(WINDIR)\tclWinReg.c
	$(cc32) $(TCL_CFLAGS) -DUSE_TCL_STUBS -Fo$@ $?

# 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

$(TMPDIR)\tclStubLib.obj : $(GENERICDIR)\tclStubLib.c
	$(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -Fo$@ $?










# Dedependency rules

$(GENERICDIR)\regcomp.c: \
	$(GENERICDIR)\regguts.h \
	$(GENERICDIR)\regc_lex.c \
	$(GENERICDIR)\regc_color.c \