Tcl Source Code

Check-in [5099a81b50]
Login

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

Overview
Comment:Disable command line globbing on MinGW compiles: this saves startup time, since the result of the glob is not used anywhere.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-5-branch
Files: files | file ages | folders
SHA1: 5099a81b50e5872f0573b3c680c3f9e1356dec3e
User & Date: jan.nijtmans 2013-09-30 14:03:56
References
2018-08-29
15:55
partially cherry-picking of [5099a81b50], never reached 8.6, so for example build for MINGW breaks t... check-in: cae24931ed user: sebres tags: core-8-6-branch
Context
2013-10-02
07:58
Fix compilation with latest MinGW-w64 version 3.0: Conflict on EXCEPTION_REGISTRATION typedef, which... check-in: 93a144a3be user: jan.nijtmans tags: core-8-5-branch
2013-09-30
14:07
Disable command line globbing on MinGW compiles: this saves startup time, since the result of the gl... check-in: fa4ce191d2 user: jan.nijtmans tags: trunk
14:03
Disable command line globbing on MinGW compiles: this saves startup time, since the result of the gl... check-in: 5099a81b50 user: jan.nijtmans tags: core-8-5-branch
2013-09-27
09:35
Cherrypick [87d1313df3] from trunk: Workaround for [http://sourceforge.net/p/mingw/bugs/2065/|MinGW... check-in: 5fe84a86f5 user: jan.nijtmans tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to win/tclAppInit.c.

20
21
22
23
24
25
26

27
28
29
30
31
32
33
extern Tcl_PackageInitProc	Procbodytest_Init;
extern Tcl_PackageInitProc	Procbodytest_SafeInit;
extern Tcl_PackageInitProc	Tcltest_Init;
extern Tcl_PackageInitProc	TclObjTest_Init;
#endif /* TCL_TEST */

#if defined(__GNUC__)

static void		setargv(int *argcPtr, char ***argvPtr);
#endif /* __GNUC__ */

/*
 *----------------------------------------------------------------------
 *
 * main --







>







20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
extern Tcl_PackageInitProc	Procbodytest_Init;
extern Tcl_PackageInitProc	Procbodytest_SafeInit;
extern Tcl_PackageInitProc	Tcltest_Init;
extern Tcl_PackageInitProc	TclObjTest_Init;
#endif /* TCL_TEST */

#if defined(__GNUC__)
int _CRT_glob = 0;
static void		setargv(int *argcPtr, char ***argvPtr);
#endif /* __GNUC__ */

/*
 *----------------------------------------------------------------------
 *
 * main --