moving pango to base

Original commit message from CVS:
moving pango to base
This commit is contained in:
Thomas Vander Stichele 2005-12-01 15:14:11 +00:00
parent 808e27ebd8
commit d8dfd3613a
3 changed files with 23 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
* configure.ac:
* ext/Makefile.am:
moved pango to base
2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org> 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac: * configure.ac:

View file

@ -462,6 +462,15 @@ GST_CHECK_FEATURE(OGG, [ogg de/encoder], oggdemux oggmux, [
]) ])
]) ])
dnl *** pango ***
translit(dnm, m, l) AM_CONDITIONAL(USE_PANGO, true)
GST_CHECK_FEATURE(PANGO, [pango], pango, [
PKG_CHECK_MODULES(PANGO, pango pangoft2,
HAVE_PANGO="yes", HAVE_PANGO="no")
AC_SUBST(PANGO_CFLAGS)
AC_SUBST(PANGO_LIBS)
])
dnl *** theora *** dnl *** theora ***
translit(dnm, m, l) AM_CONDITIONAL(USE_THEORA, true) translit(dnm, m, l) AM_CONDITIONAL(USE_THEORA, true)
GST_CHECK_FEATURE(THEORA, [ogg theora codec], theoradec theoraenc, [ GST_CHECK_FEATURE(THEORA, [ogg theora codec], theoradec theoraenc, [
@ -597,6 +606,7 @@ ext/cdparanoia/Makefile
ext/gnomevfs/Makefile ext/gnomevfs/Makefile
ext/libvisual/Makefile ext/libvisual/Makefile
ext/ogg/Makefile ext/ogg/Makefile
ext/pango/Makefile
ext/theora/Makefile ext/theora/Makefile
ext/vorbis/Makefile ext/vorbis/Makefile
gst-libs/Makefile gst-libs/Makefile

View file

@ -29,6 +29,12 @@ else
OGG_DIR= OGG_DIR=
endif endif
if USE_PANGO
PANGO_DIR = pango
else
PANGO_DIR =
endif
if USE_VORBIS if USE_VORBIS
VORBIS_DIR=vorbis VORBIS_DIR=vorbis
else else
@ -56,5 +62,6 @@ DIST_SUBDIRS = \
gnomevfs \ gnomevfs \
libvisual \ libvisual \
ogg \ ogg \
pango \
theora \ theora \
vorbis vorbis