[51121] trunk/base/src

jmr at macports.org jmr at macports.org
Mon May 18 12:40:03 PDT 2009


Revision: 51121
          http://trac.macports.org/changeset/51121
Author:   jmr at macports.org
Date:     2009-05-18 12:40:02 -0700 (Mon, 18 May 2009)
Log Message:
-----------
we require Tcl 8.4 these days

Modified Paths:
--------------
    trunk/base/src/cflib1.0/CFLib.c
    trunk/base/src/macports1.0/macports.c
    trunk/base/src/pextlib1.0/Pextlib.c
    trunk/base/src/registry2.0/registry.c
    trunk/base/src/tclobjc1.0/tclobjc.m

Modified: trunk/base/src/cflib1.0/CFLib.c
===================================================================
--- trunk/base/src/cflib1.0/CFLib.c	2009-05-18 19:15:54 UTC (rev 51120)
+++ trunk/base/src/cflib1.0/CFLib.c	2009-05-18 19:40:02 UTC (rev 51121)
@@ -1346,7 +1346,7 @@
 		}
 	};
 
-	if(Tcl_InitStubs(interp, "8.3", 0) == NULL)
+	if(Tcl_InitStubs(interp, "8.4", 0) == NULL)
 		return TCL_ERROR;
 
 	for (i = 0; sig[i].name != NULL; ++i) {

Modified: trunk/base/src/macports1.0/macports.c
===================================================================
--- trunk/base/src/macports1.0/macports.c	2009-05-18 19:15:54 UTC (rev 51120)
+++ trunk/base/src/macports1.0/macports.c	2009-05-18 19:40:02 UTC (rev 51121)
@@ -51,7 +51,7 @@
 int
 Macports_Init(Tcl_Interp *interp)
 {
-	if (Tcl_InitStubs(interp, "8.3", 0) == NULL)
+	if (Tcl_InitStubs(interp, "8.4", 0) == NULL)
 		return TCL_ERROR;
 	Tcl_CreateObjCommand(interp, "macports::version", macports__version, NULL, NULL);
 	if (Tcl_PkgProvide(interp, "macports", "1.0") != TCL_OK)

Modified: trunk/base/src/pextlib1.0/Pextlib.c
===================================================================
--- trunk/base/src/pextlib1.0/Pextlib.c	2009-05-18 19:15:54 UTC (rev 51120)
+++ trunk/base/src/pextlib1.0/Pextlib.c	2009-05-18 19:40:02 UTC (rev 51121)
@@ -1124,7 +1124,7 @@
 
 int Pextlib_Init(Tcl_Interp *interp)
 {
-	if (Tcl_InitStubs(interp, "8.3", 0) == NULL)
+	if (Tcl_InitStubs(interp, "8.4", 0) == NULL)
 		return TCL_ERROR;
 
 	Tcl_CreateObjCommand(interp, "system", SystemCmd, NULL, NULL);

Modified: trunk/base/src/registry2.0/registry.c
===================================================================
--- trunk/base/src/registry2.0/registry.c	2009-05-18 19:15:54 UTC (rev 51120)
+++ trunk/base/src/registry2.0/registry.c	2009-05-18 19:40:02 UTC (rev 51121)
@@ -288,7 +288,7 @@
  * It creates the global commands made available in the registry namespace.
  */
 int Registry_Init(Tcl_Interp* interp) {
-    if (Tcl_InitStubs(interp, "8.3", 0) == NULL) {
+    if (Tcl_InitStubs(interp, "8.4", 0) == NULL) {
         return TCL_ERROR;
     }
     Tcl_CreateObjCommand(interp, "registry::open", registry_open, NULL, NULL);

Modified: trunk/base/src/tclobjc1.0/tclobjc.m
===================================================================
--- trunk/base/src/tclobjc1.0/tclobjc.m	2009-05-18 19:15:54 UTC (rev 51120)
+++ trunk/base/src/tclobjc1.0/tclobjc.m	2009-05-18 19:40:02 UTC (rev 51121)
@@ -229,7 +229,7 @@
 
 int Tclobjc_Init(Tcl_Interp *interp)
 {
-	if(Tcl_InitStubs(interp, "8.3", 0) == NULL)
+	if(Tcl_InitStubs(interp, "8.4", 0) == NULL)
 		return (TCL_ERROR);
 
 	/* Register custom Tcl_Obj types */
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20090518/d53601cc/attachment.html>


More information about the macports-changes mailing list