Changes in / [5d9b792:0602496]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • configure

    r5d9b792 r0602496  
    163163fi
    164164
    165 GLIB=0
    166 
    167165if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then
    168166        cat<<EOF>>Makefile.settings
     
    171169EOF
    172170        echo '#define GLIB2' >> config.h
    173         GLIB=2
    174171elif type glib-config > /dev/null 2> /dev/null; then
    175172        cat<<EOF>>Makefile.settings
     
    178175EOF
    179176        echo '#define GLIB1' >> config.h
    180         GLIB=1
    181177else
    182178        echo 'Cannot find glib development libraries, aborting. (Install libglib-dev?)'
     
    184180fi
    185181
    186 if [ GLIB = 1 -o -r /usr/include/iconv.h ]; then
     182if [ -r /usr/include/iconv.h ]; then
    187183        :;
    188184elif [ -r /usr/local/include/iconv.h ]; then
  • protocols/nogaim.h

    r5d9b792 r0602496  
    5252#define BUDDY_ALIAS_MAXLEN 388   /* because MSN names can be 387 characters */
    5353
    54 #define WEBSITE "http://www.bitlbee.org/"
     54#define WEBSITE "http://www.bitlee.org/"
    5555#define IM_FLAG_AWAY 0x0020
    5656#define OPT_CONN_HTML 0x00000001
  • util.c

    r5d9b792 r0602496  
    3939#include <glib.h>
    4040#include <time.h>
    41 #ifdef GLIB2
    42 #define iconv_t GIConv
    43 #define iconv_open g_iconv_open
    44 #define iconv_close g_iconv_close
    45 #define iconv g_iconv
    46 #else
    4741#include <iconv.h>
    48 #endif
    4942
    5043void strip_linefeed(gchar *text)
Note: See TracChangeset for help on using the changeset viewer.