diff --git a/cipher/ChangeLog b/cipher/ChangeLog index 4cd2a0490..04df09871 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -1,3 +1,7 @@ +Tue Mar 28 14:26:58 CEST 2000 Werner Koch + + * random.c [MINGW32]: Include process.h for getpid. + Thu Mar 2 15:37:46 CET 2000 Werner Koch * random.c (fast_random_poll): Add clock_gettime() as fallback for diff --git a/cipher/random.c b/cipher/random.c index f047f6829..4c32c6467 100644 --- a/cipher/random.c +++ b/cipher/random.c @@ -49,6 +49,9 @@ #ifdef HAVE_GETRUSAGE #include #endif +#ifdef __MINGW32__ + #include +#endif #include "util.h" #include "rmd.h" #include "ttyio.h" diff --git a/doc/README.W32 b/doc/README.W32 index 81a6bf921..b6dabcbc9 100644 --- a/doc/README.W32 +++ b/doc/README.W32 @@ -76,11 +76,15 @@ this is the same source as for the Unix version. To build it, you need the MingW32/CPD kit, which is available at - ftp://ftp.openit.de/pub/cpd/mingw32-cpd-0.1.tar.gz + ftp://ftp.openit.de/pub/cpd/mingw32-cpd-0.2.4.tar.gz + ftp://ftp.openit.de/pub/cpd/gcc-core-2.95.2.tar.gz + ftp://ftp.openit.de/pub/cpd/binutils-2.9.1.tar.gz + ftp://ftp.openit.de/pub/cpd/windows32api-0.1.2.tar.gz -I will probably upload a new version, as the current is known to have some -problems. After you have installed this environment, you should be -able to do this: +gcc, binutils and windows32api are stock GNU source which are available +at every ftp.gnug.org mirror. + +After you have installed this environment you should be able to do this: $ ./configure --target=i386--mingw32 $ make diff --git a/g10/ChangeLog b/g10/ChangeLog index f5753ac8c..4841df6ef 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +Tue Mar 28 14:26:58 CEST 2000 Werner Koch + + * trustdb.c (verify_own_keys): Do not print warning about unprotected + key when in quiet mode. + Wed Mar 22 13:50:24 CET 2000 Werner Koch * mainproc.c (print_userid): Do UTF8 conversion before printing.