]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Look for lib-gnu-pkg-quux.so, not gnu-pkg-quux.so.
authorAnthony Green <green@redhat.com>
Wed, 22 Aug 2001 23:10:07 +0000 (23:10 +0000)
committerAnthony Green <green@gcc.gnu.org>
Wed, 22 Aug 2001 23:10:07 +0000 (23:10 +0000)
From-SVN: r45115

libjava/ChangeLog
libjava/java/lang/natClassLoader.cc

index b5f0dee882bb0596889b0c845bbcc56b303986b4..f7092d189518555c6e9e2e776fee885fb4374324 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-21  Anthony Green  <green@redhat.com>
+
+        * java/lang/natClassLoader.cc (findClass): Search for
+        lib-gnu-pkg-quux.so, not gnu-pkg-quux.so.
+
 2001-08-21  Jeff Sturm  <jsturm@one-point.com>
 
        * java/util/IdentityHashMap.java (get): Fix off-by-one error.
index 81e2206b114bcb4399a1d0c26a325df50bb37641..0a82ee9c84daa9d6895a50bb5bfb38fe38500263 100644 (file)
@@ -35,6 +35,7 @@ details.  */
 #include <java/lang/IncompatibleClassChangeError.h>
 #include <java/lang/reflect/Modifier.h>
 #include <java/lang/Runtime.h>
+#include <java/lang/StringBuffer.h>
 #include <java/io/Serializable.h>
 #include <java/lang/Cloneable.h>
 
@@ -184,11 +185,12 @@ gnu::gcj::runtime::VMClassLoader::findClass (jstring name)
 
   if (! klass)
     {
-      // Turn `gnu.pkg.quux' into `gnu-pkg-quux'.  Then search for a
-      // module named (eg, on Linux) `gnu-pkg-quux.so', followed by
-      // `gnu-pkg.so' and `gnu.so'.  If loading one of these causes
-      // the class to appear in the cache, then use it.
-      jstring so_base_name = name->replace ('.', '-');
+      // Turn `gnu.pkg.quux' into `lib-gnu-pkg-quux'.  Then search for
+      // a module named (eg, on Linux) `lib-gnu-pkg-quux.so', followed
+      // by `lib-gnu-pkg.so' and `lib-gnu.so'.  If loading one of
+      // these causes the class to appear in the cache, then use it.
+      java::lang::StringBuffer *sb = new java::lang::StringBuffer (JvNewStringLatin1("lib-"));
+      jstring so_base_name = (sb->append (name)->toString ())->replace ('.', '-');
 
       while (! klass && so_base_name && so_base_name->length() > 0)
        {