* java/lang/Runtime.java (loadLibrary): Pass `true' as search
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Jul 2002 23:17:39 +0000 (23:17 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Jul 2002 23:17:39 +0000 (23:17 +0000)
argument to _load.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55727 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/lang/Runtime.java

index 75ec4b7..dde92df 100644 (file)
@@ -1,4 +1,9 @@
 2002-07-24  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/Runtime.java (loadLibrary): Pass `true' as search
+       argument to _load.
+
+2002-07-24  Tom Tromey  <tromey@redhat.com>
             Tony Kimball <alk@pobox.com>
 
        * java/io/natFileDescriptorWin32.cc (setLength): New method.
index 65f73a3..eb34391 100644 (file)
@@ -652,7 +652,7 @@ public class Runtime
     SecurityManager sm = securityManager; // Be thread-safe!
     if (sm != null)
       sm.checkLink(libname);
-    _load(libname, false);
+    _load(libname, true);
   }
 
   /**