From d8dfd3613a7a9ea82b9aaa36d1926b3f45d14875 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 1 Dec 2005 15:14:11 +0000 Subject: [PATCH] moving pango to base Original commit message from CVS: moving pango to base --- ChangeLog | 6 ++++++ configure.ac | 10 ++++++++++ ext/Makefile.am | 7 +++++++ 3 files changed, 23 insertions(+) diff --git a/ChangeLog b/ChangeLog index ac63cd544b..b9b32fa460 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-12-01 Thomas Vander Stichele + + * configure.ac: + * ext/Makefile.am: + moved pango to base + 2005-12-01 Thomas Vander Stichele * configure.ac: diff --git a/configure.ac b/configure.ac index 6d79edc240..33259dd46a 100644 --- a/configure.ac +++ b/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 diff --git a/ext/Makefile.am b/ext/Makefile.am index e4c32ad82e..b09a15b3e5 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -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