~ubuntu-branches/ubuntu/intrepid/poppler/intrepid-security

« back to all changes in this revision

Viewing changes to glib/demo/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-09-04 10:36:25 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070904103625-pov79pxaif6r0t2r
Tags: 0.6-0ubuntu1
* New upstream version:
  - CairoOutputDev fixes
  - Allow pdftoppm to read/write from stdin/stdout
  - API work on Qt4 frontend
  - Fix pdfimages produces inverted image for black & white image
  - Fix error on the NFKC text matching routine
  - Add support for word and line selections
  - Do not enforce %%EOF at the end of file
  - Pad zeroes instead of aborting when rendering 1-bit images
    and the stream is too short
  - Update glib bindings documentation
* debian/control, debian/libpoppler2.install, debian/libpoppler-glib2.install,
  debian/libpoppler-qt2.install, debian/libpoppler-qt4-2.install, 
  debian/rules:
  - updated for soname change
* debian/libpoppler-glib-dev.install:
  - install new test-poppler-glib
* debian/patches/006_pthreads_ldflags.patch:
  - updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES =                                      \
 
2
        -I$(top_srcdir)/glib                    \
 
3
        $(GTK_TEST_CFLAGS)
 
4
 
 
5
if BUILD_GTK_TEST
 
6
noinst_PROGRAMS = poppler-glib-demo
 
7
endif
 
8
 
 
9
poppler_glib_demo_SOURCES =                     \
 
10
        main.c                                  \
 
11
        fonts.h                                 \
 
12
        fonts.c                                 \
 
13
        info.h                                  \
 
14
        info.c                                  \
 
15
        links.h                                 \
 
16
        links.c                                 \
 
17
        outline.h                               \
 
18
        outline.c                               \
 
19
        page.h                                  \
 
20
        page.c                                  \
 
21
        render.h                                \
 
22
        render.c                                \
 
23
        utils.h                                 \
 
24
        utils.c
 
25
 
 
26
LDADD =                                         \
 
27
        $(top_builddir)/glib/libpoppler-glib.la \
 
28
        $(top_builddir)/poppler/libpoppler.la   \
 
29
        $(GTK_TEST_LIBS)