Forgot to commit this:

* photoid.c (get_default_photo_command): Also use __MINGW32__
instead of HAVE_DOSISH_SYSTEM.
This commit is contained in:
Werner Koch 2002-07-24 07:40:53 +00:00
parent 72a3fd4868
commit 35bf53d4bb
2 changed files with 4 additions and 1 deletions

View File

@ -128,6 +128,9 @@
2002-07-01 Werner Koch <wk@gnupg.org>
* photoid.c (get_default_photo_command): Also use __MINGW32__
instead of HAVE_DOSISH_SYSTEM.
* encode.c (encode_symmetric): Do not use the new encryption code.
2002-06-30 Werner Koch <wk@gnupg.org>

View File

@ -221,7 +221,7 @@ char *image_type_to_string(byte type,int style)
#if !defined(FIXED_PHOTO_VIEWER) && !defined(DISABLE_PHOTO_VIEWER)
static const char *get_default_photo_command(void)
{
#if defined(HAVE_DOSISH_SYSTEM)
#if defined(__MINGW32__)
OSVERSIONINFO osvi;
memset(&osvi,0,sizeof(osvi));