Changeset 74 for trunk/openjdk/jdk/make/sun/font
- Timestamp:
- Jul 21, 2010, 9:16:25 PM (15 years ago)
- Location:
- trunk/openjdk/jdk/make/sun/font
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/sun/font/FILES_c.gmk
r2 r74 113 113 114 114 115 ifeq ($( PLATFORM),windows)115 ifeq ($(filter-out windows os2,$(PLATFORM)),) 116 116 FILES_c_platform = fontpath.c 117 117 FILES_cpp_platform = D3DTextRenderer.cpp -
trunk/openjdk/jdk/make/sun/font/Makefile
r2 r74 75 75 sun/java2d/loops/GraphicsPrimitive.java 76 76 77 ifeq ($( PLATFORM), windows)77 ifeq ($(filter-out windows os2, $(PLATFORM)),) 78 78 79 79 # Files built here do not compile with warning level 3 if warnings are fatal … … 131 131 132 132 $(LIB_LOCATION)/$(LIB_PREFIX)freetype.$(LIBRARY_SUFFIX): 133 ifeq ($( PLATFORM), windows)133 ifeq ($(filter-out windows os2, $(PLATFORM)),) 134 134 $(CP) $(FREETYPE_LIB_PATH)/$(LIB_PREFIX)freetype.$(LIBRARY_SUFFIX) $@ 135 135 else … … 169 169 endif 170 170 171 ifeq ($( PLATFORM), windows)171 ifeq ($(filter-out windows os2, $(PLATFORM)),) 172 172 vpath %.cpp $(PLATFORM_SRC)/native/sun/windows 173 173 vpath %.cpp $(PLATFORM_SRC)/native/sun/java2d/d3d … … 205 205 -I$(TEMPDIR)/../../sun.awt/awt/CClassHeaders 206 206 207 ifeq ($( PLATFORM), windows)207 ifeq ($(filter-out windows os2, $(PLATFORM)),) 208 208 CPPFLAGS += -I$(PLATFORM_SRC)/native/sun/windows \ 209 209 -I$(PLATFORM_SRC)/native/sun/java2d/d3d -
trunk/openjdk/jdk/make/sun/font/t2k/Makefile
r2 r74 63 63 sun/font/T2KFontScaler.java 64 64 65 ifeq ($( PLATFORM), windows)65 ifeq ($(filter-out windows os2, $(PLATFORM)),) 66 66 67 67 # Files built here do not compile with warning level 3 if warnings are fatal … … 99 99 # 100 100 # setup the list of libraries to link in... 101 ifneq ($( PLATFORM), windows)101 ifneq ($(filter-out windows os2, $(PLATFORM)),) 102 102 OTHER_LDLIBS += $(LIBM) $(LIBCXX) -lfontmanager 103 103 ifeq ($(PLATFORM), linux)
Note:
See TracChangeset
for help on using the changeset viewer.