~oem-solutions-group/unity-2d/clutter-1.0

« back to all changes in this revision

Viewing changes to clutter/pango/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-09-06 21:02:03 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090906210203-pqjxypxpcvdp4vr7
Tags: 1.0.4-0ubuntu1
* New upstream release (LP: #425339)
  - Depend on GObject-Introspection 0.6.4, to fix the generation of
    introspection data from uninstalled libraries
  - Fix a crash when closing multiple stages
  - Help gtk-doc pick up ClutterInterval as an object
  - Do not premultiply the color twice inside the CoglPango renderer
  - Fix keyboard navigation of works inside ClutterText
  - Allow key events to bubble up to its parent container if the
    event contains the control modifier is detected
  - Documentation fixes
  - Build fixes
  - Update the MingW script for building Clutter on Windows
  - Update the build instructions for OS X
  - On X11, make sure to destroy the stage Window when switching to
    a foreign one
  - Fix a bug where clutter_actor_apply_relative_transform() was no
    using the right vertex to perform the transformation
* debian/control: bump gobject-introspection and related from 0.6.3 to
  0.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
PACKAGE_NAME = @PACKAGE_NAME@
191
191
PACKAGE_STRING = @PACKAGE_STRING@
192
192
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
193
PACKAGE_URL = @PACKAGE_URL@
193
194
PACKAGE_VERSION = @PACKAGE_VERSION@
194
195
PANGO_PREFIX = @PANGO_PREFIX@
195
196
PATH_SEPARATOR = @PATH_SEPARATOR@
287
288
 
288
289
noinst_LTLIBRARIES = libcoglpango.la
289
290
libcoglpango_la_SOURCES = $(source_c) $(source_h) $(source_h_priv)
290
 
libcoglpango_la_CPPFLAGS = $(CLUTTER_CFLAGS)
 
291
libcoglpango_la_CPPFLAGS = $(CLUTTER_CFLAGS) $(COGL_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS)
291
292
libcoglpango_la_LIBADD = $(CLUTTER_LIBS)
292
293
INCLUDES = \
293
294
        -DG_DISABLE_SINGLE_INCLUDES     \
297
298
        -I$(top_srcdir)/clutter         \
298
299
        -I$(top_srcdir)/clutter/cogl    \
299
300
        -I$(top_builddir)/clutter       \
300
 
        -I$(top_builddir)/clutter/cogl  \
301
 
        $(CLUTTER_DEBUG_CFLAGS)         \
302
 
        $(COGL_DEBUG_CFLAGS)            \
303
 
        $(MAINTAINER_CFLAGS)
 
301
        -I$(top_builddir)/clutter/cogl
304
302
 
305
 
coglpangoheadersdir = $(includedir)/clutter-@CLUTTER_MAJORMINOR@/cogl
 
303
coglpangoheadersdir = $(includedir)/clutter-@CLUTTER_API_VERSION@/cogl
306
304
coglpangoheaders_HEADERS = $(source_h)
307
305
all: all-am
308
306