]> git.saurik.com Git - wxWidgets.git/commitdiff
No longer need the SWIG_VERSION to be output to the C++ file, so
authorRobin Dunn <robin@alldunn.com>
Sat, 11 Feb 2006 19:45:17 +0000 (19:45 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 11 Feb 2006 19:45:17 +0000 (19:45 +0000)
remove that change from the patch.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37502 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/SWIG/README.txt
wxPython/SWIG/swig-1.3.27.patch

index 5931e59a0a61c141941e39a0703aeb9bdee9d0d0..2b6d3cc13a30b8f1efa5de2a2b39434578132ada 100644 (file)
@@ -43,9 +43,6 @@ swig-1.3.27.patch
 
     Bug fix for SWIG's definition of the %makedefault macro.
 
-    Add a SWIG_VERSION macro to the wrapper file so C/C++ code can
-    integrate with different versions of the generated runtime code.
-
     
 
 ------------------------------------------------------------------------
index bd65fce9c24299f836274aef8f80d902b1187144..aef25fe251a8162c0039cecfb22475c4c863b11d 100644 (file)
@@ -4,7 +4,7 @@ RCS file: /cvsroot/swig/SWIG/Doc/Manual/Python.html,v
 retrieving revision 1.31
 diff -u -4 -r1.31 Python.html
 --- Doc/Manual/Python.html     6 Oct 2005 21:49:58 -0000       1.31
-+++ Doc/Manual/Python.html     29 Jan 2006 02:05:55 -0000
++++ Doc/Manual/Python.html     11 Feb 2006 18:59:48 -0000
 @@ -4461,10 +4461,10 @@
  <H2><a name="Python_nn65"></a>26.10 Docstring Features</H2>
  
@@ -24,7 +24,7 @@ RCS file: /cvsroot/swig/SWIG/Lib/swig.swg,v
 retrieving revision 1.49
 diff -u -4 -r1.49 swig.swg
 --- Lib/swig.swg       15 Oct 2005 00:15:30 -0000      1.49
-+++ Lib/swig.swg       29 Jan 2006 02:05:55 -0000
++++ Lib/swig.swg       11 Feb 2006 18:59:48 -0000
 @@ -51,9 +51,9 @@
  
  #define %nodefault       %feature("nodefault","1")
@@ -42,7 +42,7 @@ RCS file: /cvsroot/swig/SWIG/Lib/swiginit.swg,v
 retrieving revision 1.5
 diff -u -4 -r1.5 swiginit.swg
 --- Lib/swiginit.swg   12 Sep 2005 23:25:03 -0000      1.5
-+++ Lib/swiginit.swg   29 Jan 2006 02:05:55 -0000
++++ Lib/swiginit.swg   11 Feb 2006 18:59:48 -0000
 @@ -40,14 +40,19 @@
  **/
  
@@ -192,7 +192,7 @@ RCS file: /cvsroot/swig/SWIG/Source/Modules/python.cxx,v
 retrieving revision 1.107
 diff -u -4 -r1.107 python.cxx
 --- Source/Modules/python.cxx  7 Oct 2005 13:17:41 -0000       1.107
-+++ Source/Modules/python.cxx  29 Jan 2006 02:05:56 -0000
++++ Source/Modules/python.cxx  11 Feb 2006 18:59:48 -0000
 @@ -36,9 +36,8 @@
  static  File         *f_directors_h = 0;
  static  File         *f_init = 0;
@@ -203,28 +203,7 @@ diff -u -4 -r1.107 python.cxx
  
  static  String       *methods;
  static  String       *class_name;
-@@ -281,8 +280,20 @@
-     Swig_banner(f_runtime);
-     Printf(f_runtime,"#define SWIGPYTHON\n");
-+    String *package_version = NewString(PACKAGE_VERSION);
-+    char *token = strtok(Char(package_version), ".");
-+    String *vers = NewString("#define SWIG_VERSION 0x");
-+    while (token) {
-+      int len = strlen(token);
-+      Printf(vers, "%s%s", (len == 1) ? "0" : "", token);
-+      token = strtok(NULL, ".");
-+    }
-+    Printf(f_runtime, "%s\n", vers);
-+    Delete(package_version);
-+    Delete(vers);
-+
-     if (directorsEnabled()) {
-       Printf(f_runtime,"#define SWIG_DIRECTORS\n");
-     }
-@@ -322,9 +333,8 @@
+@@ -322,9 +321,8 @@
        }
        Delete(filen); filen = NULL;
  
@@ -234,7 +213,7 @@ diff -u -4 -r1.107 python.cxx
  
        Swig_register_filebyname("shadow",f_shadow);
        Swig_register_filebyname("python",f_shadow);
-@@ -343,8 +353,10 @@
+@@ -343,8 +341,10 @@
        if (mod_docstring && Len(mod_docstring)) {
          Printv(f_shadow, "\n\"\"\"\n", mod_docstring, "\n\"\"\"\n", NIL);
          Delete(mod_docstring); mod_docstring = NULL;
@@ -245,7 +224,7 @@ diff -u -4 -r1.107 python.cxx
        /* if (!modern) */
        /* always needed, a class can be forced to be no-modern, such as an exception */
        { 
-@@ -445,10 +457,8 @@
+@@ -445,10 +445,8 @@
      Printf(f_wrappers,"}\n");
      Printf(f_wrappers,"#endif\n");
  
@@ -256,7 +235,7 @@ diff -u -4 -r1.107 python.cxx
        Printv(f_shadow_py, f_shadow_stubs, "\n",NIL);
  
        Close(f_shadow_py);
-@@ -507,12 +517,9 @@
+@@ -507,12 +505,9 @@
          }
  
          // finally, output the name of the imported module
@@ -270,7 +249,7 @@ diff -u -4 -r1.107 python.cxx
        }
      }
      return Language::importDirective(n);
-@@ -774,10 +781,15 @@
+@@ -774,10 +769,15 @@
          
        // Do the param type too?
        if (showTypes) {