Ignore:
Timestamp:
Dec 10, 2010, 5:58:20 PM (15 years ago)
Author:
dmik
Message:

jdk: Made build splashscreen.dll, jpeg.dll, lcms.dll.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/src/share/classes/java/awt/SplashScreen.java

    r2 r208  
    109109            // SplashScreen class is now a singleton
    110110            if (!wasClosed && theInstance == null) {
    111                 java.security.AccessController.doPrivileged(
     111                if (System.getProperty("os.name").startsWith("OS/2")) {
     112                    java.security.AccessController.doPrivileged(
     113                        new sun.security.action.LoadLibraryAction("splshscr"));
     114                } else {
     115                    java.security.AccessController.doPrivileged(
    112116                        new sun.security.action.LoadLibraryAction("splashscreen"));
     117                }
    113118                long ptr = _getInstance();
    114119                if (ptr != 0 && _isVisible(ptr)) {
Note: See TracChangeset for help on using the changeset viewer.