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

« back to all changes in this revision

Viewing changes to assuan/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
 
# Assuan Makefile
2
 
# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
3
 
#
4
 
# This file is part of Assuan.
5
 
#
6
 
# Assuan is free software; you can redistribute it and/or modify it
7
 
# under the terms of the GNU Lesser General Public License as
8
 
# published by the Free Software Foundation; either version 2.1 of
9
 
# the License, or (at your option) any later version.
10
 
#
11
 
# Assuan is distributed in the hope that it will be useful, but
12
 
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
# Lesser General Public License for more details.
15
 
#
16
 
# You should have received a copy of the GNU Lesser General Public
17
 
# License along with this program; if not, write to the Free Software
18
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA 
19
 
 
20
 
## Process this file with automake to produce Makefile.in
21
 
 
22
 
EXTRA_DIST = mkerrors
23
 
INCLUDES = -I.. -I$(top_srcdir)/include
24
 
BUILT_SOURCES = assuan-errors.c
25
 
MOSTLYCLEANFILES = assuan-errors.c
26
 
 
27
 
noinst_LIBRARIES = libassuan.a
28
 
 
29
 
 
30
 
#libassuan_a_LDFLAGS =
31
 
libassuan_a_SOURCES = \
32
 
        assuan.h \
33
 
        assuan-defs.h \
34
 
        assuan-util.c \
35
 
        assuan-errors.c \
36
 
        assuan-buffer.c \
37
 
        assuan-handler.c \
38
 
        assuan-inquire.c \
39
 
        assuan-listen.c \
40
 
        assuan-connect.c \
41
 
        assuan-client.c \
42
 
        assuan-pipe-server.c \
43
 
        assuan-socket-server.c \
44
 
        assuan-pipe-connect.c \
45
 
        assuan-socket-connect.c 
46
 
 
47
 
 
48
 
assuan-errors.c : assuan.h
49
 
        $(srcdir)/mkerrors < $(srcdir)/assuan.h > assuan-errors.c