Commit a8df53303f7b86d05a672dea392d01302f1a6c1a
1 parent
790554dc
Exists in
master
and in
5 other branches
Corrigindo empacotamento windows
Showing
2 changed files
with
5 additions
and
4 deletions
Show diff stats
src/classlib/session.cc
| ... | ... | @@ -38,10 +38,6 @@ |
| 38 | 38 | #include <syslog.h> |
| 39 | 39 | #endif // HAVE_SYSLOG |
| 40 | 40 | |
| 41 | - #ifndef ETIMEDOUT | |
| 42 | - #define ETIMEDOUT 1238 | |
| 43 | - #endif // !ETIMEDOUT | |
| 44 | - | |
| 45 | 41 | /*--[ Implement ]--------------------------------------------------------------------------------------------------*/ |
| 46 | 42 | |
| 47 | 43 | namespace PW3270_NAMESPACE | ... | ... |
src/include/pw3270/class.h
| ... | ... | @@ -38,6 +38,7 @@ |
| 38 | 38 | #endif // WIN32 |
| 39 | 39 | |
| 40 | 40 | #include <exception> |
| 41 | + #include <errno.h> | |
| 41 | 42 | #include <lib3270/config.h> |
| 42 | 43 | #include <lib3270.h> |
| 43 | 44 | #include <lib3270/popup.h> |
| ... | ... | @@ -52,6 +53,10 @@ |
| 52 | 53 | #include <gtk/gtk.h> |
| 53 | 54 | #include <errno.h> |
| 54 | 55 | |
| 56 | + #ifndef ETIMEDOUT | |
| 57 | + #define ETIMEDOUT 1238 | |
| 58 | + #endif // !ETIMEDOUT | |
| 59 | + | |
| 55 | 60 | #define PW3270_NAMESPACE h3270 |
| 56 | 61 | |
| 57 | 62 | namespace PW3270_NAMESPACE | ... | ... |