Mercurial > pidgin
diff src/protocols/gg/lib/common.c @ 11546:3c536224f0d0
[gaim-migrate @ 13801]
Update gg to compile and seem to work on win32. The win32 thread implementation in libgg has not been tested *at all*, but I think that the gaim tie-in is all synchronous anyway (yes, it hangs up the UI wonderfully whendoing stuff). I should probably look into getting some of this stuff back into libgg
committer: Tailor Script <tailor@pidgin.im>
| author | Daniel Atallah <daniel.atallah@gmail.com> |
|---|---|
| date | Wed, 14 Sep 2005 19:10:39 +0000 |
| parents | cf15c1cdcfbd |
| children |
line wrap: on
line diff
--- a/src/protocols/gg/lib/common.c Wed Sep 14 19:01:33 2005 +0000 +++ b/src/protocols/gg/lib/common.c Wed Sep 14 19:10:39 2005 +0000 @@ -1,4 +1,4 @@ -/* $Id: common.c 13582 2005-08-28 22:46:01Z boler $ */ +/* $Id: common.c 13801 2005-09-14 19:10:39Z datallah $ */ /* * (C) Copyright 2001-2002 Wojtek Kaniewski <wojtekka@irc.pl> @@ -19,6 +19,7 @@ * USA. */ +#ifndef _WIN32 #include <sys/types.h> #include <sys/ioctl.h> #include <sys/socket.h> @@ -27,10 +28,13 @@ #ifdef sun # include <sys/filio.h> #endif +#endif #include <errno.h> #include <fcntl.h> +#ifndef _WIN32 #include <netdb.h> +#endif #include <stdarg.h> #include <stdio.h> #include <stdlib.h>
