~ubuntu-branches/ubuntu/natty/gnupg2/natty-security

« back to all changes in this revision

Viewing changes to agent/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2005-12-08 22:13:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051208221321-4rvs2vu835iam5wv
Tags: 1.9.19-2
* Convert debian/changelog to UTF-8.
* Put gnupg-agent and gpgsm lintian overrides in the respectively
  right package.  Closes: #335066
* Added debhelper tokens to maintainer scripts.
* xsession fixes:
  o Added host name to gpg-agent PID file name.  Closes: #312717
  o Fixed xsession script to be able to run under zsh.  Closes: #308516
  o Don't run gpg-agent if one is already running.  Closes: #336480
* debian/control:
  o Fixed package description of gpgsm package.  Closes: #299842
  o Added mention of gpg-agent to description of gnupg-agent package.
    Closes: #304355
* Thanks to Peter Eisentraut <petere@debian.org> for all of the above.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc.
 
1
# Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
2
2
#
3
3
# This file is part of GnuPG.
4
4
#
20
20
 
21
21
bin_PROGRAMS = gpg-agent
22
22
libexec_PROGRAMS = gpg-protect-tool gpg-preset-passphrase
 
23
noinst_PROGRAMS = $(TESTS)
23
24
 
24
 
AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/intl
 
25
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/common -I$(top_srcdir)/intl
25
26
 
26
27
include $(top_srcdir)/am/cmacros.am
27
28
 
31
32
 
32
33
gpg_agent_SOURCES = \
33
34
        gpg-agent.c agent.h \
34
 
        command.c \
 
35
        command.c command-ssh.c \
35
36
        query.c \
36
37
        cache.c \
37
38
        trans.c \
46
47
        learncard.c
47
48
 
48
49
 
49
 
gpg_agent_LDADD = ../jnlib/libjnlib.a ../common/libcommon.a \
 
50
gpg_agent_LDADD = ../gl/libgnu.a ../jnlib/libjnlib.a ../common/libcommon.a \
50
51
                $(LIBGCRYPT_LIBS) $(PTH_LIBS) $(LIBASSUAN_LIBS) \
51
52
                 -lgpg-error @LIBINTL@
52
53
 
72
73
gpg_preset_passphrase_LDADD += -lwsock32
73
74
endif
74
75
 
 
76
#
 
77
# Module tests
 
78
#
 
79
TESTS = t-protect
 
80
 
 
81
t_common_ldadd = ../jnlib/libjnlib.a ../common/libcommon.a  \
 
82
                 $(LIBGCRYPT_LIBS) -lgpg-error @LIBINTL@
 
83
 
 
84
t_protect_SOURCES = t-protect.c protect.c 
 
85
t_protect_LDADD = $(t_common_ldadd)
 
86
 
 
87
 
 
88
 
 
89