Changes in / [5d9b792:0602496]
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r5d9b792 r0602496 163 163 fi 164 164 165 GLIB=0166 167 165 if $PKG_CONFIG --version > /dev/null 2>/dev/null && $PKG_CONFIG glib-2.0; then 168 166 cat<<EOF>>Makefile.settings … … 171 169 EOF 172 170 echo '#define GLIB2' >> config.h 173 GLIB=2174 171 elif type glib-config > /dev/null 2> /dev/null; then 175 172 cat<<EOF>>Makefile.settings … … 178 175 EOF 179 176 echo '#define GLIB1' >> config.h 180 GLIB=1181 177 else 182 178 echo 'Cannot find glib development libraries, aborting. (Install libglib-dev?)' … … 184 180 fi 185 181 186 if [ GLIB = 1 -o-r /usr/include/iconv.h ]; then182 if [ -r /usr/include/iconv.h ]; then 187 183 :; 188 184 elif [ -r /usr/local/include/iconv.h ]; then -
protocols/nogaim.h
r5d9b792 r0602496 52 52 #define BUDDY_ALIAS_MAXLEN 388 /* because MSN names can be 387 characters */ 53 53 54 #define WEBSITE "http://www.bitl bee.org/"54 #define WEBSITE "http://www.bitlee.org/" 55 55 #define IM_FLAG_AWAY 0x0020 56 56 #define OPT_CONN_HTML 0x00000001 -
util.c
r5d9b792 r0602496 39 39 #include <glib.h> 40 40 #include <time.h> 41 #ifdef GLIB242 #define iconv_t GIConv43 #define iconv_open g_iconv_open44 #define iconv_close g_iconv_close45 #define iconv g_iconv46 #else47 41 #include <iconv.h> 48 #endif49 42 50 43 void strip_linefeed(gchar *text)
Note: See TracChangeset
for help on using the changeset viewer.