Putting socks/threads/logger/misc in a separate library

This commit is contained in:
mpc
2004-06-28 23:24:50 +00:00
committed by zzz
parent d3f3f3bdf7
commit 9fd067c9da

View File

@ -40,7 +40,9 @@
#define CYGWIN 3 // Cygwin #define CYGWIN 3 // Cygwin
#if OS == MINGW #if OS == MINGW
#define NO_SSIZE_T
#define WIN_STRERROR #define WIN_STRERROR
#define WINSOCK
#define WINTHREADS #define WINTHREADS
#endif #endif
@ -66,6 +68,10 @@
using namespace std; using namespace std;
#ifdef NO_SSIZE_T
typedef signed long ssize_t;
#endif
/* /*
* Define this to '1' to cause the printing of source code file and line number * Define this to '1' to cause the printing of source code file and line number
* information with each log message. Set it to '0' for simple logging. * information with each log message. Set it to '0' for simple logging.