moving pango to base
authorThomas Vander Stichele <thomas@apestaart.org>
Thu, 1 Dec 2005 15:14:11 +0000 (15:14 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Thu, 1 Dec 2005 15:14:11 +0000 (15:14 +0000)
Original commit message from CVS:
moving pango to base

ChangeLog
configure.ac
ext/Makefile.am

index ac63cd5..b9b32fa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 6d79edc..33259dd 100644 (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 ***
 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
index e4c32ad..b09a15b 100644 (file)
@@ -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