mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-17 15:44:34 +02:00
* acinclude.m4 (GNUPG_PTH_VERSION_CHECK): Accidently used
--ldflags instead of --cflags. Reported by Kazu Yamamoto. * Makefile.am (AM_CFLAGS): Added PTH_CFLAGS. Noted by Kazu Yamamoto. * Makefile.am (gpgsm_LDADD): Added PTH_LIBS. Noted by Kazu Yamamoto.
This commit is contained in:
parent
843e844d98
commit
df05dde9d5
@ -1,3 +1,8 @@
|
|||||||
|
2005-03-03 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* acinclude.m4 (GNUPG_PTH_VERSION_CHECK): Accidently used
|
||||||
|
--ldflags instead of --cflags. Reported by Kazu Yamamoto.
|
||||||
|
|
||||||
2005-02-03 Werner Koch <wk@g10code.com>
|
2005-02-03 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* AUTHORS: Copied from 1.4 and edited to refelct the changes in
|
* AUTHORS: Copied from 1.4 and edited to refelct the changes in
|
||||||
|
3
THANKS
3
THANKS
@ -1,5 +1,6 @@
|
|||||||
|
|
||||||
Alexander Belopolsky belopolsky at mac.com
|
Alexander Belopolsky belopolsky at mac.com
|
||||||
Richard Lefebvre rick at cerca.umontreal.ca
|
|
||||||
Andrew J. Schorr aschorr at telemetry-investments.com
|
Andrew J. Schorr aschorr at telemetry-investments.com
|
||||||
|
Kazu Yamamoto kazu@iij.ad.jp
|
||||||
Michael Nottebrock michaelnottebrock at gmx.net
|
Michael Nottebrock michaelnottebrock at gmx.net
|
||||||
|
Richard Lefebvre rick at cerca.umontreal.ca
|
||||||
|
2
TODO
2
TODO
@ -104,3 +104,5 @@ might want to have an agent context for each service request
|
|||||||
** No card status notifications.
|
** No card status notifications.
|
||||||
|
|
||||||
|
|
||||||
|
* [scdaemon] release the card after use so that gpg 1.4 is abale to access it
|
||||||
|
|
||||||
|
@ -246,7 +246,7 @@ AC_DEFUN([GNUPG_PTH_VERSION_CHECK],
|
|||||||
_gnupg_pth_save_cflags=$CFLAGS
|
_gnupg_pth_save_cflags=$CFLAGS
|
||||||
_gnupg_pth_save_ldflags=$LDFLAGS
|
_gnupg_pth_save_ldflags=$LDFLAGS
|
||||||
_gnupg_pth_save_libs=$LIBS
|
_gnupg_pth_save_libs=$LIBS
|
||||||
CFLAGS="$CFLAGS `$PTH_CONFIG --ldflags`"
|
CFLAGS="$CFLAGS `$PTH_CONFIG --cflags`"
|
||||||
LDFLAGS="$LDFLAGS `$PTH_CONFIG --ldflags`"
|
LDFLAGS="$LDFLAGS `$PTH_CONFIG --ldflags`"
|
||||||
LIBS="$LIBS `$PTH_CONFIG --libs`"
|
LIBS="$LIBS `$PTH_CONFIG --libs`"
|
||||||
AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pth.h>
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pth.h>
|
||||||
|
@ -1550,7 +1550,7 @@ key_secret_to_public (gcry_sexp_t *key_public,
|
|||||||
key. Store a copy of that key at R_PK and return 0. If no key is
|
key. Store a copy of that key at R_PK and return 0. If no key is
|
||||||
available store NULL at R_PK and return an error code. If CARDSN
|
available store NULL at R_PK and return an error code. If CARDSN
|
||||||
is no NULL, a string with the serial number of the card will be
|
is no NULL, a string with the serial number of the card will be
|
||||||
amalloced and stored there. */
|
a malloced and stored there. */
|
||||||
static gpg_error_t
|
static gpg_error_t
|
||||||
card_key_available (ctrl_t ctrl, gcry_sexp_t *r_pk, char **cardsn)
|
card_key_available (ctrl_t ctrl, gcry_sexp_t *r_pk, char **cardsn)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2005-03-03 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* Makefile.am (AM_CFLAGS): Added PTH_CFLAGS. Noted by Kazu Yamamoto.
|
||||||
|
|
||||||
2005-02-25 Werner Koch <wk@g10code.com>
|
2005-02-25 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* xasprintf.c (xtryasprintf): New.
|
* xasprintf.c (xtryasprintf): New.
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
noinst_LIBRARIES = libcommon.a libsimple-pwquery.a
|
noinst_LIBRARIES = libcommon.a libsimple-pwquery.a
|
||||||
|
|
||||||
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
|
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS) $(PTH_CFLAGS)
|
||||||
|
|
||||||
libcommon_a_SOURCES = \
|
libcommon_a_SOURCES = \
|
||||||
util.h i18n.h \
|
util.h i18n.h \
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2005-03-03 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* Makefile.am (gpgsm_LDADD): Added PTH_LIBS. Noted by Kazu Yamamoto.
|
||||||
|
|
||||||
2005-01-13 Werner Koch <wk@g10code.com>
|
2005-01-13 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* certreqgen.c (proc_parameters): Cast printf arg.
|
* certreqgen.c (proc_parameters): Cast printf arg.
|
||||||
|
@ -54,6 +54,6 @@ gpgsm_SOURCES = \
|
|||||||
gpgsm_LDADD = ../jnlib/libjnlib.a ../kbx/libkeybox.a \
|
gpgsm_LDADD = ../jnlib/libjnlib.a ../kbx/libkeybox.a \
|
||||||
../common/libcommon.a \
|
../common/libcommon.a \
|
||||||
$(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(LIBASSUAN_LIBS) -lgpg-error \
|
$(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(LIBASSUAN_LIBS) -lgpg-error \
|
||||||
$(LIBINTL)
|
$(LIBINTL) $(PTH_LIBS)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user