~ubuntu-branches/ubuntu/jaunty/gnupg2/jaunty-security

« back to all changes in this revision

Viewing changes to zlib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-10-04 10:25:53 UTC
  • mfrom: (5.1.15 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081004102553-fv62pp8dsitxli47
Tags: 2.0.9-3.1
* Non-maintainer upload.
* agent/gpg-agent.c: Deinit the threading library before exec'ing
  the command to run in --daemon mode. And because that still doesn't
  restore the sigprocmask, do that manually. Closes: #499569

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Process this file with automake to produce Makefile.in
2
 
# Copyright (C) 1995-1996 Jean-loup Gailly.
3
 
# For conditions of distribution and use, see copyright notice in zlib.h
4
 
# This is used if a systems lacks support of zlib
5
 
 
6
 
EXTRA_DIST = README algorithm.doc ChangeLog
7
 
 
8
 
# I found no other easy way to use this only if zlib is neede
9
 
# doing this with SUBDIR = @xxx@  in the top Makefile.am does not
10
 
# work because automake doesn't scan this Makefile.am here.
11
 
if ENABLE_LOCAL_ZLIB
12
 
noinst_LIBRARIES = libzlib.a
13
 
endif
14
 
 
15
 
 
16
 
libzlib_a_SOURCES = adler32.c compress.c crc32.c \
17
 
                    uncompr.c deflate.c trees.c zutil.c \
18
 
                    inflate.c infblock.c inftrees.c \
19
 
                    infcodes.c infutil.c inffast.c \
20
 
                    deflate.h infblock.h infcodes.h inffast.h \
21
 
                    inffixed.h inftrees.h infutil.h trees.h \
22
 
                    zconf.h zlib.h zutil.h
23
 
 
24
 
 
25
 
CLEANFILES = foo.gz
26
 
 
27
 
 
28