1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-02-01 16:33:02 +01:00

* simple-gettext.c, w32reg.c [CYGWIN32]: Allow to use this file

This commit is contained in:
Werner Koch 2001-12-19 18:04:00 +00:00
parent 0fbacf11a6
commit 7f5062db6c
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2001-12-19 Werner Koch <wk@gnupg.org>
* simple-gettext.c, w32reg.c [CYGWIN32]: Allow to use this file
2001-10-11 Werner Koch <wk@gnupg.org>
* http.c (do_parse_uri): Changed initialization of the port number

View File

@ -27,8 +27,8 @@
#include <config.h>
#ifdef USE_SIMPLE_GETTEXT
#ifndef __MINGW32__
#error This file can only be used with MinGW32
#if defined (__MINGW32__) || defined (__CYGWIN32__)
#error This file can only be used with MingW32 or Cygwin32
#endif
#include <stdio.h>

View File

@ -19,7 +19,8 @@
*/
#include <config.h>
#ifdef __MINGW32__ /* This module is only used in this environment */
#if defined (__MINGW32__) || defined (__CYGWIN32__)
/* This module is only used in this environment */
#include <stdio.h>
#include <stdlib.h>
@ -124,4 +125,4 @@ write_w32_registry_string(const char *root, const char *dir,
return 0;
}
#endif /* __MINGW32__ */
#endif /* __MINGW32__ || __CYGWIN32__ */