~ubuntu-branches/ubuntu/hardy/gnupg/hardy-updates

« back to all changes in this revision

Viewing changes to keyserver/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-12-16 16:57:39 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051216165739-v0m2d1you6hd8jho
Tags: upstream-1.4.2
ImportĀ upstreamĀ versionĀ 1.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
 
1
# Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
2
2
#
3
3
# This file is part of GnuPG.
4
4
#
14
14
15
15
# You should have received a copy of the GNU General Public License
16
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
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18
18
 
19
19
## Process this file with automake to produce Makefile.in
20
20
 
21
21
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
22
22
EXTRA_PROGRAMS = gpgkeys_ldap gpgkeys_hkp gpgkeys_http gpgkeys_finger gpgkeys_curl
23
23
EXTRA_SCRIPTS = gpgkeys_mailto
24
 
libexecdir = @libexecdir@/@PACKAGE@
25
 
 
26
 
libexec_PROGRAMS = @GPGKEYS_LDAP@ @GPGKEYS_HKP@ @GPGKEYS_FINGER@ @GPGKEYS_HTTP@ @GPGKEYS_CURL@
27
 
libexec_SCRIPTS = @GPGKEYS_MAILTO@
 
24
 
 
25
gpglibexecdir = $(libexecdir)/@PACKAGE@
 
26
 
 
27
gpglibexec_PROGRAMS = @GPGKEYS_LDAP@ @GPGKEYS_HKP@ @GPGKEYS_FINGER@ @GPGKEYS_HTTP@ @GPGKEYS_CURL@
 
28
gpglibexec_SCRIPTS = @GPGKEYS_MAILTO@
28
29
noinst_SCRIPTS = gpgkeys_test
29
30
 
30
31
gpgkeys_ldap_SOURCES = gpgkeys_ldap.c ksutil.c ksutil.h
31
 
gpgkeys_hkp_SOURCES = gpgkeys_hkp.c ksutil.c ksutil.h
 
32
gpgkeys_hkp_SOURCES = ksutil.c ksutil.h
32
33
gpgkeys_http_SOURCES = gpgkeys_http.c ksutil.c ksutil.h
33
34
gpgkeys_finger_SOURCES = gpgkeys_finger.c ksutil.c ksutil.h
34
35
gpgkeys_curl_SOURCES = gpgkeys_curl.c ksutil.c ksutil.h
36
37
other_libs = $(LIBICONV) $(LIBINTL) $(CAPLIBS)
37
38
 
38
39
gpgkeys_ldap_LDADD = ../util/libutil.a @LDAPLIBS@ @NETLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
39
 
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
40
40
gpgkeys_http_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
41
41
gpgkeys_finger_LDADD = ../util/libutil.a @NETLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
42
42
 
 
43
if WITH_CURL
 
44
gpgkeys_hkp_SOURCES += gpgkeys_hkp.c
43
45
if FAKE_CURL
44
46
gpgkeys_curl_SOURCES += curl-shim.c curl-shim.h
45
 
gpgkeys_curl_CPPFLAGS = -DFAKE_CURL
46
47
gpgkeys_curl_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
 
48
gpgkeys_hkp_SOURCES += curl-shim.c curl-shim.h
 
49
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
47
50
else
48
51
gpgkeys_curl_CPPFLAGS = @LIBCURL_CPPFLAGS@
49
52
gpgkeys_curl_LDADD = @LIBCURL@ @GETOPT@
 
53
gpgkeys_hkp_CPPFLAGS = @LIBCURL_CPPFLAGS@
 
54
gpgkeys_hkp_LDADD = @LIBCURL@ @GETOPT@
 
55
endif
 
56
else
 
57
gpgkeys_hkp_SOURCES += gpgkeys_oldhkp.c
 
58
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
50
59
endif