summaryrefslogtreecommitdiffstats
path: root/mac/tclMacOSA.c
diff options
context:
space:
mode:
authorjingham <jingham>1999-05-11 07:11:46 (GMT)
committerjingham <jingham>1999-05-11 07:11:46 (GMT)
commit7e5fa22b2798227ac6c6f48a3f0d6f767f658c14 (patch)
tree75a17d12246664b170ac64121f77deff56d7ef90 /mac/tclMacOSA.c
parent7c4092a142f2c47e20b34c96adfb38b9a70083a6 (diff)
downloadtcl-7e5fa22b2798227ac6c6f48a3f0d6f767f658c14.zip
tcl-7e5fa22b2798227ac6c6f48a3f0d6f767f658c14.tar.gz
tcl-7e5fa22b2798227ac6c6f48a3f0d6f767f658c14.tar.bz2
Various small fixes that were required to get Tcl to build cleanly on the Mac.
Diffstat (limited to 'mac/tclMacOSA.c')
-rw-r--r--mac/tclMacOSA.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/mac/tclMacOSA.c b/mac/tclMacOSA.c
index b09cb59..e45c746 100644
--- a/mac/tclMacOSA.c
+++ b/mac/tclMacOSA.c
@@ -12,7 +12,7 @@
* See the file "License Terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclMacOSA.c,v 1.3 1999/04/16 00:47:20 stanton Exp $
+ * RCS: @(#) $Id: tclMacOSA.c,v 1.4 1999/05/11 07:12:36 jingham Exp $
*/
#define MAC_TCL
@@ -206,6 +206,14 @@ Tclapplescript_Init(
long appleScriptFlags;
/*
+ * Perform the required stubs magic...
+ */
+
+ if (!Tcl_InitStubs(interp, "8.0", 0)) {
+ return TCL_ERROR;
+ }
+
+ /*
* Here We Will Get The Available Osa Languages, Since They Can Only Be
* Registered At Startup... If You Dynamically Load Components, This
* Will Fail, But This Is Not A Common Thing To Do.