mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +01:00
* Makefile.am (AM_CPPFLAGS): Add flags for libksba
* Makefile.am (AM_CPPFLAGS): Include flags for gcrypt and ksba * Makefile.am: Use LIBGCRYPT macros
This commit is contained in:
parent
56172ce393
commit
86521773df
@ -1,3 +1,7 @@
|
||||
2001-12-18 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* Makefile.am: Use LIBGCRYPT macros
|
||||
|
||||
2001-12-14 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* gpg-agent.c (main): New option --batch. New option --debug-wait
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
bin_PROGRAMS = gpg-agent
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/intl
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/common $(LIBGCRYPT_CFLAGS)
|
||||
LDFLAGS = @LDFLAGS@
|
||||
|
||||
gpg_agent_SOURCES = \
|
||||
@ -33,8 +33,8 @@ gpg_agent_SOURCES = \
|
||||
pkdecrypt.c
|
||||
|
||||
gpg_agent_LDADD = ../jnlib/libjnlib.a ../assuan/libassuan.a \
|
||||
../common/libcommon.a \
|
||||
../../libgcrypt/src/.libs/libgcrypt.so.1
|
||||
../common/libcommon.a $(LIBGCRYPT_LIBS)
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-18 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* Makefile.am (AM_CPPFLAGS): Include flags for gcrypt and ksba
|
||||
|
||||
2001-12-14 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* util.h (digitp, hexdigitp): New ctype like macros.
|
||||
|
@ -25,6 +25,8 @@ BUILT_SOURCES = errors.c
|
||||
|
||||
noinst_LIBRARIES = libcommon.a
|
||||
|
||||
AM_CPPFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBKSBA_CFLAGS)
|
||||
|
||||
libcommon_a_SOURCES = \
|
||||
util.h i18n.h \
|
||||
errors.c errors.h \
|
||||
@ -33,3 +35,11 @@ libcommon_a_SOURCES = \
|
||||
|
||||
errors.c : errors.h mkerrors
|
||||
$(srcdir)/mkerrors < $(srcdir)/errors.h > errors.c
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
2001-12-18 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* Makefile.am (AM_CPPFLAGS): Add flags for libksba
|
||||
|
||||
* keybox-blob.c (_keybox_create_x509_blob): Use
|
||||
gcry_sexp_canon_len to get the length of the serial number.
|
||||
(_keybox_release_blob): Need to use a new serialbuf to free the memory.
|
||||
|
@ -20,7 +20,7 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
EXTRA_DIST = mkerrors
|
||||
INCLUDES = -I.. -I$(top_srcdir)/include
|
||||
AM_CPPFLAGS = $(LIBKSBA_CFLAGS) $(LIBGCRYPT_CLFAGS)
|
||||
BUILT_SOURCES = keybox-errors.c
|
||||
|
||||
noinst_LIBRARIES = libkeybox.a
|
||||
@ -41,9 +41,7 @@ common_sources = \
|
||||
libkeybox_a_SOURCES = $(common_sources)
|
||||
|
||||
kbxutil_SOURCES = kbxutil.c $(common_sources)
|
||||
kbxutil_LDADD = ../jnlib/libjnlib.a \
|
||||
../../libksba/src/.libs/libksba.a \
|
||||
../../libgcrypt/src/.libs/libgcrypt.so.1
|
||||
kbxutil_LDADD = ../jnlib/libjnlib.a $(LIBKSBA_LIBS) $(LIBGCRYPT_LIBS)
|
||||
|
||||
keybox-errors.c : keybox.h mkerrors
|
||||
$(srcdir)/mkerrors < $(srcdir)/keybox.h > keybox-errors.c
|
||||
|
@ -20,8 +20,8 @@
|
||||
|
||||
bin_PROGRAMS = gpgsm
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/intl \
|
||||
$(LIBGCRYPT_CFLAGS) $(LIBKSBA_CFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/intl \
|
||||
$(LIBGCRYPT_CFLAGS) $(LIBKSBA_CFLAGS)
|
||||
LDFLAGS = @LDFLAGS@
|
||||
|
||||
gpgsm_SOURCES = \
|
||||
|
Loading…
x
Reference in New Issue
Block a user