diff options
author | Werner Koch <[email protected]> | 2010-04-14 14:39:16 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-04-14 14:39:16 +0000 |
commit | 53c636c4c666ab27440fb4a866bf0ae32f0aa517 (patch) | |
tree | ac6d1e065b3f65bec63484d636c1ed0b19dbf8d1 /common/sysutils.c | |
parent | Whole lot of changes to support CE. (diff) | |
download | gnupg-53c636c4c666ab27440fb4a866bf0ae32f0aa517.tar.gz gnupg-53c636c4c666ab27440fb4a866bf0ae32f0aa517.zip |
./autogen.sh --build-w32ce does now succeed.
Diffstat (limited to 'common/sysutils.c')
-rw-r--r-- | common/sysutils.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/sysutils.c b/common/sysutils.c index 6ad5e27a9..46731271b 100644 --- a/common/sysutils.c +++ b/common/sysutils.c @@ -623,6 +623,17 @@ gnupg_unsetenv (const char *name) #endif } +#ifdef HAVE_W32CE_SYSTEM +/* There is a isatty function declaration in cegcc but it does not + make sense, thus we redefine it. */ +int +_gnupg_isatty (int fd) +{ + (void)fd; + return 0; +} +#endif + #ifdef HAVE_W32CE_SYSTEM /* Replacement for getenv which takes care of the our use of getenv. |