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,10 +38,6 @@ | ||
38 | #include <syslog.h> | 38 | #include <syslog.h> |
39 | #endif // HAVE_SYSLOG | 39 | #endif // HAVE_SYSLOG |
40 | 40 | ||
41 | - #ifndef ETIMEDOUT | ||
42 | - #define ETIMEDOUT 1238 | ||
43 | - #endif // !ETIMEDOUT | ||
44 | - | ||
45 | /*--[ Implement ]--------------------------------------------------------------------------------------------------*/ | 41 | /*--[ Implement ]--------------------------------------------------------------------------------------------------*/ |
46 | 42 | ||
47 | namespace PW3270_NAMESPACE | 43 | namespace PW3270_NAMESPACE |
src/include/pw3270/class.h
@@ -38,6 +38,7 @@ | @@ -38,6 +38,7 @@ | ||
38 | #endif // WIN32 | 38 | #endif // WIN32 |
39 | 39 | ||
40 | #include <exception> | 40 | #include <exception> |
41 | + #include <errno.h> | ||
41 | #include <lib3270/config.h> | 42 | #include <lib3270/config.h> |
42 | #include <lib3270.h> | 43 | #include <lib3270.h> |
43 | #include <lib3270/popup.h> | 44 | #include <lib3270/popup.h> |
@@ -52,6 +53,10 @@ | @@ -52,6 +53,10 @@ | ||
52 | #include <gtk/gtk.h> | 53 | #include <gtk/gtk.h> |
53 | #include <errno.h> | 54 | #include <errno.h> |
54 | 55 | ||
56 | + #ifndef ETIMEDOUT | ||
57 | + #define ETIMEDOUT 1238 | ||
58 | + #endif // !ETIMEDOUT | ||
59 | + | ||
55 | #define PW3270_NAMESPACE h3270 | 60 | #define PW3270_NAMESPACE h3270 |
56 | 61 | ||
57 | namespace PW3270_NAMESPACE | 62 | namespace PW3270_NAMESPACE |