Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8127794

NativeLibLoader should change order of library suffixes on Mac OS X

XMLWordPrintable

      This code

                     } else if (osName.startsWith("Mac")) {
                         libPrefix = "lib";
                         libSuffix = ".jnilib";
                         libSuffixAlt = ".dylib";

      should be changed to this

                     } else if (osName.startsWith("Mac")) {
                         libPrefix = "lib";
                         libSuffix = ".dylib";
                         libSuffixAlt = ".jnilib";

      These files are affected:

      ./glass/glass-mat/src/com/sun/glass/utils/NativeLibLoader.java
      ./media/jfxmedia/src/com/sun/media/jfxmediaimpl/NativeLibLoader.java
      ./rt-closed/javafx-common/src/com/sun/javafx/runtime/NativeLibLoader.java

            kcr Kevin Rushforth
            bpb Brian Burkhalter
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: