- Timestamp:
- Dec 8, 2010, 10:01:40 PM (15 years ago)
- Location:
- trunk/openjdk/jdk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/sun/font/Makefile
r200 r202 32 32 LIBRARY = fontmanager 33 33 PRODUCT = sun 34 35 LIBRARY_SHORT = fontmgr 34 36 35 37 # Indicate we want the C++ compiler to do the linking. -
trunk/openjdk/jdk/src/share/classes/sun/font/FontManagerNativeLibrary.java
r2 r202 59 59 System.loadLibrary("freetype"); 60 60 } 61 System.loadLibrary("fontmanager"); 61 if (System.getProperty("os.name").startsWith("OS/2")) { 62 System.loadLibrary("fontmgr"); 63 } else { 64 System.loadLibrary("fontmanager"); 65 } 62 66 63 67 return null;
Note:
See TracChangeset
for help on using the changeset viewer.