Back out conversion to string methods; the Distutils is intended to work
   with 1.5.2
diff --git a/Lib/distutils/extension.py b/Lib/distutils/extension.py
index f49abad..a63ede2 100644
--- a/Lib/distutils/extension.py
+++ b/Lib/distutils/extension.py
@@ -7,7 +7,7 @@
 
 __revision__ = "$Id$"
 
-import os
+import os, string
 from types import *
 
 
@@ -168,7 +168,7 @@
             elif switch == "-I":
                 ext.include_dirs.append(value)
             elif switch == "-D":
-                equals = value.find("=")
+                equals = string.find(value, "=")
                 if equals == -1:        # bare "-DFOO" -- no value
                     ext.define_macros.append((value, None))
                 else:                   # "-DFOO=blah"