aboutsummaryrefslogtreecommitdiffstats
path: root/g10
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1999-11-15 20:32:25 +0000
committerWerner Koch <[email protected]>1999-11-15 20:32:25 +0000
commit37f3c09edb6d6b866cd8e8bed76c304e26fd7c44 (patch)
tree8d5b61e4e1812305691858cfe738211b56b1a12b /g10
parentSee ChangeLog: Sat Nov 13 17:44:23 CET 1999 Werner Koch (diff)
downloadgnupg-37f3c09edb6d6b866cd8e8bed76c304e26fd7c44.tar.gz
gnupg-37f3c09edb6d6b866cd8e8bed76c304e26fd7c44.zip
See ChangeLog: Mon Nov 15 21:36:02 CET 1999 Werner Koch
Diffstat (limited to 'g10')
-rw-r--r--g10/ChangeLog4
-rw-r--r--g10/Makefile.am3
-rw-r--r--g10/misc.c14
-rw-r--r--g10/sign.c2
4 files changed, 6 insertions, 17 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 3ae1255af..4788a4437 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,7 @@
+Mon Nov 15 21:36:02 CET 1999 Werner Koch <[email protected]>
+
+ * misc.c (pull_in_libs): Removed.
+
Sat Nov 13 17:44:23 CET 1999 Werner Koch <[email protected]>
* mainproc.c (list_node): Print the PK algo in the --with-colon mode.
diff --git a/g10/Makefile.am b/g10/Makefile.am
index 299ea5131..7c2450f12 100644
--- a/g10/Makefile.am
+++ b/g10/Makefile.am
@@ -4,8 +4,7 @@ INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
EXTRA_DIST = OPTIONS pubring.asc options.skel
OMIT_DEPENDENCIES = zlib.h zconf.h
LDFLAGS = @LDFLAGS@ @DYNLINK_LDFLAGS@
-##needed_libs = ../util/libutil.la ../gcrypt/libgcrypt.la
-needed_libs =
+needed_libs = ../util/libutil.la ../gcrypt/libgcrypt.la
#noinst_PROGRAMS = gpgd
bin_PROGRAMS = gpg
diff --git a/g10/misc.c b/g10/misc.c
index a3ed841db..7e8e85a9e 100644
--- a/g10/misc.c
+++ b/g10/misc.c
@@ -38,20 +38,6 @@
#include "i18n.h"
-const char *g10m_revision_string(int);
-const char *g10c_revision_string(int);
-const char *g10u_revision_string(int);
-
-#ifdef __GNUC__
-volatile
-#endif
- void
-pull_in_libs(void)
-{
- g10m_revision_string(0);
- g10u_revision_string(0);
-}
-
#if defined(__linux__) && defined(__alpha__) && __GLIBC__ < 2
#warning using trap_unaligned
diff --git a/g10/sign.c b/g10/sign.c
index 3ec430d2f..d278945a3 100644
--- a/g10/sign.c
+++ b/g10/sign.c
@@ -52,7 +52,7 @@ pk_sign( int algo, MPI *data, MPI hash, MPI *skey )
/* make a sexp from skey */
if( algo == GCRY_PK_DSA ) {
- s_skey = SEXP_CONS( SEXP_NEW( "private-key", 0 ),
+ s_skey = SEXP_CONS( SEXP_NEW( "private-key", 0 ),
gcry_sexp_vlist( SEXP_NEW( "dsa", 3 ),
gcry_sexp_new_name_mpi( "p", skey[0] ),
gcry_sexp_new_name_mpi( "q", skey[1] ),