Skip to content

Commit

Permalink
MacOS shall only scan for .dylib, dropping .jnilib search in NativeLi…
Browse files Browse the repository at this point in the history
…brary
  • Loading branch information
sgothel committed Aug 17, 2019
1 parent 4df5aea commit 15549c5
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/java/com/jogamp/common/os/NativeLibrary.java
Expand Up @@ -89,11 +89,6 @@ public final class NativeLibrary implements DynamicLookupHelper {
break;

case MACOS:
prefixes = new String[] { "lib" };
suffixes = new String[] { ".dylib", ".jnilib" };
isOSX = true;
break;

case IOS:
prefixes = new String[] { "lib" };
suffixes = new String[] { ".dylib" };
Expand Down

0 comments on commit 15549c5

Please sign in to comment.