bug 390048 Complex Text Line Breaking with Uniscribe for Windows. patch by <nattachai@gmail.com> r+sr=roc, a=dsicor

This commit is contained in:
masayuki%d-toybox.com 2007-08-15 16:36:59 +00:00
Родитель feeea0e6e4
Коммит 0202c6aae5
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -63,12 +63,18 @@ CPPSRCS += \
nsPangoBreaker.cpp \
$(NULL)
else
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
CPPSRCS += \
nsRuleBreaker.cpp \
nsUniscribeBreaker.cpp \
$(NULL)
else
CPPSRCS += \
nsRuleBreaker.cpp \
$(NULL)
CSRCS = rulebrk.c
endif
endif
include $(topsrcdir)/config/rules.mk
@ -80,5 +86,11 @@ CXXFLAGS += \
EXTRA_DSO_LDOPTS += \
$(MOZ_PANGO_LIBS) \
$(NULL)
endif
else
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
EXTRA_DSO_LDOPTS += \
usp10.lib \
$(NULL)
endif
endif