Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 141344 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in (-1 / +1 lines)
Lines 4577-4593 Link Here
4577
MOZ_ARG_ENABLE_BOOL(pango,
4577
MOZ_ARG_ENABLE_BOOL(pango,
4578
[  --enable-pango          Enable Pango font rendering support],
4578
[  --enable-pango          Enable Pango font rendering support],
4579
    MOZ_ENABLE_PANGO=1,
4579
    MOZ_ENABLE_PANGO=1,
4580
    MOZ_ENABLE_PANGO=)
4580
    MOZ_ENABLE_PANGO=)
4581
4581
4582
if test "$MOZ_ENABLE_PANGO"
4582
if test "$MOZ_ENABLE_PANGO"
4583
then
4583
then
4584
    AC_DEFINE(MOZ_ENABLE_PANGO)
4584
    AC_DEFINE(MOZ_ENABLE_PANGO)
4585
    PKG_CHECK_MODULES(MOZ_PANGO, pango >= 1.6.0 pangoft2 >= 1.6.0)
4585
    PKG_CHECK_MODULES(MOZ_PANGO, pangoxft >= 1.6.0)
4586
4586
4587
    AC_SUBST(MOZ_ENABLE_PANGO)
4587
    AC_SUBST(MOZ_ENABLE_PANGO)
4588
    AC_SUBST(MOZ_PANGO_CFLAGS)
4588
    AC_SUBST(MOZ_PANGO_CFLAGS)
4589
    AC_SUBST(MOZ_PANGO_LIBS)
4589
    AC_SUBST(MOZ_PANGO_LIBS)
4590
fi
4590
fi
4591
4591
4592
dnl ========================================================
4592
dnl ========================================================
4593
dnl = x11 core font support (default and ability to enable depend on toolkit)
4593
dnl = x11 core font support (default and ability to enable depend on toolkit)
(-)gfx/src/gtk/Makefile.in (+4 lines)
Lines 198-213 Link Here
198
		-lgkgfx \
198
		-lgkgfx \
199
		$(GFX_XINERAMA_LIBS) \
199
		$(GFX_XINERAMA_LIBS) \
200
		$(MOZ_JS_LIBS) \
200
		$(MOZ_JS_LIBS) \
201
		$(MOZ_UNICHARUTIL_LIBS) \
201
		$(MOZ_UNICHARUTIL_LIBS) \
202
		$(MOZ_COMPONENT_LIBS) \
202
		$(MOZ_COMPONENT_LIBS) \
203
		$(NULL)
203
		$(NULL)
204
endif
204
endif
205
205
206
ifdef MOZ_ENABLE_PANGO
207
EXTRA_DSO_LDOPTS += $(MOZ_PANGO_LIBS)
208
endif
209
206
EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(MOZ_GTK_LDFLAGS) $(MOZ_XFT_LIBS) $(MOZ_GTK2_LIBS)
210
EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(MOZ_GTK_LDFLAGS) $(MOZ_XFT_LIBS) $(MOZ_GTK2_LIBS)
207
CXXFLAGS	+= $(MOZ_GTK_CFLAGS) $(MOZ_GTK2_CFLAGS)
211
CXXFLAGS	+= $(MOZ_GTK_CFLAGS) $(MOZ_GTK2_CFLAGS)
208
CFLAGS		+= $(MOZ_GTK_CFLAGS) $(MOZ_GTK2_CFLAGS)
212
CFLAGS		+= $(MOZ_GTK_CFLAGS) $(MOZ_GTK2_CFLAGS)
209
213
210
ifeq ($(OS_ARCH), SunOS)
214
ifeq ($(OS_ARCH), SunOS)
211
ifndef GNU_CC
215
ifndef GNU_CC
212
# When using Sun's WorkShop compiler, including
216
# When using Sun's WorkShop compiler, including
213
# /wherever/workshop-5.0/SC5.0/include/CC/std/time.h
217
# /wherever/workshop-5.0/SC5.0/include/CC/std/time.h
(-)config/static-config.mk (+4 lines)
Lines 115-130 Link Here
115
ifdef MOZ_ENABLE_XPRINT
115
ifdef MOZ_ENABLE_XPRINT
116
STATIC_EXTRA_LIBS	+= $(MOZ_XPRINT_LDFLAGS)
116
STATIC_EXTRA_LIBS	+= $(MOZ_XPRINT_LDFLAGS)
117
endif
117
endif
118
118
119
ifdef MOZ_ENABLE_XFT
119
ifdef MOZ_ENABLE_XFT
120
STATIC_EXTRA_LIBS      += $(MOZ_XFT_LIBS)
120
STATIC_EXTRA_LIBS      += $(MOZ_XFT_LIBS)
121
endif
121
endif
122
122
123
ifdef MOZ_ENABLE_PANGO
124
STATIC_EXTRA_LIBS	+= $(MOZ_PANGO_LIBS)
125
endif
126
123
# Component Makefile always brings in this.
127
# Component Makefile always brings in this.
124
# STATIC_EXTRA_LIBS	+= $(TK_LIBS)
128
# STATIC_EXTRA_LIBS	+= $(TK_LIBS)
125
129
126
# Some random modules require this
130
# Some random modules require this
127
ifndef MINIMO
131
ifndef MINIMO
128
STATIC_EXTRA_LIBS	+= $(MOZ_XPCOM_OBSOLETE_LIBS)
132
STATIC_EXTRA_LIBS	+= $(MOZ_XPCOM_OBSOLETE_LIBS)
129
endif
133
endif
130
134

Return to bug 141344