~ubuntu-branches/ubuntu/oneiric/gnupg2/oneiric-updates

« back to all changes in this revision

Viewing changes to util/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
 
# Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
2
 
#
3
 
# This file is part of GnuPG.
4
 
#
5
 
# GnuPG is free software; you can redistribute it and/or modify
6
 
# it under the terms of the GNU General Public License as published by
7
 
# the Free Software Foundation; either version 2 of the License, or
8
 
# (at your option) any later version.
9
 
10
 
# GnuPG is distributed in the hope that it will be useful,
11
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
# GNU General Public License for more details.
14
 
15
 
# You should have received a copy of the GNU General Public License
16
 
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
18
 
 
19
 
## Process this file with automake to produce Makefile.in
20
 
 
21
 
INCLUDES = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/intl
22
 
 
23
 
noinst_LIBRARIES = libutil.a
24
 
 
25
 
 
26
 
#libutil_a_LDFLAGS =
27
 
libutil_a_SOURCES = g10u.c logger.c fileutil.c miscutil.c strgutil.c  \
28
 
                     ttyio.c  argparse.c memory.c secmem.c errors.c iobuf.c \
29
 
                     dotlock.c http.c simple-gettext.c w32reg.c
30
 
 
31
 
 
32
 
http-test:  http.c
33
 
        gcc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) -g -Wall -DTEST \
34
 
            -o http-test http.c libutil.a ../mpi/libmpi.a @INTLLIBS@
35
 
 
36
 
 
37