diff options
| author | David <david@xagasoft.com> | 2010-02-04 21:37:00 +0000 |
|---|---|---|
| committer | David <david@xagasoft.com> | 2010-02-04 21:37:00 +0000 |
| commit | 1f29dc180b5a86ddf2115f97ad410e0e9b1beb4b (patch) | |
| tree | bd4236dd6ffb7e7ca19eb3611e3c57e8f1ef924e /src/server.h | |
| parent | 81b7d806028bd484e2765cbc57b9677544bf52b2 (diff) | |
| download | libbu++-1f29dc180b5a86ddf2115f97ad410e0e9b1beb4b.tar.gz libbu++-1f29dc180b5a86ddf2115f97ad410e0e9b1beb4b.tar.bz2 libbu++-1f29dc180b5a86ddf2115f97ad410e0e9b1beb4b.tar.xz libbu++-1f29dc180b5a86ddf2115f97ad410e0e9b1beb4b.zip | |
david - Made a build-M3 file for building to windows (mingw). This one actually builds *.cpp, yay!... Although i took out Process, Plugger, and Regex... to be re-added later... also had to stubify a few more functions when compiling on WIN32.
Diffstat (limited to 'src/server.h')
| -rw-r--r-- | src/server.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/server.h b/src/server.h index 1e317a4..a618a8d 100644 --- a/src/server.h +++ b/src/server.h | |||
| @@ -9,7 +9,10 @@ | |||
| 9 | #define BU_SERVER_H | 9 | #define BU_SERVER_H |
| 10 | 10 | ||
| 11 | #include <stdint.h> | 11 | #include <stdint.h> |
| 12 | #include <sys/select.h> | 12 | |
| 13 | #ifndef WIN32 | ||
| 14 | #include <sys/select.h> | ||
| 15 | #endif | ||
| 13 | 16 | ||
| 14 | #include "bu/fstring.h" | 17 | #include "bu/fstring.h" |
| 15 | #include "bu/list.h" | 18 | #include "bu/list.h" |
| @@ -17,6 +20,7 @@ | |||
| 17 | #include "bu/clientlink.h" | 20 | #include "bu/clientlink.h" |
| 18 | #include "bu/clientlinkfactory.h" | 21 | #include "bu/clientlinkfactory.h" |
| 19 | #include "bu/hash.h" | 22 | #include "bu/hash.h" |
| 23 | #include "bu/win32_compatibility.h" | ||
| 20 | 24 | ||
| 21 | namespace Bu | 25 | namespace Bu |
| 22 | { | 26 | { |
