mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-11 02:24:13 +00:00
moving pango to base
Original commit message from CVS: moving pango to base
This commit is contained in:
parent
808e27ebd8
commit
d8dfd3613a
3 changed files with 23 additions and 0 deletions
|
@ -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>
|
||||
|
||||
* configure.ac:
|
||||
|
|
10
configure.ac
10
configure.ac
|
@ -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 ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_THEORA, true)
|
||||
GST_CHECK_FEATURE(THEORA, [ogg theora codec], theoradec theoraenc, [
|
||||
|
@ -597,6 +606,7 @@ ext/cdparanoia/Makefile
|
|||
ext/gnomevfs/Makefile
|
||||
ext/libvisual/Makefile
|
||||
ext/ogg/Makefile
|
||||
ext/pango/Makefile
|
||||
ext/theora/Makefile
|
||||
ext/vorbis/Makefile
|
||||
gst-libs/Makefile
|
||||
|
|
|
@ -29,6 +29,12 @@ else
|
|||
OGG_DIR=
|
||||
endif
|
||||
|
||||
if USE_PANGO
|
||||
PANGO_DIR = pango
|
||||
else
|
||||
PANGO_DIR =
|
||||
endif
|
||||
|
||||
if USE_VORBIS
|
||||
VORBIS_DIR=vorbis
|
||||
else
|
||||
|
@ -56,5 +62,6 @@ DIST_SUBDIRS = \
|
|||
gnomevfs \
|
||||
libvisual \
|
||||
ogg \
|
||||
pango \
|
||||
theora \
|
||||
vorbis
|
||||
|
|
Loading…
Reference in a new issue