Commit 479bffdb367994d2284bd63cb8ef33cd91995da5
1 parent
0d2e0d78
Exists in
master
and in
5 other branches
Ajustes para compilação no ambiente de desenvolvimento MinGW antigo
Showing
2 changed files
with
7 additions
and
6 deletions
Show diff stats
src/plugins/rx3270/rx3270.h
@@ -36,12 +36,11 @@ | @@ -36,12 +36,11 @@ | ||
36 | #include <lib3270/config.h> | 36 | #include <lib3270/config.h> |
37 | #include <lib3270.h> | 37 | #include <lib3270.h> |
38 | #include <lib3270/log.h> | 38 | #include <lib3270/log.h> |
39 | + #include <oorexxapi.h> | ||
39 | 40 | ||
40 | -#ifdef HAVE_OOREXXAPI_H | ||
41 | - #include <oorexxapi.h> | ||
42 | -#else | ||
43 | - #error No rexx 3 support (yet) | ||
44 | -#endif // HAVE_OOREXXAPI_H | 41 | +#ifndef ETIMEDOUT |
42 | + #define ETIMEDOUT -1 | ||
43 | +#endif // !ETIMEOUT | ||
45 | 44 | ||
46 | #ifdef HAVE_ICONV | 45 | #ifdef HAVE_ICONV |
47 | #include <iconv.h> | 46 | #include <iconv.h> |
src/plugins/rx3270/typed_routines.cc
@@ -27,10 +27,12 @@ | @@ -27,10 +27,12 @@ | ||
27 | * | 27 | * |
28 | */ | 28 | */ |
29 | 29 | ||
30 | + #include <time.h> | ||
31 | + #include <string.h> | ||
32 | + | ||
30 | #include "rx3270.h" | 33 | #include "rx3270.h" |
31 | #include <lib3270/actions.h> | 34 | #include <lib3270/actions.h> |
32 | 35 | ||
33 | - #include <string.h> | ||
34 | 36 | ||
35 | /*--[ Implement ]------------------------------------------------------------------------------------*/ | 37 | /*--[ Implement ]------------------------------------------------------------------------------------*/ |
36 | 38 |