Tcl Source Code

Check-in [47b5a84a31]
Login

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

Overview
Comment:[bug 3508771] fix OSX build
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-5-branch
Files: files | file ages | folders
SHA1: 47b5a84a31fdd038bcf225c2811fd8a72b030d95
User & Date: jan.nijtmans 2012-03-22 09:57:07
Context
2012-03-23
15:26
Revert some cygwin-related signature changes from [835f8e1e9d] (2010-02-01) They were an attempt to ... check-in: 0756e97333 user: jan.nijtmans tags: core-8-5-branch
2012-03-22
10:01
[bug 3508771] fix OSX build check-in: 73fee7c814 user: jan.nijtmans tags: trunk
09:57
[bug 3508771] fix OSX build check-in: 47b5a84a31 user: jan.nijtmans tags: core-8-5-branch
09:49
[bug 3508771] fix OSX build check-in: 52f3baabd8 user: jan.nijtmans tags: core-8-4-branch
2012-03-20
10:16
merge-mark check-in: 304c3cdf05 user: jan.nijtmans tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclStubInit.c.

106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
}

#define Tcl_MacOSXOpenBundleResources (int (*) _ANSI_ARGS_(( \
		Tcl_Interp *, CONST char *, int, int, char *))) Tcl_WinUtfToTChar
#define Tcl_MacOSXOpenVersionedBundleResources (int (*) _ANSI_ARGS_(( \
		Tcl_Interp *, CONST char *, CONST char *, int, int, char *))) Tcl_WinTCharToUtf

#elif !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */
#   define TclWinGetPlatformId (int (*)()) TclpCreateTempFile
#   ifndef MAC_OSX_TCL
#	define Tcl_MacOSXOpenBundleResources 0
#	define Tcl_MacOSXOpenVersionedBundleResources 0
#   endif
#endif








|







106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
}

#define Tcl_MacOSXOpenBundleResources (int (*) _ANSI_ARGS_(( \
		Tcl_Interp *, CONST char *, int, int, char *))) Tcl_WinUtfToTChar
#define Tcl_MacOSXOpenVersionedBundleResources (int (*) _ANSI_ARGS_(( \
		Tcl_Interp *, CONST char *, CONST char *, int, int, char *))) Tcl_WinTCharToUtf

#elif !defined(__WIN32__) /* UNIX and MAC */
#   define TclWinGetPlatformId (int (*)()) TclpCreateTempFile
#   ifndef MAC_OSX_TCL
#	define Tcl_MacOSXOpenBundleResources 0
#	define Tcl_MacOSXOpenVersionedBundleResources 0
#   endif
#endif