1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-10 13:04:23 +01:00

See ChangeLog: Tue Mar 28 14:26:58 CEST 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-03-28 12:20:25 +00:00
parent 32fe5215a2
commit b403b103a4
4 changed files with 20 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Tue Mar 28 14:26:58 CEST 2000 Werner Koch <wk@openit.de>
* random.c [MINGW32]: Include process.h for getpid.
Thu Mar 2 15:37:46 CET 2000 Werner Koch <wk@gnupg.de> Thu Mar 2 15:37:46 CET 2000 Werner Koch <wk@gnupg.de>
* random.c (fast_random_poll): Add clock_gettime() as fallback for * random.c (fast_random_poll): Add clock_gettime() as fallback for

View File

@ -49,6 +49,9 @@
#ifdef HAVE_GETRUSAGE #ifdef HAVE_GETRUSAGE
#include <sys/resource.h> #include <sys/resource.h>
#endif #endif
#ifdef __MINGW32__
#include <process.h>
#endif
#include "util.h" #include "util.h"
#include "rmd.h" #include "rmd.h"
#include "ttyio.h" #include "ttyio.h"

View File

@ -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 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 gcc, binutils and windows32api are stock GNU source which are available
problems. After you have installed this environment, you should be at every ftp.gnug.org mirror.
able to do this:
After you have installed this environment you should be able to do this:
$ ./configure --target=i386--mingw32 $ ./configure --target=i386--mingw32
$ make $ make

View File

@ -1,3 +1,8 @@
Tue Mar 28 14:26:58 CEST 2000 Werner Koch <wk@openit.de>
* 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 <wk@openit.de> Wed Mar 22 13:50:24 CET 2000 Werner Koch <wk@openit.de>
* mainproc.c (print_userid): Do UTF8 conversion before printing. * mainproc.c (print_userid): Do UTF8 conversion before printing.