Changeset 69ac78c


Ignore:
Timestamp:
2008-02-04T23:54:08Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c84e31a
Parents:
63075d7
Message:

Added bogus G_GNUC_MALLOC to restore GLib 2.4 compatibility (hopefully).

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.h

    r63075d7 r69ac78c  
    9999#endif
    100100
     101#ifndef G_GNUC_MALLOC
     102/* Doesn't exist in GLib <=2.4 while everything else in BitlBee should
     103   work with it, so let's fake this one. */
     104#define G_GNUC_MALLOC
     105#endif
     106
    101107#define _( x ) x
    102108
  • crypting.c

    r63075d7 r69ac78c  
    2929   the programs will be built. */
    3030
    31 #include <string.h>
    32 #include <stdio.h>
    33 #include <stdlib.h>
    34 #include <glib.h>
     31#include <bitlbee.h>
    3532#include "md5.h"
    3633#include "crypting.h"
Note: See TracChangeset for help on using the changeset viewer.