mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-02 20:18:55 +01:00
154f3ed2bf
* common/dns-cert.h: Move to ../dirmngr/. * common/dns-cert.c: Move to ../dirmngr/. Change args to return the key as a buffer. * common/t-dns-cert.c: Move to ../dirmngr/. * common/pka.c, common/pka.h, common/t-pka.c: Remove. * dirmngr/server.c (data_line_cookie_write): Factor code out to data_line_write and make it a wrapper for that. (data_line_write): New. (cmd_dns_cert): New. (register_commands): Register new command. * g10/Makefile.am (LDADD): Remove DNSLIBS. * g10/call-dirmngr.c (dns_cert_parm_s): New. (dns_cert_data_cb, dns_cert_status_cb): New. (gpg_dirmngr_dns_cert): New. (gpg_dirmngr_get_pka): New. * g10/gpgv.c (gpg_dirmngr_get_pka): New dummy function. * g10/keyserver.c (keyserver_import_cert): Replace get_dns_cert by gpg_dirmngr_dns_cert. (keyserver_import_pka): Replace get_pka_info by gpg_dirmngr_get_pka. * g10/mainproc.c: Include call-dirmngr.h. (pka_uri_from_sig): Add CTX arg. Replace get_pka_info by gpg_dirmngr_get_pka. -- With this patch gpg does not do any network access itself but uses dirmngr for that. Note that we need to keep linking to NETLIBS due to the logging code and because we need TCP for our socket emulation under Windows. Probably also required for Solaris etc. Signed-off-by: Werner Koch <wk@gnupg.org>
180 lines
4.5 KiB
Makefile
180 lines
4.5 KiB
Makefile
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
|
# 2003, 2006, 2010 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of GnuPG.
|
|
#
|
|
# GnuPG is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# GnuPG is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
EXTRA_DIST = options.skel distsigkey.gpg ChangeLog-2011 gpg-w32info.rc \
|
|
gpg.w32-manifest.in
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
|
|
|
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(GPG_ERROR_CFLAGS)
|
|
|
|
needed_libs = ../kbx/libkeybox.a $(libcommon)
|
|
|
|
bin_PROGRAMS = gpg2
|
|
if !HAVE_W32CE_SYSTEM
|
|
bin_PROGRAMS += gpgv2
|
|
endif
|
|
noinst_PROGRAMS = $(module_tests)
|
|
TESTS = $(module_tests)
|
|
|
|
if ENABLE_BZIP2_SUPPORT
|
|
bzip2_source = compress-bz2.c
|
|
else
|
|
bzip2_source =
|
|
endif
|
|
|
|
if ENABLE_CARD_SUPPORT
|
|
card_source = card-util.c
|
|
else
|
|
card_source =
|
|
endif
|
|
|
|
if NO_TRUST_MODELS
|
|
trust_source =
|
|
else
|
|
trust_source = trustdb.c trustdb.h tdbdump.c tdbio.c tdbio.h
|
|
endif
|
|
|
|
|
|
if HAVE_W32_SYSTEM
|
|
resource_objs += gpg-w32info.o
|
|
|
|
gpg-w32info.o : gpg.w32-manifest
|
|
|
|
endif
|
|
|
|
common_source = \
|
|
gpg.h \
|
|
dek.h \
|
|
build-packet.c \
|
|
compress.c \
|
|
$(bzip2_source) \
|
|
filter.h \
|
|
free-packet.c \
|
|
getkey.c \
|
|
keydb.c keydb.h \
|
|
keyring.c keyring.h \
|
|
seskey.c \
|
|
kbnode.c \
|
|
main.h \
|
|
mainproc.c \
|
|
armor.c \
|
|
mdfilter.c \
|
|
textfilter.c \
|
|
progress.c \
|
|
misc.c \
|
|
rmd160.c rmd160.h \
|
|
options.h \
|
|
openfile.c \
|
|
keyid.c \
|
|
packet.h \
|
|
parse-packet.c \
|
|
cpr.c \
|
|
plaintext.c \
|
|
sig-check.c \
|
|
keylist.c \
|
|
pkglue.c pkglue.h \
|
|
ecdh.c
|
|
|
|
gpg2_SOURCES = gpg.c \
|
|
server.c \
|
|
$(common_source) \
|
|
pkclist.c \
|
|
skclist.c \
|
|
pubkey-enc.c \
|
|
passphrase.c \
|
|
decrypt.c \
|
|
decrypt-data.c \
|
|
cipher.c \
|
|
encrypt.c \
|
|
sign.c \
|
|
verify.c \
|
|
revoke.c \
|
|
keyedit.c \
|
|
dearmor.c \
|
|
import.c \
|
|
export.c \
|
|
migrate.c \
|
|
delkey.c \
|
|
keygen.c \
|
|
helptext.c \
|
|
keyserver.c \
|
|
keyserver-internal.h \
|
|
call-dirmngr.c call-dirmngr.h \
|
|
photoid.c photoid.h \
|
|
call-agent.c call-agent.h \
|
|
trust.c $(trust_source) \
|
|
$(card_source) \
|
|
exec.c exec.h
|
|
|
|
gpgv2_SOURCES = gpgv.c \
|
|
$(common_source) \
|
|
verify.c
|
|
|
|
#gpgd_SOURCES = gpgd.c \
|
|
# ks-proto.h \
|
|
# ks-proto.c \
|
|
# ks-db.c \
|
|
# ks-db.h \
|
|
# $(common_source)
|
|
|
|
# FIXME: Libkeybox.a links to libksba thus we need to add libksba
|
|
# here, even that it is not used by gpg. A proper solution would
|
|
# either to split up libkeybox.a or to use a separate keybox daemon.
|
|
LDADD = $(needed_libs) ../common/libgpgrl.a \
|
|
$(ZLIBS) $(LIBINTL) $(CAPLIBS) $(NETLIBS)
|
|
gpg2_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(LIBREADLINE) \
|
|
$(KSBA_LIBS) $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \
|
|
$(LIBICONV) $(resource_objs) $(extra_sys_libs)
|
|
gpg2_LDFLAGS = $(extra_bin_ldflags)
|
|
gpgv2_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) \
|
|
$(KSBA_LIBS) $(GPG_ERROR_LIBS) \
|
|
$(LIBICONV) $(resource_objs) $(extra_sys_libs)
|
|
gpgv2_LDFLAGS = $(extra_bin_ldflags)
|
|
|
|
t_common_ldadd =
|
|
module_tests = t-rmd160
|
|
t_rmd160_SOURCES = t-rmd160.c rmd160.c
|
|
t_rmd160_LDADD = $(t_common_ldadd)
|
|
|
|
|
|
$(PROGRAMS): $(needed_libs) ../common/libgpgrl.a
|
|
|
|
install-data-local:
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
|
|
$(INSTALL_DATA) $(srcdir)/options.skel \
|
|
$(DESTDIR)$(pkgdatadir)/gpg-conf.skel
|
|
$(INSTALL_DATA) $(srcdir)/distsigkey.gpg \
|
|
$(DESTDIR)$(pkgdatadir)/distsigkey.gpg
|
|
|
|
uninstall-local:
|
|
-@rm $(DESTDIR)$(pkgdatadir)/gpg-conf.skel
|
|
-@rm $(DESTDIR)$(pkgdatadir)/distsigkey.gpg
|
|
|
|
|
|
# There has never been a gpg for WindowsCE, thus we don't need a gpg2 here
|
|
if HAVE_W32CE_SYSTEM
|
|
install-exec-hook:
|
|
mv -f $(DESTDIR)$(bindir)/gpg2$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/gpg$(EXEEXT)
|
|
endif
|