comparison configure.ac @ 11318:519dc2186438

[gaim-migrate @ 13521] Bits and pieces all over the place. I was hunting down compiler warnings all over the place, with crazy CFLAGS. I think I might have got a bit carried away. I made the perl stuff compile with gcc 2.x (which don't support mixed declerations and statements), I think what I did was safe but readily admit I have no clue how all the perl stuff works. Rename gaim_presence_add_presence() to gaim_presence_add_list() (to match the header file - obviously nothing actually _uses_ this) Implement gaim_savedstatus_get_handle() because it's in the header file. Remove gaim_account_set_presence() from account.h - it's not actually implemented anywhere, so it can't be that important. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 20 Aug 2005 20:17:08 +0000
parents 5ede3f6d6bd7
children 23f5b11fd9eb
comparison
equal deleted inserted replaced
11317:cdd9d1011d97 11318:519dc2186438
1235 1235
1236 if test "x$enable_dot" = xyes; then 1236 if test "x$enable_dot" = xyes; then
1237 AC_CHECK_PROG(DOT, dot, true, false) 1237 AC_CHECK_PROG(DOT, dot, true, false)
1238 1238
1239 if test $DOT = false; then 1239 if test $DOT = false; then
1240 enable_dot = no; 1240 enable_dot="no";
1241 AC_MSG_WARN([*** dot not found, graphs will not be available]) 1241 AC_MSG_WARN([*** dot not found, graphs will not be available])
1242 else 1242 else
1243 AC_DEFINE_UNQUOTED(HAVE_DOT, 1, [whether or not we have dot]) 1243 AC_DEFINE_UNQUOTED(HAVE_DOT, 1, [whether or not we have dot])
1244 fi 1244 fi
1245 else 1245 else