From: Eric W. <war...@us...> - 2001-12-08 09:48:54
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv19507 Modified Files: configure.ac Log Message: rewrote the html parser in gtkimhtml. yes, that's really all i did. the reason for the massive change is because i added a length argument, which then needed to be propogated down to everything that would ever receive anything that would get drawn to the window. the new parser isn't any faster. that wasn't my goal. it's much more understandable now (hopefully, anyway). Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- configure.ac 2001/12/06 05:52:04 1.37 +++ configure.ac 2001/12/08 09:48:51 1.38 @@ -85,7 +85,7 @@ AC_ARG_ENABLE(gtk2, [ --enable-gtk2 compile using GTK 2 (BROKEN)],,enable_gtk2=no) AC_ARG_ENABLE(gnome, [ --disable-gnome compile without Gnome bits],,enable_gnome=yes) -AC_ARG_ENABLE(pixbuf, [ --disable-pixbuf compile without GdkPixbuf (needed for Buddy Icons)],,enable_pixbuf=yes) +AC_ARG_ENABLE(pixbuf, [ --disable-pixbuf compile without GdkPixbuf],,enable_pixbuf=yes) AC_ARG_ENABLE(panel, [ --enable-panel compile as a GNOME applet],,enable_panel=$enable_distrib) AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_panel" = "xyes") @@ -428,9 +428,9 @@ echo UI Library.................... : GTK+ 1.2 fi if test "x$enable_gtk2" = "xyes" ; then - echo Use GdkPixbuf for Buddy Icons. : yes + echo Use GdkPixbuf................. : yes else - echo Use GdkPixbuf for Buddy Icons. : $use_pixbuf + echo Use GdkPixbuf................. : $use_pixbuf fi echo echo Build with Plugin support..... : $enable_plugins |