~ubuntu-branches/ubuntu/lucid/graphviz/lucid-updates

« back to all changes in this revision

Viewing changes to plugin/gdk_pixbuf/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2008-06-19 20:23:23 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080619202323-ls23h96ntj9ny94m
Tags: 2.18-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Build depend on liblualib50-dev instead of liblua5.1-0-dev.
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev or python2.5-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile.am,v 1.7 2007/10/26 12:10:50 ellson Exp $ $Revision: 1.7 $
 
1
# $Id: Makefile.am,v 1.10 2008/02/28 03:29:52 glenlow Exp $ $Revision: 1.10 $
2
2
## Process this file with automake to produce Makefile.in
3
3
 
4
4
AM_CPPFLAGS = \
10
10
        -I$(top_srcdir)/lib/cdt \
11
11
        $(GDK_PIXBUF_CFLAGS)
12
12
 
 
13
if WITH_PANGOCAIRO
13
14
if WITH_GDK_PIXBUF
14
15
noinst_LTLIBRARIES = libgvplugin_gdk_pixbuf_C.la
 
16
if WITH_WIN32
 
17
lib_LTLIBRARIES = libgvplugin_gdk_pixbuf.la
 
18
else
15
19
pkglib_LTLIBRARIES = libgvplugin_gdk_pixbuf.la
16
20
endif
 
21
endif
 
22
endif
17
23
 
18
24
libgvplugin_gdk_pixbuf_C_la_SOURCES = \
19
25
        gvplugin_gdk_pixbuf.c \
23
29
libgvplugin_gdk_pixbuf_la_SOURCES = $(libgvplugin_gdk_pixbuf_C_la_SOURCES)
24
30
libgvplugin_gdk_pixbuf_la_LIBADD = \
25
31
        $(top_builddir)/lib/gvc/libgvc.la @GDK_PIXBUF_LIBS@
 
32
        
 
33
if WITH_WIN32
 
34
libgvplugin_gdk_pixbuf_la_LDFLAGS += -no-undefined
 
35
endif
26
36
 
27
37
EXTRA_DIST = Makefile.old
28
38