1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-07-02 02:48:57 +02:00

* options.in: Remove load-extension tiger

* Makefile.am (./options): append it if there is such a module.
This commit is contained in:
Werner Koch 2001-12-21 14:36:17 +00:00
parent fe4d663d33
commit f30e284e61
6 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-12-19 Werner Koch <wk@gnupg.org>
* options.in: Remove load-extension tiger
* Makefile.am (./options): append it if there is such a module.
2001-10-23 Werner Koch <wk@gnupg.org>
* defs.inc, Makefile.am: Do not use $srcdir when invoking gpg.

View File

@ -61,6 +61,8 @@ prepared.stamp: ./pubring.gpg ./secring.gpg ./plain-1 ./plain-2 ./plain-3 \
./options: $(srcdir)/options.in
cat $(srcdir)/options.in >./options
@set -e; if echo "@DYNAMIC_CIPHER_MODS@" |grep tiger >/dev/null ;then \
echo load-extension ../cipher/tiger >>./options; fi
./gpg_dearmor:
echo '#!/bin/sh' >./gpg_dearmor

View File

@ -1,6 +1,5 @@
no-greeting
no-secmem-warning
load-extension ../cipher/tiger
batch
emulate-md-encode-bug
no-auto-check-trustdb

View File

@ -32,7 +32,8 @@
2001-12-19 Werner Koch <wk@gnupg.org>
* g10.c, passphrase.c [CYGWIN32]: Allow this as an alias for MINGW32.
* g10.c, passphrase.c, gpgv.c [CYGWIN32]: Allow this as an alias
for MINGW32.
2001-12-18 David Shaw <dshaw@jabberwocky.com>

View File

@ -151,7 +151,7 @@ main( int argc, char **argv )
opt.always_trust = 1;
opt.batch = 1;
#ifdef __MINGW32__
#if defined (__MINGW32__) || defined (__CYGWIN32__)
opt.homedir = read_w32_registry_string( NULL, "Software\\GNU\\GnuPG", "HomeDir" );
#else
opt.homedir = getenv("GNUPGHOME");

View File

@ -295,6 +295,7 @@ keyserver_spawn(int action,STRLIST list,u32 (*kidlist)[2],int count)
filename=m_alloc(strlen("gpgkeys_")+strlen(opt.keyserver_scheme)+1);
strcpy(filename,"gpgkeys_");
strcat(filename,opt.keyserver_scheme);