~ubuntu-branches/ubuntu/hardy/libexif/hardy

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2007-12-21 17:13:58 UTC
  • mfrom: (5.1.5 hardy)
  • Revision ID: james.westby@ubuntu.com-20071221171358-zbjzk21kmnizelhk
Tags: 0.6.16-2.1
* Non-maintainer upload by security team.
* This update addresses the following security issues:
  - possible denial of service attack via crafted
    image file leading to an infinite recursion in the
    exif-loader.c (CVE-2007-6351; Closes: #457330).
  - integer overflow in exif-data.c triggered by a crafted
    image file could lead to arbitrary code execution
    (CVE-2007-6352; Closes: #457330).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
EXTRA_DIST = @PACKAGE_TARNAME@.spec autogen.sh $(README_W32_XDIST)
8
8
 
9
 
ACLOCAL_AMFLAGS = -I m4m
 
9
pkgconfigdir = $(libdir)/pkgconfig
 
10
 
 
11
pkgconfig_DATA = libexif.pc
 
12
EXTRA_DIST    += libexif.pc.in
 
13
 
 
14
noinst_DATA = libexif-uninstalled.pc
 
15
EXTRA_DIST += libexif-uninstalled.pc.in
 
16
 
 
17
ACLOCAL_AMFLAGS = -I auto-m4 -I m4m
10
18
 
11
19
doc_DATA = README AUTHORS NEWS ChangeLog ABOUT-NLS COPYING
12
20
 
33
41
        else \
34
42
                usermap=""; \
35
43
        fi; \
36
 
        (cd "$(srcdir)" && cvs2cl $${usermap} -f "ChangeLog.cvs")
 
44
        (cd "$(srcdir)" && cvs2cl $${usermap} --utc --domain users.sourceforge.net -f "ChangeLog.cvs")
37
45
 
38
46
.PHONY: cvs-tag-release
39
47
cvs-tag-release:
43
51
        read; \
44
52
        cd "$(srcdir)" && cvs tag "$${tag}"
45
53
 
 
54
.PHONY: upload-release
 
55
upload-release:
 
56
        echo ncftpput upload.sourceforge.net incoming/ $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).*
 
57
 
46
58
# End of Makefile.am.