1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-11-12 21:58:50 +01:00

* gpgv.c: s/__MINGW32__/_WIN32/ to help building on native Windows

compilers.  Requested by Brian Gladman.
This commit is contained in:
David Shaw 2003-08-29 00:04:28 +00:00
parent 3f11cf5d35
commit 2f2fba641b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-08-28 David Shaw <dshaw@jabberwocky.com>
* gpgv.c: s/__MINGW32__/_WIN32/ to help building on native Windows
compilers. Requested by Brian Gladman.
2003-08-25 David Shaw <dshaw@jabberwocky.com>
* keyedit.c (change_passphrase): When responding 'no' to the blank

View File

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