1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-14 21:47:19 +02:00

New code to do DNS CERT queries.

This commit is contained in:
David Shaw 2005-12-23 18:15:24 +00:00
parent 5e08b08da8
commit 7f13d486b0
7 changed files with 232 additions and 5 deletions

View file

@ -24,7 +24,7 @@ noinst_LIBRARIES = libutil.a
libutil_a_SOURCES = logger.c fileutil.c miscutil.c strgutil.c \
ttyio.c argparse.c memory.c secmem.c errors.c iobuf.c \
dotlock.c http.c pka.c membuf.c
dotlock.c http.c pka.c membuf.c cert.c
if USE_SIMPLE_GETTEXT
libutil_a_SOURCES+=simple-gettext.c
@ -67,3 +67,7 @@ srv-test: srv.c
pka-test: pka.c
cc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \
-DTEST -o pka-test pka.c libutil.a @LIBINTL@ @SRVLIBS@ @CAPLIBS@
cert-test: cert.c
cc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \
-DTEST -o cert-test cert.c libutil.a @LIBINTL@ @SRVLIBS@ @CAPLIBS@