diff options
| -rw-r--r-- | bitlbee.h | 6 | ||||
| -rw-r--r-- | crypting.c | 5 | 
2 files changed, 7 insertions, 4 deletions
| @@ -98,6 +98,12 @@  #define F_OK 0  #endif +#ifndef G_GNUC_MALLOC +/* Doesn't exist in GLib <=2.4 while everything else in BitlBee should +   work with it, so let's fake this one. */ +#define G_GNUC_MALLOC +#endif +  #define _( x ) x  #define ROOT_NICK "root" @@ -28,10 +28,7 @@     included if CRYPTING_MAIN is defined. Or just do "make decode" and     the programs will be built. */ -#include <string.h> -#include <stdio.h> -#include <stdlib.h> -#include <glib.h> +#include <bitlbee.h>  #include "md5.h"  #include "crypting.h" | 
