~ubuntu-branches/ubuntu/lucid/libexif/lucid

« back to all changes in this revision

Viewing changes to test/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Emmanuel Bouthenot
  • Date: 2009-04-19 17:53:15 UTC
  • mfrom: (6.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090419175315-5aiwj7jbm26srabc
Tags: 0.6.17-1
* Adopt the package within pkg-phototools:
  - Set the Maintainer to the group
  - Add Frederic Peters and myself as Uploaders.
  - Add Vcs-Browser and Vcs-Git fields accordingly.
* New upstream release:
  - remove patches merged upsteam:
    + 30_olympus_makernote.dpatch
    + 40_crash_looking_up_invalid_values.dpatch
    + 50_relibtoolize.dpatch
    + CVE-2007-6351.dpatch
    + CVE-2007-6352.dpatch
  - convert existing patches from dpatch to quilt.
  - Fix a bug while reading exif datas in some cases (Closes: #447907)
* Switch packaging to debhelper 7
* Update debian/control:
  - Drop duplicate section field for exif12
  - Bump Standards-Version to 3.8.1
  - Replace deprecated ${Source-Version} by ${binary:Version}
  - Enhance libexif-dev long description.
  - Add homepage field.
  - Add DM-Upload-Allowed field.
* Force remove of files not fully cleaned
* Remove empty doc files in libexif-dev.
* Update debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#      And this is just the lib - we don't have the program available
11
11
#      here yet.
12
12
 
13
 
TESTS = test-mem test-value test-integers
14
 
 
15
 
check_PROGRAMS = test-mem test-mnote test-value test-integers
 
13
TESTS = test-mem test-value test-integers test-parse
 
14
 
 
15
TEST_IMAGES = $(top_srcdir)/daniel-andrews-sample.jpg
 
16
export TEST_IMAGES
 
17
 
 
18
check_PROGRAMS = test-mem test-mnote test-value test-integers test-parse
16
19
 
17
20
test_mem_LDADD   = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)
18
21
 
19
22
test_mnote_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)
20
23
 
21
24
test_value_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)
 
25
 
 
26
test_parse_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL)