From 1bfdcafcb0bc683c587513b3c6b3f14bd28d413a Mon Sep 17 00:00:00 2001 From: "mkaply%us.ibm.com" Date: Thu, 16 May 2002 14:21:41 +0000 Subject: [PATCH] #97861 r=cls, a=chofmann OS/2 only - add OS/2 specific nsTransform2D so Os/2 builds don't suck git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_0_BRANCH@121627 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/gfx/src/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mozilla/gfx/src/Makefile.in b/mozilla/gfx/src/Makefile.in index 031221ead54..6d74b5af06a 100644 --- a/mozilla/gfx/src/Makefile.in +++ b/mozilla/gfx/src/Makefile.in @@ -94,13 +94,18 @@ CPPSRCS = \ nsNameValuePairDB.cpp \ nsRenderingContextImpl.cpp \ nsRect.cpp \ - nsTransform2D.cpp \ nsScriptableRegion.cpp \ nsGraphicsImpl.cpp \ nsPrintOptionsImpl.cpp \ nsPrintSettingsImpl.cpp \ $(NULL) +ifeq ($(OS_ARCH),OS2) +CPPSRCS += nsTransform2DOS2.cpp +else +CPPSRCS += nsTransform2D.cpp +endif + ifeq (,$(filter windows,$(MOZ_WIDGET_TOOLKIT))) CPPSRCS += nsCompressedCharMap.cpp endif