Changeset 213 for trunk/openjdk/jdk/make


Ignore:
Timestamp:
Dec 18, 2010, 12:41:53 AM (15 years ago)
Author:
dmik
Message:

jdk: Search for font files in directories where registered fonts from the OS/2 font palette reside. This causes JDK to pick up system fonts and eliminates the need to distribute any fonts with it.

Location:
trunk/openjdk/jdk/make/sun/font
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/make/sun/font/FILES_c.gmk

    r200 r213  
    115115ifeq ($(filter-out windows os2,$(PLATFORM)),)
    116116FILES_c_platform = fontpath.c
    117 ifneq ($(PLATFORM), os2) 
     117ifeq ($(PLATFORM), os2) 
     118FILES_c_platform += fontpath_os2.c
    118119# no D3D on OS/2
     120else
    119121FILES_cpp_platform = D3DTextRenderer.cpp
    120122endif
  • trunk/openjdk/jdk/make/sun/font/Makefile

    r202 r213  
    171171vpath %.cpp   $(SHARE_SRC)/native/$(PKGDIR)
    172172
     173ifeq ($(PLATFORM), os2) 
     174vpath %.c   $(PLATFORM_SRC_OS2)/native/$(PKGDIR)
     175endif
     176
    173177#
    174178# Fontmanager is headless (independent of X/Motif)
Note: See TracChangeset for help on using the changeset viewer.