diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2008-06-30 00:41:39 +0100 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2008-06-30 00:41:39 +0100 | 
| commit | f5d1b3185140e690a6503b9e68c7ea28655b405e (patch) | |
| tree | f679a139ecca219aa2c7a07adcaefd3000c8c801 /bitlbee.h | |
| parent | cd63d5822e76a6126bb3017567c9ce2869a44e0b (diff) | |
| parent | 913545e54123296fb8229ecad2c77a6e899e0242 (diff) | |
Merging changes from Jelmer: It's now possible to cross-compile a Windows
version of BitlBee from Linux. No working SSL support yet though!
Diffstat (limited to 'bitlbee.h')
| -rw-r--r-- | bitlbee.h | 6 | 
1 files changed, 5 insertions, 1 deletions
| @@ -28,6 +28,9 @@  #define _GNU_SOURCE /* Stupid GNU :-P */ +/* Depend on Windows 2000 for now since we need getaddrinfo() */ +#define _WIN32_WINNT 0x0501 +  #define PACKAGE "BitlBee"  #define BITLBEE_VERSION "1.2.1"  #define VERSION BITLBEE_VERSION @@ -47,9 +50,10 @@  #include <stdarg.h>  #include <stdio.h>  #include <ctype.h> +#include <errno.h> +  #ifndef _WIN32  #include <syslog.h> -#include <errno.h>  #endif  #include <glib.h> | 
